/* ─── PerformanceIQ · Visual Polish v2 ─── */
html { scroll-behavior: smooth; }

/* ═══ CSS Variables — Single source of truth ═══ */
:root {
    --brand-deep: #002a30;
    --brand-accent: #01cdbd;
    --brand-accent-rgb: 1, 205, 189;
    --brand-neutral: #3f4e4f;
    --warm-bg: #f7f6f3;
    --card-bg: #ffffff;
    --glass-bg: rgba(0, 42, 48, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 12px 40px -8px rgba(0, 42, 48, 0.12);
    --shadow-glow: 0 0 60px rgba(var(--brand-accent-rgb), 0.15);
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ Scroll-triggered animations ═══ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--transition-smooth),
                transform 0.8s var(--transition-smooth);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-up.visible:nth-child(2) { transition-delay: 0.08s; }
.fade-up.visible:nth-child(3) { transition-delay: 0.16s; }
.fade-up.visible:nth-child(4) { transition-delay: 0.24s; }
.fade-up.visible:nth-child(5) { transition-delay: 0.32s; }
.fade-up.visible:nth-child(6) { transition-delay: 0.40s; }

/* ═══ Video Hero ═══ */
.hero-dark {
    position: relative;
    overflow: hidden;
    background: var(--brand-deep);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#video-montage {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.montage-clip {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.montage-clip.active {
    opacity: 1;
}

/* Dark overlay — richer gradient with subtle noise texture */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(0, 42, 48, 0.82) 0%,
            rgba(0, 42, 48, 0.50) 35%,
            rgba(0, 42, 48, 0.65) 70%,
            rgba(0, 42, 48, 0.88) 100%),
        radial-gradient(ellipse 80% 70% at 75% 15%, rgba(var(--brand-accent-rgb), 0.08), transparent),
        radial-gradient(ellipse 50% 50% at 15% 85%, rgba(var(--brand-accent-rgb), 0.04), transparent);
    pointer-events: none;
}

/* Animated gradient fallback when no video loaded */
@keyframes hero-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg,
        #002a30 0%, #003a42 25%, #002a30 50%, #01cdbd10 75%, #002a30 100%);
    background-size: 400% 400%;
    animation: hero-gradient-shift 12s ease-in-out infinite;
}

/* ═══ Hero accent line — animated reveal ═══ */
.hero-accent-line {
    width: 60px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    transform-origin: left;
    animation: line-reveal 1s var(--transition-smooth) 0.5s both;
}
@keyframes line-reveal {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

/* ═══ Stat counter animation ═══ */
.stat-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}
.stat-number {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: var(--brand-accent);
    font-size: 2.5rem;
    line-height: 1;
}
.stat-suffix {
    font-weight: 700;
    color: var(--brand-accent);
    font-size: 1.5rem;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.35rem;
}

/* ═══ Warm off-white section bg ═══ */
.section-warm {
    background-color: var(--warm-bg);
}

/* ═══ Glass card ═══ */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ═══ Editorial section label ═══ */
.section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Inter', monospace;
    color: var(--brand-accent);
    display: inline-block;
    padding: 0.35rem 1.1rem;
    border: 1px solid rgba(var(--brand-accent-rgb), 0.25);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.section-label-dark {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

/* ═══ Decorative quote mark ═══ */
.quote-mark {
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--brand-accent);
    opacity: 0.35;
    font-weight: 700;
    position: absolute;
    top: 1.5rem;
    left: 1.75rem;
}

/* ═══ CTA Pulse — refined ring animation ═══ */
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(var(--brand-accent-rgb), 0.35); }
    70%  { box-shadow: 0 0 0 14px rgba(var(--brand-accent-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--brand-accent-rgb), 0); }
}
.cta-pulse:hover { animation: pulse-ring 1.6s infinite; }

/* ═══ Feature card — enhanced design ═══ */
.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), rgba(var(--brand-accent-rgb), 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: rgba(var(--brand-accent-rgb), 0.1);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--brand-accent-rgb), 0.08), rgba(var(--brand-accent-rgb), 0.15));
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover .feature-card-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(var(--brand-accent-rgb), 0.15), rgba(var(--brand-accent-rgb), 0.25));
}

