/* ============================================
   FOOTBALL MUNDIAL — Mobile-first, scroll-rich
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green: #1a6b2a;
    --green-light: #22c55e;
    --green-glow: rgba(34,197,94,0.25);
    --gold: #facc15;
    --dark: #0a0a0a;
    --dark-2: #131313;
    --dark-3: #1c1c1c;
    --white: #f5f5f5;
    --gray: #888;
    --gray-dim: rgba(255,255,255,0.06);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Lenis compatibility */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-touch-callout: none; }

::selection { background: var(--green); color: var(--dark); }

/* ===== CURSOR GLOW (desktop only) ===== */
.cursor-glow {
    display: none;
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,107,42,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

@media (hover: hover) and (min-width: 900px) {
    .cursor-glow { display: block; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
    z-index: 10000;
    width: 0%;
    will-change: width;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: calc(var(--safe-top) + 16px) 20px 16px;
    transition: all 0.4s var(--ease);
    mix-blend-mode: difference;
}

.header.solid {
    mix-blend-mode: normal;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding-top: calc(var(--safe-top) + 10px);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-dim);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 101;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.logo-ball { font-size: 1.4rem; }

.logo-word {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    display: inline-flex;
    gap: 6px;
    align-items: baseline;
}

.logo-word-light { color: var(--white); }
.logo-word-accent { color: var(--green-light); }

.nav { display: none; gap: 32px; }

.nav a {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nav a:hover { opacity: 1; }

/* Hamburger */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    -webkit-tap-highlight-color: transparent;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.5s var(--ease);
    transform-origin: center;
}

.menu-btn.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-btn.active span:last-child  { transform: rotate(-45deg) translate(3px, -3px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 80px 28px calc(var(--safe-bottom) + 40px);
    clip-path: circle(0% at calc(100% - 44px) calc(var(--safe-top) + 30px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 0.7s var(--ease), opacity 0.35s var(--ease);
    will-change: clip-path;
}

.mobile-menu.open {
    display: flex;
    clip-path: circle(150% at calc(100% - 44px) calc(var(--safe-top) + 30px));
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    letter-spacing: 0.04em;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu.open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.35s; }

.mobile-nav a::before {
    content: attr(data-num);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--green-light);
    min-width: 24px;
}

/* Active state for touch */
.mobile-nav a:active {
    color: var(--green-light);
    transform: scale(0.97) !important;
}

.mobile-menu-footer {
    position: absolute;
    bottom: calc(var(--safe-bottom) + 32px);
    left: 28px;
}

.mobile-menu-footer p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 4px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100svh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: scale(1.08);
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, transparent 30%),
        linear-gradient(to top, var(--dark) 0%, transparent 55%),
        linear-gradient(135deg, rgba(10,10,10,0.6) 0%, transparent 60%);
}

/* Film grain texture */
.hero-grain {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px calc(var(--safe-bottom) + 90px);
}

.hero-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--green-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--green-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 12vw, 8rem);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(115%);
    animation: lineReveal 1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.55s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.7s; }

.hero-title .accent { color: var(--gold); }

.hero-city-highlight {
    color: var(--green-light);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.scroll-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.5); }
}

.hero-tagline {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-align: right;
}

/* Swipe indicator — mobile only */
.swipe-indicator {
    position: absolute;
    bottom: calc(var(--safe-bottom) + 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: swipeFadeIn 0.6s 1.8s var(--ease) forwards;
}

.swipe-hand {
    color: var(--gray);
    animation: swipeBounce 2.5s var(--ease) infinite;
}

@keyframes swipeFadeIn {
    to { opacity: 1; }
}

@keyframes swipeBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(12px); }
    60% { transform: translateY(4px); }
}

/* ===== TICKER ===== */
.ticker {
    padding: 16px 0;
    border-top: 1px solid var(--gray-dim);
    border-bottom: 1px solid var(--gray-dim);
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.ticker-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: tickerScroll 18s linear infinite;
    will-change: transform;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--gray);
}

.ticker-track span { flex-shrink: 0; }
.t-sep { color: var(--green-light); }

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== LABEL COMPONENT ===== */
.label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--green-light);
    margin-bottom: 16px;
}

.label::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--green-light);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0 80px;
}

.about-sticky {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-heading {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 4.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255,255,255,0.2);
}

.about-heading em {
    font-style: normal;
    color: var(--white);
    font-weight: 500;
}

/* Word-by-word reveal */
.about-heading .word {
    display: inline;
    transition: color 0.4s var(--ease);
}

.about-heading .word.lit {
    color: var(--white);
}

.about-heading .word em,
.about-heading .word.lit em {
    color: var(--green-light);
}

/* About images */
.about-img-stack {
    position: relative;
    height: 320px;
}

.about-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5);
    will-change: transform;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

/* Touch feedback on images */
.about-img:active img {
    transform: scale(1.03);
}

