/* ============================================
   HERO - Full screen cinematic
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
    padding-bottom: 6rem;
    will-change: transform;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80') center/cover no-repeat;
    will-change: transform;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        rgba(10, 10, 10, 0.6) 70%,
        #0A0A0A 100%
    );
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    will-change: opacity, transform;
    max-width: 800px;
    margin: 0 auto;
}

/* GSAP initial states */
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta {
    opacity: 0;
    transform: translateY(40px);
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--light);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(245, 240, 232, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    color: rgba(245, 240, 232, 0.4);
}

.hero-scroll-hint span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212, 168, 83, 0.6), 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); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    position: relative;
    z-index: 5;
    padding: 3rem 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.stats-bar .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stats-bar .stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-bar .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FEATURES - Alternating rows
   ============================================ */
.features-section {
    padding: 8rem 0;
    position: relative;
    background: #0A0A0A;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.section-header .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--light);
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(60px);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse {
    flex-direction: row-reverse;
}

.feature-image-wrap {
    flex: 0 0 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.feature-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.1));
    pointer-events: none;
}

.feature-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    will-change: transform;
    transition: transform 0.6s ease;
}

.feature-row:hover .feature-image-wrap img {
    transform: scale(1.03);
}

.feature-text {
    flex: 1;
}

.feature-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-light);
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   COMING SOON
   ============================================ */
.coming-soon-section {
    padding: 6rem 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.coming-soon-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.coming-soon-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 168, 83, 0.15);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 83, 0.25);
}

.coming-soon-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.coming-soon-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.coming-soon-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   CTA - Full screen cinematic
   ============================================ */
.cta-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #0A0A0A 0%,
        rgba(10, 10, 10, 0.6) 30%,
        rgba(10, 10, 10, 0.6) 70%,
        #0A0A0A 100%
    );
    z-index: 2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(40px);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 2.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
    }

    .hero-scroll-hint {
        bottom: 1.5rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-divider {
        height: 30px;
    }

    .stats-bar .stat-number {
        font-size: 2rem;
    }

    .features-section {
        padding: 5rem 0;
    }

    .feature-row,
    .feature-row-reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-image-wrap {
        flex: none;
        width: 100%;
    }

    .feature-image-wrap img {
        height: 250px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        min-height: 60vh;
    }

    .hero-bg-image,
    .feature-image-wrap img,
    .cta-background img {
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stats-bar .stat-number {
        font-size: 1.8rem;
    }

    .feature-image-wrap img {
        height: 200px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-content .hero-eyebrow,
    .hero-content .hero-title,
    .hero-content .hero-subtitle,
    .hero-content .hero-cta,
    .feature-row,
    .section-eyebrow,
    .section-header .section-title,
    .stats-bar .stat-item,
    .coming-soon-card,
    .cta-content {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-bg-image,
    .feature-image-wrap img,
    .cta-background img {
        will-change: auto;
    }

    .scroll-line {
        animation: none;
    }
}
