.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-canvas);
}

.hero__canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    max-width: 720px;
    padding: 0 var(--space-page);
}

.hero__label {
    margin-bottom: var(--space-md);
    opacity: 0;
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--tracking-tighter);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    opacity: 0;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
    line-height: var(--leading-relaxed);
    opacity: 0;
}

.hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-content);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
    .hero__canvas {
        display: none;
    }

    .hero__label,
    .hero__title,
    .hero__subtitle,
    .hero__ctas,
    .hero__scroll-indicator {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero__scroll-line {
        animation: none;
    }

    .waveform__bar {
        animation: none !important;
        height: var(--max-h, 50%) !important;
        opacity: 0.5 !important;
    }

    /* Ensure all GSAP-animated elements are visible */
    [data-animate],
    [data-animate="stagger"],
    .step, .card, .stat,
    .split__text, .split__visual,
    .section-header > * {
        opacity: 1 !important;
        transform: none !important;
    }
}