.about-img.img-1 {
    width: 72%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img.img-2 {
    width: 58%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--gray-dim);
    border-bottom: 1px solid var(--gray-dim);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.stats::-webkit-scrollbar { display: none; }

.stats-inner {
    display: flex;
    gap: 0;
    text-align: center;
    min-width: max-content;
    padding: 0 24px;
}

.stat-block {
    scroll-snap-align: center;
    min-width: 55vw;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s var(--ease);
}

.stat-block.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-divider {
    width: 1px;
    min-height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    align-self: center;
    margin: 0 12px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 14vw, 7rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.02em;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-top: 4px;
}

.stat-desc {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 6px;
}

/* ===== FORMATS (swipe cards) ===== */
.formats {
    padding: 80px 0 0;
}

.formats-top {
    padding: 0 20px 36px;
}

.formats-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.hscroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.hscroll-wrap::-webkit-scrollbar { display: none; }

.hscroll-track {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    width: max-content;
}

.format-card {
    width: 82vw;
    max-width: 380px;
    background: var(--dark-2);
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.04);
    scroll-snap-align: center;
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
    will-change: transform;
}

/* Touch press feedback */
.format-card:active {
    transform: scale(0.97);
}

.format-card.featured {
    border-color: var(--gold);
}

/* Scale-in when in viewport */
.format-card.card-visible {
    animation: cardPop 0.6s var(--ease-spring) both;
}

@keyframes cardPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.format-card:nth-child(2).card-visible { animation-delay: 0.1s; }
.format-card:nth-child(3).card-visible { animation-delay: 0.2s; }

.format-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.format-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.format-card:active .format-img img {
    transform: scale(1.05);
}

.format-num {
    position: absolute;
    bottom: 12px; left: 16px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(255,255,255,0.12);
}

.format-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 100px;
}

.format-body { padding: 24px 20px; }

.format-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.format-body p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.format-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.format-body li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    padding-left: 18px;
    position: relative;
}

.format-body li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
}

/* Swipe dots */
.swipe-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px 0 40px;
}

.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.4s var(--ease);
}

.dot.active {
    width: 24px;
    border-radius: 3px;
    background: var(--green-light);
}

/* ===== QUOTE ===== */
.quote-section {
    position: relative;
    height: 70svh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: -15%;
    will-change: transform;
}

.quote-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.6);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

#bigQuote,
.big-quote {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 0;
}

.bq-line {
    display: block;
    overflow: hidden;
}

.bq-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease);
}

.bq-line.visible .bq-inner {
    transform: translateY(0);
}

.bq-line.accent { color: var(--gold); }

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--dark-2);
}

.features-inner {
    padding: 0 20px;
}

.features-header { margin-bottom: 40px; }

.features-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--gray-dim);
    border: 1px solid var(--gray-dim);
    border-radius: 14px;
    overflow: hidden;
}

.feat {
    background: var(--dark-2);
    padding: 28px 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.feat.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Touch press feedback */
.feat:active {
    background: var(--dark-3);
    transform: scale(0.98) !important;
}

.feat-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--green-light);
    display: block;
    margin-bottom: 10px;
}

.feat h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.feat p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== LOCATIONS ===== */
.locations {
    padding: 80px 0;
}

.locations-inner { padding: 0 20px; }

.locations-header { margin-bottom: 40px; }

.locations-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.locations-map {
    display: grid;
    grid-template-columns: 1fr;
}

.loc {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-dim);
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.5s var(--ease);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.loc.visible {
    opacity: 1;
    transform: translateX(0);
}

.loc-city {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    letter-spacing: 0.04em;
    flex: 1;
    transition: color 0.3s;
}

.loc-count {
    font-size: 0.68rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 12px;
}

.loc-expand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray);
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-dim);
    border-radius: 50%;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

/* Tap active state */
.loc:active {
    padding-left: 12px;
}

.loc:active .loc-city {
    color: var(--green-light);
}

.loc:active .loc-expand {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--dark);
    transform: rotate(45deg);
}

/* Expanded detail text (mobile) */
.loc-detail-text {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    font-size: 0.78rem;
    color: var(--gray);
    padding: 0 0 0 0;
    border-bottom: 1px solid transparent;
}

.loc.expanded + .loc-detail-text {
    max-height: 60px;
    padding: 8px 0 18px;
    border-color: var(--gray-dim);
}

/* ===== CTA / CONTACT ===== */
.cta {
    padding: 80px 0 calc(80px + var(--safe-bottom));
    background: var(--dark-2);
}

.cta-inner {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-contacts a {
    font-size: 0.82rem;
    color: var(--green-light);
    transition: opacity 0.3s;
}

/* Form */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--dark-3);
    padding: 24px 20px;
    border-radius: 18px;
    border: 1px solid var(--gray-dim);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px; /* Prevents iOS zoom */
    color: var(--white);
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.cta-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 28px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-submit:active {
    transform: scale(0.96);
    background: var(--green-light);
    color: var(--dark);
}

.btn-submit svg { transition: transform 0.3s var(--ease); }

/* ===== CAMPAIGN BOTTOM CTA ===== */
.campaign-bottom-cta {
    padding: 56px 0 72px;
    background: var(--dark);
}

.campaign-bottom-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px;
    border: 1px solid var(--gray-dim);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(10,10,10,0.92));
}