/* ═══ Step Numbers — editorial indicators ═══ */
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), #00a99d);
    color: var(--brand-deep);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(var(--brand-accent-rgb), 0.25);
    flex-shrink: 0;
}

/* ═══ How It Works — Editorial alternating layout ═══ */
.steps-editorial-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.step-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.step-editorial-reversed .step-editorial-content {
    order: 2;
}
.step-editorial-reversed .step-editorial-image {
    order: 1;
}

.step-editorial-content {
    padding: 1rem 0;
}

/* Report preview image frame */
.step-image-frame {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(0, 42, 48, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
    transition: all 0.5s var(--transition-smooth);
    transform: perspective(1000px) rotateY(-2deg);
}
.step-editorial-reversed .step-image-frame {
    transform: perspective(1000px) rotateY(2deg);
}
.step-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-4px);
    box-shadow:
        0 20px 50px rgba(0, 42, 48, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}
.step-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}
.step-image-caption {
    padding: 0.875rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: linear-gradient(180deg, rgba(0, 42, 48, 0.02), rgba(0, 42, 48, 0.04));
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .step-editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .step-editorial-reversed .step-editorial-content,
    .step-editorial-reversed .step-editorial-image {
        order: unset;
    }
    .step-image-frame {
        transform: none;
    }
    .step-editorial-reversed .step-image-frame {
        transform: none;
    }
    .steps-editorial-container {
        gap: 3.5rem;
    }
}

/* ═══ SVG Icon Styling — ensures consistent rendering ═══ */
.feature-card-icon svg,
.audience-card-icon svg,
.pattern-card-icon svg {
    color: var(--brand-accent);
    stroke: var(--brand-accent);
}
.value-prop-icon svg {
    color: var(--brand-accent);
    stroke: var(--brand-accent);
}

/* ═══ Value prop icon container ═══ */
.value-prop-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--brand-accent-rgb), 0.06), rgba(var(--brand-accent-rgb), 0.12));
    transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover .value-prop-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(var(--brand-accent-rgb), 0.12), rgba(var(--brand-accent-rgb), 0.22));
}

/* ═══ Pillar divider ═══ */
.pillar-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 42, 48, 0.1), transparent);
    align-self: stretch;
}

/* ═══ FAQ chevron rotate ═══ */
.chevron-rotate { transition: transform 0.3s ease; }
.chevron-rotate.open { transform: rotate(180deg); }

/* ═══ Testimonial / Value prop card ═══ */
.testimonial-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}
.testimonial-card:hover::after {
    opacity: 1;
}

/* ═══ Custom scrollbar ═══ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ═══ Navbar — glassmorphism with dark-always treatment ═══ */
#navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s var(--transition-smooth);
}
#navbar.scrolled {
    background: var(--glass-bg) !important;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Nav link animated underline */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 999px;
    transition: width 0.35s var(--transition-smooth);
}
.nav-link:hover {
    color: #ffffff;
}
.nav-link:hover::after {
    width: 100%;
}

/* Nav CTA button */
.nav-cta {
    background: var(--brand-accent);
    color: var(--brand-deep);
    border: none;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(var(--brand-accent-rgb), 0.3);
}

/* Logo — always visible on dark */
.nav-logo {
    transition: all 0.3s ease;
}

/* ═══ Step connector (between How It Works pillars) ═══ */
.step-connector {
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0.2), var(--brand-accent), rgba(var(--brand-accent-rgb), 0.2));
    border-radius: 999px;
}

/* ═══ Founder Video Section ═══ */
.founder-video-wrap {
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}
.founder-video-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.18);
}

/* ═══ Pattern Carousel ═══ */
.pattern-carousel-wrap {
    max-width: 100vw;
}

.pattern-carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(
        to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 3%, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(
        to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 3%, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%);
}
.pattern-carousel::-webkit-scrollbar { display: none; }

.pattern-card {
    min-width: 310px;
    max-width: 330px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-smooth);
    cursor: grab;
    position: relative;
    overflow: hidden;
}
.pattern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), rgba(var(--brand-accent-rgb), 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pattern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.pattern-card:hover::before {
    opacity: 1;
}
.pattern-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(var(--brand-accent-rgb), 0.08), rgba(var(--brand-accent-rgb), 0.15));
}
.pattern-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pattern-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.pattern-card .pattern-detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
    margin-top: auto;
}

