.landing-page header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
    padding: 15px 0;
    transition: background-color 0.3s ease;
    background-color: rgba(200, 230, 255, 0.25);
}

.landing-page header.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0)
    );
    box-shadow: 0 1px 8px rgba(255, 255, 255, 0.1);
}

.landing-page header.scrolled .header-divider {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0)
    );
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.video-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: normal;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    background: var(--primary-white);
    color: var(--primary-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--primary-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .video-background video {
        height: 100%;
        width: auto;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .landing-page header {
        padding: 15px 0;
    }

    .hero-content h1 {
        margin-bottom: 1.5rem;
    }

    .hero-content .subtitle {
        margin-bottom: 2rem;
    }
}