.campaign-bottom-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.campaign-bottom-cta-inner p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.campaign-bottom-btn {
    display: inline-flex;
    width: auto;
    text-decoration: none;
}

/* ===== LEGAL CONTENT ===== */
.legal-shell {
    position: relative;
    z-index: 5;
    padding: calc(var(--safe-top) + 120px) 0 calc(var(--safe-bottom) + 28px);
    background: var(--dark-2);
    border-bottom: 1px solid var(--gray-dim);
}

.legal-shell.is-visible {
    display: block;
}

.legal-shell[hidden] {
    display: none !important;
}

.legal-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 260px);
}

.legal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(19, 19, 19, 0.96), rgba(19, 19, 19, 0.88));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 0 14px;
}

.legal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
}

#legal-content .legal-article h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 3.4rem);
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}

#legal-content .legal-article h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin: 18px 0 8px;
    color: var(--white);
}

#legal-content .legal-article p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 10px;
}

#legal-content .legal-article .legal-question {
    color: var(--green-light);
}

#legal-content a {
    color: var(--green-light);
}

body.legal-open .herd-ghl-root > :not(.scroll-progress):not(.cursor-glow):not(.header):not(.mobile-menu):not(.legal-shell):not(.footer) {
    display: none !important;
}

body.legal-open .header {
    mix-blend-mode: normal;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--gray-dim);
}

body.legal-open .mobile-menu {
    display: none !important;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--gray-dim);
    padding: 48px 0 0;
}

.footer-inner { padding: 0 20px; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-col a.is-active {
    color: var(--green-light);
}

.footer-col a:active { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 calc(20px + var(--safe-bottom));
    border-top: 1px solid var(--gray-dim);
}

.footer-bottom p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gray);
}

/* ===== RESPONSIVE - Small Mobile ===== */
@media (max-width: 420px) {
    .hero-content { padding: 0 16px calc(var(--safe-bottom) + 72px); }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hero-tagline { text-align: left; }
    .formats-top,
    .about-sticky,
    .features-inner,
    .locations-inner,
    .cta-inner,
    .footer-inner { padding-left: 16px; padding-right: 16px; }
    .hscroll-track { padding: 0 16px; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 899px) {
    html,
    body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .herd-ghl-root {
        touch-action: pan-y;
    }
}

/* ===== SCROLL-FADE UTILITY ===== */
[data-scroll-fade] {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease);
}

[data-scroll-fade].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE — Tablet ===== */
@media (min-width: 600px) {
    .stat-block { min-width: auto; }

    .stats-inner {
        justify-content: center;
        padding: 0 40px;
    }

    .stat-divider { margin: 0 32px; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-map {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }

    .format-card { width: 65vw; }

    .swipe-indicator { display: none; }
}

/* ===== RESPONSIVE — Desktop ===== */
@media (min-width: 900px) {
    .nav { display: flex; }
    .menu-btn { display: none; }
    .mobile-menu { display: none; }

    .header { padding: 20px 40px; }
    .header.solid { padding: 14px 40px; }

    .hero-content { padding: 0 40px 80px; }

    .about-sticky {
        max-width: 1400px;
        margin: 0 auto;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        padding: 0 40px;
    }

    .about-img-stack { height: 500px; }

    .stats { scroll-snap-type: none; overflow-x: visible; }
    .stats-inner { min-width: auto; padding: 0; max-width: 900px; margin: 0 auto; }
    .stat-divider { margin: 0 56px; }

    .formats-top {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 48px;
    }
    .hscroll-wrap {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 20px;
    }
    .hscroll-track {
        padding: 0;
        gap: 24px;
        margin: 0 auto;
    }
    .format-card { width: 380px; scroll-snap-align: none; }
    .swipe-dots { display: none; }
    .swipe-indicator { display: none; }

    .features-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }

    .locations-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

    .cta-inner {
        max-width: 1100px;
        margin: 0 auto;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: center;
        padding: 0 40px;
    }

    .cta-form { padding: 36px; }

    .campaign-bottom-cta-inner {
        padding: 36px;
    }

    .legal-inner {
        padding: 0 40px;
    }

    .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
    .footer-top { grid-template-columns: 1fr 2fr; }

    /* Desktop hover states */
    .format-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255,255,255,0.1);
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .format-card:hover .format-img img {
        transform: scale(1.06);
    }

    .feat:hover { background: var(--dark-3); }

    .loc:hover { padding-left: 16px; }
    .loc:hover .loc-city { color: var(--green-light); }
    .loc:hover .loc-expand {
        background: var(--green-light);
        border-color: var(--green-light);
        color: var(--dark);
    }

    .btn-submit:hover {
        background: var(--green-light);
        color: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px var(--green-glow);
    }

    .btn-submit:hover svg { transform: translateX(4px); }

    .footer-col a:hover { color: var(--white); transform: translateX(4px); }
}

@media (min-width: 1200px) {
    .hero-content { padding: 0 60px 80px; }
    .stat-divider { margin: 0 72px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.15s !important;
    }
    html { scroll-behavior: auto; }
    .hero-title .line-inner { transform: translateY(0); }
    .bq-inner { transform: translateY(0); }
    .format-card { animation: none !important; opacity: 1; }
}