/* Carousel navigation arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: #334155;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
}
.carousel-arrow:hover {
    background: var(--brand-deep);
    color: white;
    border-color: var(--brand-deep);
    transform: translateY(-50%) scale(1.08);
}
.carousel-arrow-left { left: 1rem; }
.carousel-arrow-right { right: 1rem; }

/* Carousel dot indicators */
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    padding: 0;
}
.carousel-dot.active {
    background: var(--brand-accent);
    width: 28px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(var(--brand-accent-rgb), 0.3);
}

/* ═══ Hero image rounded treatment ═══ */
.hero-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ═══ Social proof bar — subtle dividers ═══ */
.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.30;
    transition: opacity 0.4s ease;
    cursor: default;
}
.social-proof-item:hover {
    opacity: 0.65;
}
.social-proof-icon {
    width: 28px;
    height: 28px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══ Who section — audience card refinement ═══ */
.audience-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    background: #fafaf9;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--transition-smooth);
}
.audience-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: rgba(var(--brand-accent-rgb), 0.12);
}
.audience-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 42, 48, 0.06), rgba(0, 42, 48, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}
.audience-card:hover .audience-card-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* ═══ FAQ item — refined ═══ */
.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(var(--brand-accent-rgb), 0.15);
}

/* ═══ Waitlist form card ═══ */
.waitlist-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), rgba(var(--brand-accent-rgb), 0.3), var(--brand-accent));
}

/* Form input polish */
.form-input {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border-radius: 0.875rem;
    border: 1.5px solid #e2e8f0;
    background: #fafafa;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.form-input::placeholder {
    color: #94a3b8;
}
.form-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(var(--brand-accent-rgb), 0.12);
}

/* ═══ Bottom CTA — subtle animated orbs ═══ */
.bottom-cta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--brand-accent-rgb), 0.06);
    filter: blur(60px);
    animation: float-orb 8s ease-in-out infinite alternate;
}
@keyframes float-orb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -20px) scale(1.15); }
}

/* ═══ Footer — premium dark treatment ═══ */
.footer-section {
    background: linear-gradient(180deg, #0a1214 0%, #0d1a1d 100%);
}
.footer-link {
    color: #64748b;
    transition: color 0.3s ease;
    position: relative;
}
.footer-link:hover {
    color: var(--brand-accent);
}
.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-deep);
    transform: translateY(-2px);
}

/* ═══ Mobile Optimisation ═══ */
@media (max-width: 767px) {
    .hero-dark {
        min-height: 100svh;
    }

    #navbar .h-20 { height: 4rem; }
    .mob-link { min-height: 44px; display: flex; align-items: center; }

    section.py-24 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    section.py-20 { padding-top: 3rem; padding-bottom: 3rem; }

    .faq-btn { min-height: 56px; padding-top: 1rem; padding-bottom: 1rem; }

    a[class*="rounded-full"],
    button[class*="rounded-full"] { min-height: 48px; }

    .testimonial-card { padding: 1.5rem 1.25rem 1.25rem; }

    .hero-image-wrap img { max-height: 260px; }

    footer .grid { gap: 2rem; }

    section.bg-brand-deep h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    #about .text-lg.font-medium {
        font-size: 1.05rem;
    }

    .pattern-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 1.5rem;
    }
    .pattern-carousel {
        padding-left: 1rem;
        padding-right: 1rem;
        scroll-snap-type: x mandatory;
    }

    .founder-video-wrap:hover {
        transform: none;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .carousel-arrow { display: none !important; }

    /* Stat counters — smaller on mobile */
    .stat-number { font-size: 1.75rem; }
    .stat-suffix { font-size: 1rem; }

    .waitlist-card { padding: 1.75rem; }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 374px) {
    .hero-dark .text-6xl { font-size: 2.5rem; }
    .hero-dark .text-xl { font-size: 1.125rem; }
    .hero-dark .text-lg { font-size: 1rem; }
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}
