* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    gap: 2rem;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    max-width: 600px;
    height: auto;
    overflow: hidden;
}

.logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.reflection-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 10;
    transform: skewX(-15deg);
    animation: shine 5s ease-in-out 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: #333;
    text-align: center;
    padding: 0 2rem;
}
