body { font-family: 'Inter', sans-serif; }

.header-hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

@media (max-width: 767px) {
    .header-hero-wrapper {
        min-height: 100svh;
    }
    
    .hero-section {
        min-height: 100svh;
    }
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

header {
    position: relative;
    z-index: 1;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    filter: blur(65px);
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hero-atmosphere::before {
    top: -10%;
    left: -10%;
    background: 
        radial-gradient(
            ellipse 110% 75% at 22% 38%,
            transparent 0%,
            transparent 18%,
            rgba(180, 180, 180, 0.04) 25%,
            rgba(180, 180, 180, 0.02) 40%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 85% 100% at 72% 62%,
            transparent 0%,
            transparent 17%,
            rgba(156, 163, 175, 0.035) 24%,
            rgba(156, 163, 175, 0.015) 42%,
            transparent 78%
        ),
        radial-gradient(
            ellipse 95% 65% at 48% 18%,
            transparent 0%,
            transparent 19%,
            rgba(140, 140, 140, 0.03) 26%,
            rgba(140, 140, 140, 0.012) 41%,
            transparent 76%
        );
    animation: floatSlow1 90s ease-in-out infinite;
}

.hero-atmosphere::after {
    bottom: -10%;
    right: -10%;
    background: 
        radial-gradient(
            ellipse 100% 80% at 63% 43%,
            transparent 0%,
            transparent 16%,
            rgba(140, 140, 140, 0.04) 23%,
            rgba(140, 140, 140, 0.018) 39%,
            transparent 77%
        ),
        radial-gradient(
            ellipse 80% 105% at 18% 73%,
            transparent 0%,
            transparent 20%,
            rgba(107, 114, 128, 0.03) 27%,
            rgba(107, 114, 128, 0.012) 43%,
            transparent 80%
        ),
        radial-gradient(
            ellipse 90% 70% at 78% 53%,
            transparent 0%,
            transparent 18%,
            rgba(156, 163, 175, 0.035) 25%,
            rgba(156, 163, 175, 0.014) 41%,
            transparent 79%
        );
    opacity: 0.4;
    animation: floatSlow2 120s ease-in-out infinite;
}

@keyframes floatSlow1 {
    0% {
        transform: translate3d(-4%, -3%, 0);
    }
    50% {
        transform: translate3d(3%, 4%, 0);
    }
    100% {
        transform: translate3d(-4%, -3%, 0);
    }
}

@keyframes floatSlow2 {
    0% {
        transform: translate3d(3%, 4%, 0);
    }
    50% {
        transform: translate3d(-4%, -3%, 0);
    }
    100% {
        transform: translate3d(3%, 4%, 0);
    }
}

@media (max-width: 767px) {
    .header-hero-wrapper {
        min-height: 100svh;
    }
    
    .hero-section {
        min-height: 100svh;
    }
    
    .hero-atmosphere::before,
    .hero-atmosphere::after {
        filter: blur(55px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-atmosphere::before,
    .hero-atmosphere::after {
        animation: none;
    }
    
    .social-proof-line {
        transition: none;
    }
}

.hero-section > div {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.social-proof-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-proof-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 3.5em;
    min-height: 3.5em;
    overflow: hidden;
}

@media (max-width: 640px) {
    .social-proof-wrapper {
        height: 4em;
        min-height: 4em;
    }
}

.social-proof-line {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.5;
    padding: 0 1rem;
    box-sizing: border-box;
}

.social-proof-line.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
