/* ═══════════════════════════════════════════════════════════
   FIFA TRAFFIC PLATFORM — style.css
   Colors & fonts sourced directly from Figma file:
   figma.com/design/KWWMk7ZstfE739pZqe3EDr/Mobile (node 6212:824)
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   All values extracted from Figma inspection
───────────────────────────────────────────── */
:root {
  /* ── Colors (from Figma fills, sorted by frequency) ── */
  --color-bg-primary:       #1e1e1e;   /* near-black — most-used fill (127×) */
  --color-white:            #ffffff;   /* pure white (84×) */
  --color-accent:           #facc15;   /* yellow/gold brand accent (54×) */
  --color-brand-blue:       #000088;   /* dark navy blue (50×) */
  --color-gray-light:       #d2d2d2;   /* light gray (27×) */
  --color-gray-mid:         #6b7280;   /* medium gray — secondary text (24×) */
  --color-bg-secondary:     #232323;   /* dark charcoal (24×) */
  --color-black:            #000000;   /* pure black (14×) */
  --color-gray-faint:       #d9d9d9;   /* very light gray (2×) */
  --color-olive-gold:       #6f6530;   /* dark olive/gold (2×) */
  --color-orange:           #ff9933;   /* orange accent (1×) */
  --color-green:            #128807;   /* flag green (1×) */
  --color-red:              #bd3d44;   /* flag red (1×) */
  --color-navy-dark:        #192f5d;   /* dark navy (1×) */
  --color-yellow-bright:    #ffcb31;   /* bright yellow variant (1×) */

  /* ── Semantic aliases ── */
  --color-text-primary:     var(--color-white);
  --color-text-secondary:   var(--color-gray-mid);
  --color-text-muted:       var(--color-gray-light);
  --color-text-dark:        var(--color-bg-primary);
  --color-surface:          var(--color-bg-secondary);
  --color-border:           #2e2e2e;
  --color-border-accent:    var(--color-accent);

  /* ── Stroke colors (from Figma strokes) ── */
  --stroke-gray:            #6b7280;   /* border/stroke mid (22×) */
  --stroke-white:           #ffffff;   /* white stroke (16×) */
  --stroke-accent:          #facc15;   /* accent stroke (8×) */
  --stroke-dark:            #1e1e1e;   /* dark stroke (4×) */
  --stroke-olive:           #6f6530;   /* olive stroke (2×) */

  /* ── Typography — families from Figma ── */
  --font-display:   'Jersey 10', sans-serif;        /* sporty display — 96px/76px headlines */
  --font-heading:   'Be Vietnam Pro', sans-serif;   /* section headings — 48/32/24px */
  --font-ui:        'Inter', sans-serif;            /* UI, labels, buttons, body */

  /* ── Type scale (from Figma font sizes) ── */
  --text-display:   5rem;    /* 96px — Jersey 10 Black, hero / big numbers */
  --text-display-2: 4.75rem; /* 76px — Jersey 10 hero variant */
  --text-xxl:       3.8rem;  /* ~61px — Inter Bold */
  --text-xl:        3rem;    /* 48px — Be Vietnam Pro Medium */
  --text-2xl:       2rem;    /* 32px — Be Vietnam Pro Medium / Inter Medium */
  --text-xl-inter:  1.5rem;  /* 24px — Inter / Be Vietnam Pro Medium */
  --text-lg:        1.375rem;/* 22px — Inter Semi Bold */
  --text-base:      1.25rem; /* 20px — Inter Regular / Be Vietnam Pro Regular */
  --text-md:        1rem;    /* 16px — Inter Medium */
  --text-sm:        0.875rem;/* 14px */
  --text-xs:        0.75rem; /* 12px — nav links */

  /* ── Font weights used in Figma ── */
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-black:     900;

  /* ── Spacing ── */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* ── Border radius ── */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 0 32px rgba(250, 204, 21, 0.25);
  --shadow-glow:   0 0 60px rgba(250, 204, 21, 0.15);

  /* ── Transitions ── */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
  --duration-slower: 700ms;

  /* ── Layout ── */
  --nav-height:     107px;  /* Figma: nav elements end at y=107 (Frame 127 y=27 + h=80) */
  --content-max:    1680px;  /* from Figma: content column width */
  --content-pad:    7.5rem;  /* ~120px horizontal padding */
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  /* overflow-x intentionally omitted — sections that need H-clip have it locally */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.section-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  text-transform: none;
  color: #FFD700;
  border: 1px solid #FFD700;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}

.section-tag .tag-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #b8860b 35%, #FFD700 40%);
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.section-header {
  margin-bottom: var(--space-16);
}

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────── */
.container-xl {
  width: 100%;
  max-width: calc(var(--content-max) + var(--content-pad) * 2);
  padding-inline: var(--content-pad);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-weight: var(--fw-semibold);
  font-size: var(--text-md);
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.75rem;
  transition:
    background-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* transform on hover/active is handled by GSAP in main.js (scale: 1.05, y: -2)
   to avoid CSS ↔ GSAP transform conflicts. */

/* Primary — gold fill */
.btn-primary-hero {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-weight: var(--fw-bold);
}

.btn-primary-hero:hover {
  background: var(--color-yellow-bright);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-accent);
}

/* Outline — white ghost */
.btn-outline-hero {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--stroke-white);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Hero CTA row buttons — red hover (text + border) */
.hero__cta-row .btn-outline-hero {
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero__cta-row .btn-outline-hero:hover,
.hero__cta-row .btn-outline-hero:focus-visible {
  color: var(--red-live, #FF0000);
  border-color: var(--red-live, #FF0000);
  background: rgba(255, 0, 0, 0.08);
}

/* Nav register button */
.btn-register {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
}

.btn-register:hover {
  background: var(--color-yellow-bright);
  color: var(--color-bg-primary);
}

/* Feature section button */
.btn-feature {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  padding: 0.9rem 1.8rem;
}

.btn-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Register form submit */
.btn-register-submit {
  width: 100%;
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  padding: 0.9rem 2rem;
}

.btn-register-submit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ─────────────────────────────────────────────
   6. NAVIGATION
   Figma measurements:
     Total height   : 107 px  (Frame 127 y=27 + h=80)
     Logo           : 177 × 48 px  (Vector 7142:2731)
     Left padding   : 40 px   (Frame 127 x=40 on 1920 px canvas)
     Right padding  : 41 px   (1920 − 1879 = 41 px after Group 42)
     Nav link size  : 12 px Inter Medium  (text node h=12)
     Link gap       : 24 px   (101−77 = 24 px between item edges)
     Offer strip    : 460 × 35 px  (Frame 190 inner component)
     Register group : 207 × 67 px  (Group 42 7142:2736)
───────────────────────────────────────────── */

/* ── Header shell (fixed, full-width) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

/* ── Navbar base ── */
.site-nav {
  /* Exact Figma height: elements span y=27→107 inside hero frame */
  height: var(--nav-height);          /* 107 px */
  background: transparent;
  /* backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px); */
  transition: background var(--duration-slow) var(--ease-out),
              border-color var(--duration-slow) var(--ease-out);

  /* Bootstrap navbar overrides */
  --bs-navbar-padding-y: 0;
  --bs-navbar-brand-padding-y: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.site-nav.scrolled {
  background: transparent;
  border-bottom-color: rgba(250, 204, 21, 0.12); /* subtle accent hint on scroll */
}

/* ── Inner container ──────────────────────────────────────────
   Figma layout:
     Frame 127 (logo+links): x=40 → x=669   (629 px wide)
     Gap:                    x=669 → x=1173  (504 px)
     Frame 190 (offer strip):x=1173 → x=1633 (460 px)
     Gap:                    x=1633 → x=1672 (39 px)
     Group 42 (register):    x=1672 → x=1879 (207 px)
     Right margin:           x=1879 → x=1920 (41 px)
──────────────────────────────────────────────────────────── */
.container-nav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  /* Figma: Frame 127 at x=40, Group 42 ends at x=1879 → 41 px right margin */
  padding-left: 40px;
  padding-right: 41px;
  height: 100%;
  margin-inline: auto;
}

/* ── Logo ────────────────────────────────────────────────────
   Figma: Vector 7142:2731 — 177 × 48 px
   Position: x=30 inside Frame 127 (which starts at x=40)
─────────────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  /* Figma logo height: 48 px */
  height: 48px;
  /* Figma logo bounding width: 177 px — let it size naturally */
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo__icon {
  /* SVG icon portion of the 177×48 logo */
  height: 38px;
  width: 38px;
  flex-shrink: 0;
}

.site-logo__wordmark {
  font-family: var(--font-display);   /* Jersey 10 */
  font-size: 1.75rem;                  /* ≈ 28 px, proportional to 48 px logo height */
  font-weight: 400;                    /* Jersey 10 is single-weight */
  color: var(--color-white);           /* #ffffff */
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-logo__accent {
  color: var(--color-accent);          /* #facc15 — gold on "FC" */
}

/* ── Mobile hamburger (custom 3-bar) ─────────────────────── */
.site-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast);
  /* Bootstrap's .navbar-toggler is overridden; hide its default icon */
  line-height: 1;
}

.site-toggler:hover {
  background: rgba(255, 255, 255, 0.06);
}

.site-toggler__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity  var(--duration-base) var(--ease-out);
}

/* Animated X when open */
.site-toggler[aria-expanded="true"] .site-toggler__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-toggler[aria-expanded="true"] .site-toggler__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-toggler[aria-expanded="true"] .site-toggler__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Primary nav links ───────────────────────────────────────
   Figma: Frame 128 (7142:2732) — 232 × 12 px
     "FIFA Offer" x=0  w=77     → right edge = 77
     "Features"  x=101 w=67     → gap from prev = 101−77 = 24 px
     "FAQs"      x=192 w=40     → gap from prev = 192−168 = 24 px
   Text node height = 12 px → font-size: 12px
   Font: Inter Medium (#d2d2d2 from Figma gray-light analysis)
─────────────────────────────────────────────────────────── */
.site-navlinks {
  /* Figma: nav links start at x=367 inside Frame 127 (x=40 on page)
     Logo ends at ~207 px from Frame 127 left → gap = 367−207 = 160 px  */
  margin-left: 48px;  /* desktop gap between logo end and first link */
  gap: 0;
  flex-direction: row;
  flex-wrap: nowrap;
}

.site-navlink {
  font-family: var(--font-ui);           /* Inter */
  font-size: 12px;                       /* exact Figma: text node h=12 */
  font-weight: var(--fw-medium);         /* 500 */
  letter-spacing: 0.05em;
  color: var(--color-gray-light) !important;  /* #d2d2d2 */
  text-decoration: none;
  white-space: nowrap;
  /* Figma inter-link gap ≈ 24 px */
  padding: 0 !important;
  margin-right: 24px;
  transition: color var(--duration-fast);
  line-height: 1;
}

.site-navlink:last-child {
  margin-right: 0;
}

.site-navlink:hover,
.site-navlink:focus-visible {
  color: var(--color-accent) !important; /* #facc15 on hover */
}

.site-navlink.active {
  color: var(--color-accent) !important;
}

/* ── Flexible spacer (fills the ~504 px desktop gap) ── */
.nav-spacer {
  flex: 1 1 0;
  min-width: 0;
}

/* ── Offer strip (Frame 190 / Component 169) ─────────────────
   Figma: Frame 190 — 460 × 67 px at x=1173
          Inner component: 600 × 35 px
   Treat as live-offer ticker (closest to a 35 px tall strip)
─────────────────────────────────────────────────────────── */
.nav-offer-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Figma inner component: 35 px tall */
  height: 35px;
  /* Width capped at Figma value, shrinks if viewport narrows */
  max-width: 460px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);   /* #2e2e2e */
  border-radius: 3px;
  overflow: hidden;
  white-space: nowrap;
}

.nav-offer-strip__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);        /* #facc15 — live indicator */
  box-shadow: 0 0 6px rgba(250, 204, 21, 0.7);
}

.nav-offer-strip__text {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-gray-light);         /* #d2d2d2 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-offer-strip__text strong {
  color: var(--color-accent);             /* #facc15 */
  font-weight: var(--fw-bold);
}

/* ── Flags + Register (Group 42) ─────────────────────────────
   Figma: Group 42 (7142:2736) — 207 × 67 px at x=1672
   Group 43 inner: 10 flag-image strips, each ≈22 × 67 px
   "REGISTER" text: Inter Black, 110 × 16.75 px
     Canvas pos x=1720 y=65 → relative to Group: x=48 y=25
     → horizontally centered: (207−110)/2=48.5 ≈ 48 ✓
     → vertically centered:   top=25, bottom=41.75, mid=33.4 ≈ group mid=33.5 ✓
─────────────────────────────────────────────────────────── */
.nav-register-wrap {
  flex-shrink: 0;
  /* Figma gap between Frame 190 end (x=1633) and Group 42 start (x=1672) = 39 px */
  margin-left: 39px;
}

.nav-register {
  /* Exact Figma dimensions: 207 × 67 px */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 207px;
  height: 67px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-image: url('../assets/images/register-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nav-register:hover .nav-register__label {
  letter-spacing: 0.2em;
}

/* "REGISTER" centered label
   Figma: Inter Black (weight 900), 110 × 16.75 px text node
   Centered: x=48 y=25 inside 207×67 → both H and V centered */
.nav-register__label {
      position: relative;
    z-index: 1;
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.8);
    transition: letter-spacing var(--duration-base) var(--ease-out);
}

/* ═══════════════════════════════════════════
   MOBILE NAV — collapsed panel
   Bootstrap collapse opens below the header.
   Stack items vertically; register becomes
   a full-width gold CTA.
═══════════════════════════════════════════ */
@media (max-width: 1199.98px) {  /* below xl breakpoint */

  /* ── Make site-nav the positioning context ── */
  .site-nav {
    position: relative;
    overflow: visible !important;
  }

  /* ── Drop collapse panel BELOW the navbar, not inline ── */
  #navCollapse {
    position: absolute !important;
    top: var(--nav-height) !important;  /* 107px — flush below navbar */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    /* Dark frosted panel */
    background: rgba(8, 8, 8, 0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.75);
    z-index: 1049;
    /* Override Bootstrap's flex remnants */
    display: block !important;
    padding: 0 !important;
    /* Bootstrap collapse hides via height; keep it working */
  }

  /* When hidden (collapsed state), Bootstrap uses display:none via JS */
  #navCollapse:not(.show) {
    display: none !important;
  }

  /* Inner layout */
  #navCollapse .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    padding: 8px 24px 0;
    margin: 0;
    gap: 0;
  }

  #navCollapse .navbar-nav li {
    list-style: none;
  }

  #navCollapse .navbar-nav .site-navlink {
    display: block;
    width: 100%;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 14px 0 !important;
    margin-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    letter-spacing: 0.03em;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  #navCollapse .navbar-nav .site-navlink:hover {
    color: var(--color-accent) !important;
    padding-left: 6px !important;
  }

  #navCollapse .navbar-nav li:last-child .site-navlink {
    border-bottom: none;
  }

  /* Register button */
  #navCollapse .btn-primary-hero,
  #navCollapse [href="#register"] {
    display: block;
    width: calc(100% - 48px);
    margin: 16px 24px 24px;
    text-align: center;
    padding: 14px 20px;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
  }

  /* Hide offer strip on mobile */
  .nav-offer-strip {
    display: none !important;
  }

  /* Spacer not needed in vertical layout */
  .nav-spacer {
    display: none;
  }
}

/* ─────────────────────────────────────────────
   7. HERO SECTION
───────────────────────────────────────────── */

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

.hero__bg-image {
  position: absolute;
  inset: 0;
  /* Desktop: PNG version */
  background-image: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(120 39 39 / 0%) 40%, rgba(250, 204, 21, 0.08) 100%), url(../assets/images/hero-bg.png);
  background-size: cover;
  background-position: center top;
  background-color: var(--color-bg-primary);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    rgba(0, 0, 0, 0%),
    transparent
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--space-8);
  padding-top: 28%;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, var(--text-display));
  line-height: 1;
  color: #d2ab98;
  margin-bottom: var(--space-5);
}

.hero__sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  color: var(--color-gray-light);
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* 20% Extra coin — bottom-left of hero (matches reference) */
.hero__coin {
  position: absolute;
  bottom: 110px;
  left: var(--content-pad);
  z-index: 2;
  width: clamp(70px, 6vw, 100px);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
  animation: coin-float 3s ease-in-out infinite;
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
  .hero__content { padding-top: 20%; }
  .hero__headline { font-size: clamp(2.5rem, 6.5vw, 4rem); }
}

@media (max-width: 768px) {
  /* Switch to WebP on mobile */
  .hero__bg-image {
    background-image: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(120 39 39 / 0%) 40%, rgba(250, 204, 21, 0.08) 100%), url(../assets/images/hero-bg-mobile.webp);
    background-position: 55% top;
  }
  .hero__content {
    padding-top: 40%;
    padding-inline: 20px;
    max-width: 100%;
  }
  .hero__headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero__sub {
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 28px;
  }
  /* Remove forced line-break on mobile */
  .hero__sub br { display: none; }
  .hero__cta-row { gap: 12px; }
}

@media (max-width: 480px) {
  .hero__content { padding-top: 110%; }
  .hero__headline { font-size: clamp(1.7rem, 7.5vw, 2.3rem); }
  .hero__sub { font-size: 0.92rem; }
  .hero__cta-row .btn-outline-hero { font-size: 0.85rem; padding: 12px 20px; }
}

@media (max-width: 375px) {
  .hero__content { padding-top: 35%; }
  .hero__headline { font-size: clamp(1.5rem, 8.5vw, 2rem); }
  .hero__sub { font-size: 0.88rem; }
}

/* ─────────────────────────────────────────────
   8. CTA STRIP — BUY FIFA TRAFFIC
───────────────────────────────────────────── */
.cta-strip {
  position: relative;
  background: var(--color-bg-secondary);
  padding-block: var(--space-24);
  overflow: hidden;
}

.cta-strip__grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(100% / 8 - 1px),
      rgba(255, 255, 255, 0.025) calc(100% / 8 - 1px),
      rgba(255, 255, 255, 0.025) calc(100% / 8)
    );
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-strip__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.cta-strip__body {
  font-family: var(--font-heading);
  font-size: var(--text-xl-inter);
  font-weight: var(--fw-regular);
  color: var(--color-gray-mid);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   9. PARTNER LOGOS MARQUEE
───────────────────────────────────────────── */
.partners {
  background: #020202;
    overflow: hidden;
    padding: 3rem 0px 7rem;
}

.partners__track {
  overflow: hidden;
}

.partners__placeholder {
  display: flex;
  gap: var(--space-16);
  animation: marquee 20s linear infinite;
  width: max-content;
}

.partners__placeholder span {
  font-family: var(--font-ui);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  white-space: nowrap;
  transition: color var(--duration-base);
}

.partners__placeholder span:hover {
  color: var(--color-accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   10. WHY FIFA SECTION
───────────────────────────────────────────── */
.why-fifa {
  padding-block: var(--space-24);
  background-image: url('../assets/images/why-fifa-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Header row: heading left, gradient badge right */
.why-fifa__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.why-fifa__heading {
  margin: 0;
}

.why-fifa__heading-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.why-fifa__heading-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.why-fifa__badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(100deg, #FACC15 0%, #F97316 55%, #EF4444 100%);
  border-radius: 8px;
  padding: 18px 24px;
  flex-shrink: 0;
}

.why-fifa__badge-label {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-white);
}

.why-fifa__badge-value {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

/* Badge — tablet */
@media (max-width: 900px) {
  .why-fifa__badge {
    padding: 14px 18px;
    border-radius: 6px;
    align-self: flex-start;
  }

  .why-fifa__badge-label {
    font-size: 0.875rem;
  }

  .why-fifa__badge-value {
    font-size: 1.3rem;
  }
}

/* Badge — mobile */
@media (max-width: 480px) {
  .why-fifa__badge {
    padding: 10px 14px;
    border-radius: 6px;
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .why-fifa__badge-label {
    font-size: 0.8rem;
  }

  .why-fifa__badge-value {
    font-size: 1.1rem;
  }
}

/* Line chart */
.why-fifa__chart {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.why-fifa__chart-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

/* ── SVG chart element classes ── */
.chart-count-label {
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.chart-count-label--last {
  text-shadow: 0 0 12px rgba(255,215,0,0.8), 0 1px 6px rgba(0,0,0,0.9);
}
.chart-year-label {
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.chart-year-label--last {
  text-shadow: 0 0 10px rgba(255,215,0,0.6), 0 1px 6px rgba(0,0,0,0.9);
}
.chart-desc-label {
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}
/* Year milestones — hidden (year labels now inside SVG) */
.why-fifa__milestones {
  display: none;
}

.why-fifa__milestone {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

.why-fifa__milestone strong {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  line-height: 1;
}

.why-fifa__milestone span {
  font-size: var(--text-lg);
  color: var(--color-gray-mid);
  max-width: 20ch;
  margin-inline: auto;
  line-height: normal;
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  .why-fifa {
    padding-block: var(--space-16); /* 4rem */
  }

  .why-fifa__header {
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }

  .why-fifa__badge {
    align-self: flex-start;
  }

  .why-fifa__milestones {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  .why-fifa__chart {
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .why-fifa__chart-svg {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .chart-desc-label {
    display: none;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .why-fifa {
    padding-block: var(--space-10); /* 2.5rem */
  }

  .why-fifa__heading-main {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
  }

  .why-fifa__chart {
    width: 100%;
    max-width: none;
  }

  .why-fifa__chart-svg {
    width: 100%;
    min-width: 0;
    height: auto;
  }
}

/* ─────────────────────────────────────────────
   11. STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--color-brand-blue);
  padding-block: var(--space-12);
  overflow: hidden;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: calc(var(--content-max) + var(--content-pad) * 2);
  padding-inline: var(--content-pad);
  margin-inline: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 1;
  color: var(--color-accent);
}

.stat-item__suffix {
  font-family: var(--font-display);
  font-size: var(--text-xxl);
  color: var(--color-accent);
  align-self: flex-end;
  margin-bottom: 0.25em;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.stat-item__divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Yellow variant — Figma section-4 (Frame 70 textured gold bg) */
.stats-bar--yellow {
  background-image: url('../assets/images/Frame 70.png');
  background-size: cover;
  background-position: center;
  background-color: #FFD200;
  padding-block: var(--space-16);
}

.stats-bar--yellow .stat-item__number {
  color: #111111;
  font-size: clamp(2.4rem, 5vw, var(--text-display));
}

.stats-bar--yellow .stat-item__label {
  color: rgba(0, 0, 0, 0.82);
  font-weight: var(--fw-semibold);
}

/* ─────────────────────────────────────────────
   12. CHALLENGES SECTION
───────────────────────────────────────────── */
.challenges {
  padding-block: var(--space-32);
  background-image: url('../assets/images/challenges-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.challenges__heading {
  font-family: var(--font-display) !important;
  font-size: clamp(2.5rem, 4vw, 4.75rem) !important;
  letter-spacing: 0.01em;
  line-height: 1.05 !important;
}

/* ── Marquee wrapper — full width, edges fade out ── */
.challenges-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); */
}

/* ── Track — GSAP moves this left continuously ── */
.challenges-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
  padding-block: var(--space-2);
}

/* ── Card — default state (section-9.jpg): solid black, text only ── */
.challenge-card {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 430px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background-color: #050505;
  /* transition scale (not transform) — GSAP animates transform during fly-in */
  transition:
    scale 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

/* BG image layer — hidden until hover */
.challenge-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}

/* Dark overlay over bg image — keeps text readable (section-9.1.jpg) */
.challenge-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.challenge-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-8);
  text-align: left;
}

/* ── Hover state (section-9.1.jpg) ── */
.challenge-card:hover {
  scale: 1.02;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: #C8351A;
}

.challenge-card:hover .challenge-card__bg {
  opacity: 1;
  transform: scale(1);
}

.challenge-card:hover .challenge-card__overlay {
  opacity: 1;
}

.challenge-card:hover .challenge-card__body {
  color: var(--color-white);
}

.challenge-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  line-height: 1.35;
  margin: 0;
  transition: color 0.4s ease;
}

.challenge-card__body {
  font-size: var(--text-md);
  color: var(--color-gray-mid);
  line-height: 1.65;
  margin: 0;
  transition: color 0.4s ease;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .challenge-card {
    width: 340px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .challenge-card {
    width: 300px;
    height: 340px;
  }
  .challenges-marquee-track {
    gap: 16px;
  }
  .challenge-card__content {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .challenge-card {
    width: 260px;
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .challenges-marquee-track {
    animation: none;
  }
}

/* ─────────────────────────────────────────────
   13. SOLUTION / DASHBOARD
───────────────────────────────────────────── */
.solution {
  padding-top: var(--space-32);
  background: var(--color-bg-primary);
}

/* Yellow solution cards — full-width marquee (reference section-10) */
.solution-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: var(--space-4);
  /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); */
}

.solution-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
  padding-block: var(--space-2);
}

/* ── Card — default state (section-10.jpg): solid yellow, dark text ── */
.solution-card {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 430px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background-color: #FACC15;
  /* transition scale (not transform) — GSAP animates transform during fly-in */
  transition:
    scale 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

/* BG image layer — hidden until hover */
.solution-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}

/* Dark olive overlay — keeps text readable (section-10.1.jpg) */
.solution-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 0, 0.55);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.solution-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-8);
  text-align: left;
}

/* ── Hover state (section-10.1.jpg) ── */
.solution-card:hover {
  scale: 1.02;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  border-color: #FACC15;
}

.solution-card:hover .solution-card__bg {
  opacity: 1;
  transform: scale(1);
}

.solution-card:hover .solution-card__overlay {
  opacity: 1;
}

.solution-card:hover .solution-card__title {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.solution-card:hover .solution-card__body {
  color: var(--color-white);
}

.solution-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: var(--fw-semibold);
  color: #0A0A0A;
  line-height: 1.35;
  margin: 0;
  transition: color 0.45s ease, text-shadow 0.45s ease;
}

.solution-card__body {
  font-size: var(--text-md);
  color: #1a1a1a;
  line-height: 1.65;
  margin: 0;
  transition: color 0.45s ease;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .solution-card {
    width: 340px;
    height: 380px;
  }
  .solution-marquee-track {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .solution-card {
    width: 300px;
    height: 340px;
  }
  .solution-marquee-track {
    gap: 16px;
  }
  .solution-card__content {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .solution-card {
    width: 260px;
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-marquee-track {
    animation: none;
  }
  .solution-card,
  .solution-card__bg,
  .solution-card__overlay,
  .solution-card__title,
  .solution-card__body {
    transition: none;
  }
}

/* Yellow pixel band holding the LEGO dashboard frame (reference section-11) */
#solution-dashboard-frame {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-20);
  /* Measured from section-11.jpg @1919px: 51px top / 91px bottom → 8px grid */
  padding: 48px 0 88px 0;
  background-color: #D4B80C;
  background-image: url('../assets/images/solution-dashboard-frame-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#solution-dashboard-frame > * {
  position: relative;
  z-index: 1;
}

/* Frame wrapper — centers the layered box */
.dashboard-frame__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/*
   Dashboard frame box — holds video (below) + LEGO frame image (above).
   aspect-ratio locked to the frame asset (1682×937) so both layers
   stay aligned at every viewport width.
   Width 87.6% = frame span measured in section-11.jpg (1682/1919).
*/
#dashboard-frame,
.dashboard-frame__box {
  position: relative;
  width: 87.6%;
  max-width: 1682px;
  aspect-ratio: 1682 / 937;
  overflow: hidden;
}

/*
   VIDEO LAYER — bottom (z-index: 1).
   Position = transparent cutout in the-solution-iframe.webp, measured
   from its alpha channel: x 175–1494, y 128–827 of 1682×937
   (10.40% / 13.66% / 78.48% / 74.71%), expanded ~0.25% per side so the
   opaque bricks always overlap the video edges — no hairline gaps.
*/
.dashboard-frame__video-wrap {
  position: absolute;
  top: 13.4%;
  left: 10.2%;
  width: 78.9%;
  height: 75.2%;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.dashboard-frame__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* FRAME IMAGE LAYER — top (z-index: 2), acts as the screen bezel */
.dashboard-frame__frame-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dashboard-frame__frame-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Responsive — % cutout values keep both layers aligned at all sizes */
@media (max-width: 1400px) {
  #dashboard-frame,
  .dashboard-frame__box {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  #dashboard-frame,
  .dashboard-frame__box {
    width: 94%;
  }
  #solution-dashboard-frame {
    padding: 48px 0;
  }
}

@media (max-width: 768px) {
  #dashboard-frame,
  .dashboard-frame__box {
    width: 100%;
  }
  .dashboard-frame__wrapper {
    padding: 0 8px;
  }
  .dashboard-frame__video-wrap {
    border-radius: 6px;
  }
  #solution-dashboard-frame {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .dashboard-frame__video-wrap {
    border-radius: 4px;
  }
  #solution-dashboard-frame {
    padding: 32px 0;
  }
}

/* Accessibility — stop video motion if requested */
@media (prefers-reduced-motion: reduce) {
  .dashboard-frame__video {
    display: none;
  }
  .dashboard-frame__video-wrap {
    background: #111;
  }
}

/* ─────────────────────────────────────────────
   14. KEY FEATURES
───────────────────────────────────────────── */
/* ─── KEY FEATURES — Layered Pinning (VwbywPd) ─── */
#key-features {
  position: relative;
  overflow: visible;
  background-image: url('../assets/images/features-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.key-features__intro {
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
}
/* panels-wrap: spacer child (not padding) extends content area for sticky containment */
#features-panels {
  position: relative;
}
/* Chrome sticky uses contentBox.bottom — a spacer child extends the content area */
.features-spacer {
  height: 200vh;
  pointer-events: none;
}
/* Each panel IS the sticky layer — parent must be taller than sticky height */
.features-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  /* NO background here — transparent so future panels don't cover animation */
}
#features-panel-1 { z-index: 41; }
#features-panel-2 { z-index: 42; }
#features-panel-3 { z-index: 43; }
#features-panel-4 { z-index: 44; }
.features-panel__card {
      position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    background-image: url(../assets/images/features-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1 !important;
}
.features-panel__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* override grid's align-items:end so image stays centred */
  align-self: center;
}
.features-panel__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
.features-panel.is-active .features-panel__img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
.features-panel__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Right column — text + button pinned to bottom */
.features-panel__content {
  padding: 0 48px 64px 32px;
  z-index: 2;
  position: relative;
}
.features-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.features-panel__desc {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 0;
}
/* ── CTA Button ── */
.features-panel__btn {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 34px;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.features-panel__btn:hover,
.features-panel__btn:focus-visible {
  background: #ffffff;
    color: #fead05;
    border-color: #ffffff;
    box-shadow: 8px 8px 2px 0px rgb(215 145 7);
    text-decoration: none;
}
/* ── Progress dots ── */
.features-progress {
  position: sticky;
  bottom: 32px;
  z-index: 100;
  display: none;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.features-progress__dots {
  display: flex;
  gap: 10px;
  pointer-events: all;
}
.features-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.features-progress__dot.is-active {
  background: #FFD700;
  transform: scale(1.4);
}
/* ── Responsive ── */
@media (min-width: 769px) {
  .features-panel__title {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
  }
  .features-panel__desc {
    font-size: clamp(1.25rem, 1.5vw, 1.65rem);
    line-height: 1.75;
  }
}
@media (max-width: 1024px) {
  .features-panel__content { padding: 0 36px 56px 28px; }
  .features-panel__img { max-width: 400px; }
}
@media (max-width: 768px) {
  .features-panel__card {
    display: grid;
    /* image row fills available space, content row is natural height */
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    padding: 80px 0 48px;
    gap: 0;
  }
  .features-panel__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-self: stretch;
  }
  .features-panel__img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
  .features-panel__content {
    padding: 0 28px;
  }
  .features-panel__btn {
    margin-top: 20px;
    font-size: 0.88rem;
    padding: 13px 28px;
  }
}
@media (max-width: 480px) {
  .features-panel__card { padding: 72px 0 40px; }
  .features-panel__img { max-width: 180px; }
  .features-panel__title { font-size: 1.6rem; }
  .features-panel__desc { font-size: 0.92rem; line-height: 1.6; }
  .features-panel__content { padding: 0 20px; }
  .features-panel__btn { font-size: 0.82rem; padding: 12px 22px; margin-top: 16px; }
}
@media (max-width: 375px) {
  .features-panel__card { padding: 64px 0 36px; }
  .features-panel__img { max-width: 150px; }
  .features-panel__title { font-size: 1.45rem; margin-bottom: 10px; }
  .features-panel__content { padding: 0 16px; }
  .features-panel__btn { font-size: 0.8rem; padding: 11px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .features-panel__card, .features-panel__img { will-change: auto; transition: none !important; }
}
/* ─────────────────────────────────────────────
   15. TRAFFIC ZONES
───────────────────────────────────────────── */
/* ════════════════════════════════════════
   SECTION 13 — TOP FIFA TRAFFIC ZONES
   ════════════════════════════════════════ */
.traffic-zones {
  padding-block: 80px;
  background: #000000;
  overflow: hidden;
}

.traffic-zones .section-heading {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* 40% list  |  1fr globe */
.traffic-zones__layout {
      display: grid;
    grid-template-columns: 42% 1fr;
    gap: 48px;
    align-items: center;
}

/* Prevent grid blow-out */
.traffic-zones__layout > * {
  min-width: 0;
}

.traffic-zones__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Country stat rows ── */
.zone-row {
  display: grid;
  grid-template-columns: 52px 1.4fr 1fr;
  align-items: center;
  gap: 16px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.zone-row:hover {
  background: #181818;
  transform: translateX(4px);
}

.zone-row__flag {
  width: 52px;
  height: 36px;
  display: block;
  border-radius: 2px;
  flex-shrink: 0;
}

.zone-row__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zone-row__stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zone-row__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.traffic-zones__disclaimer {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 16px;
  line-height: 1.5;
}

.traffic-zones__report-btn {
  align-self: flex-start;
  display: inline-block;
  margin-top: 24px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.traffic-zones__report-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

/* ── Globe column ── */
.traffic-zones__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Ambient glow behind globe */
.traffic-zones__globe-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.traffic-zones__globe-wrap::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(27, 95, 145, 0.5) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

/* Globe container — Three.js renders canvas inside here */
.traffic-zones__globe-3d {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
  cursor: grab;
}

.traffic-zones__globe-3d:active {
  cursor: grabbing;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .traffic-zones__layout {
    grid-template-columns: 45% 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .traffic-zones__layout {
    grid-template-columns: 50% 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .traffic-zones {
    padding-block: 48px;
  }
  .traffic-zones__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Globe above list on mobile */
  .traffic-zones__visual {
    order: -1;
  }
  .traffic-zones__globe-wrap {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .traffic-zones {
    padding-block: 40px;
  }
  .traffic-zones__globe-wrap {
    max-width: 360px;
  }
  .zone-row {
    padding: 14px 16px;
    gap: 12px;
  }
  .zone-row__stat-value {
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .traffic-zones__globe-wrap {
    max-width: 310px;
  }
  .zone-row__flag {
    width: 40px;
    height: 28px;
  }
}

/* Partner logo images */
.partner-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--duration-base);
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 1;
}

.partners__placeholder span {
  display: flex;
  align-items: center;
}

/* ─────────────────────────────────────────────
   16. 4 STEPS
───────────────────────────────────────────── */
.steps {
  position: relative;
  padding-block: 80px;
  overflow: hidden;
}

.steps__bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/images/steps-4-bg.webp') center / cover no-repeat;
}

.steps__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.52) 100%
  );
}

.steps__inner {
  position: relative;
  z-index: 1;
}

.steps__header {
  text-align: left;
  margin-bottom: 48px;
}

.steps__eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin-bottom: 6px;
}

.steps__headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  color: var(--color-white);
  line-height: 1.15;
  margin: 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* LEGO frame card — step-card-1..4.webp is full card art incl. frame;
   number + caption overlaid in the frame's reserved top area */
.step-card {
  position: relative;
  aspect-ratio: 222 / 320;
  cursor: pointer;
}

.step-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.35s ease;
  pointer-events: none;
}

.step-card__num {
  position: absolute;
  top: 4%;
  left: 48%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: var(--fw-semibold);
  color: #cfd8e3;
  line-height: normal;
  z-index: 2;
  transition: color 0.3s ease;
}

.step-card__caption {
  position: absolute;
  top: 20%;
  left: 13%;
  right: 13%;
  text-align: center;
  font-size: clamp(0.875rem, 1.6vw, 1.5rem);
  font-weight: var(--fw-medium);
  color: #627ca3;
  line-height: 1.3;
  margin: 0;
  padding: 0 8px;
  z-index: 2;
  transition: color 0.3s ease;
}

/* CSS-only hover fallback (GSAP overrides on init) */
.step-card:hover .step-card__img {
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.75))
          drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.step-card:hover .step-card__num,
.step-card:hover .step-card__caption {
  color: #ffd700;
}

/* ── Dot indicators — hidden on desktop, shown by mobile media query ── */
.steps__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.steps__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Extend tap area to 44×44px without changing visual size */
.steps__dot::after {
  content: '';
  position: absolute;
  inset: -18px;
}

.steps__dot--active {
  background: var(--color-accent);
  transform: scale(1.4);
}

/* ── Section 14 — Tablet (≤900px) — 2-col grid, cards are wider than desktop ── */
@media (max-width: 900px) {
  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Cards are ~411px at 900px and ~345px at 768px — scale fonts with card width */
  .step-card__num {
    font-size: clamp(1.2rem, 3.8vw, 2.5rem);
  }

  .step-card__caption {
    font-size: clamp(1rem, 3vw, 2rem);
    padding: 0 6px;
  }
}

/* ── Section 14 — Mobile carousel (≤576px) ── */
@media (max-width: 576px) {
  .steps {
    padding-block: 44px 36px;
  }

  .steps__header {
    text-align: center;
    margin-bottom: 24px;
  }

  .steps__eyebrow {
    font-size: 0.875rem;
  }

  .steps__headline {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  /* Wrapper is the fixed clipping window — stays in place while grid slides */
  .steps__carousel-wrap {
    width: 100%;
    overflow: hidden;
  }

  /* Grid is the sliding track — overflow must be visible so cards outside
     the wrapper are clipped by the wrapper, not by the grid itself */
  .steps__grid {
    display: flex;
    flex-direction: row;
    overflow: visible;
    gap: 0;
    touch-action: pan-y;
    user-select: none;
    will-change: transform;
  }

  /* One card fills the full visible width */
  .step-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    cursor: default;
  }

  /* Mobile carousel: card is full-width (~312px at 375px, ~296px at 320px) */
  .step-card__num {
    font-size: clamp(1.2rem, 7.5vw, 1.75rem);
  }

  .step-card__caption {
    font-size: clamp(0.85rem, 5vw, 1.3rem);
    padding: 0 10px;
  }

  /* Show dot indicators */
  .steps__dots {
    display: flex;
  }
}

/* ─────────────────────────────────────────────
   17. SOCIAL PROOF
───────────────────────────────────────────── */
.social-proof {
  padding-block: var(--space-32);
  background: var(--color-bg-secondary);
}

.social-proof__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: center;
}

.advertiser-grid,
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.advertiser-card {
  aspect-ratio: 1;
  perspective: 700px;
  border-radius: var(--radius-lg);
  cursor: default;
}

.advertiser-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.advertiser-card--flipped .advertiser-card__inner {
  transform: rotateY(180deg);
}

.advertiser-card__front,
.advertiser-card__back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.advertiser-card__front {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.018) 10px,
    rgba(255,255,255,0.018) 11px
  );
}

.advertiser-card__orb {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  opacity: 0.18;
  line-height: 1;
}

.advertiser-card__back {
  background: linear-gradient(
    135deg,
    rgba(250, 204, 21, 0.10) 0%,
    rgba(0, 0, 136, 0.18) 100%
  );
  border: 1px solid rgba(250, 204, 21, 0.28);
  transform: rotateY(180deg);
  padding: var(--space-4);
  text-align: center;
}

.advertiser-card__category {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1;
}

.advertiser-card__name {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  display: block;
}

/* ─────────────────────────────────────────────
   18. PLAYBOOK / BLOG SLIDER
───────────────────────────────────────────── */
#playbook,
.playbook {
  background-color: #0A0A0A;
  padding: 80px 0;
  position: relative;
}

/* ── Section header: heading left, arrows right ── */
.playbook__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.playbook__heading-wrap {
  flex: 1;
}

.playbook__eyebrow {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.playbook__title {
  margin-bottom: 0;
}

/* ── Navigation arrows ── */
.playbook__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.playbook__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1C1C1C;
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  outline: none;
  flex-shrink: 0;
}

.playbook__nav-btn:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #0A0A0A;
  transform: scale(1.08);
}

.playbook__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ── Marquee outer — clips the scrolling track ── */
.playbook__slider-outer {
  overflow: hidden;
  position: relative;
  margin-right: 0;
}

/* ── Marquee track — animates right-to-left ── */
#playbook-cards,
.playbook-cards__track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: max-content;
  will-change: transform;
  cursor: default;
  animation: playbook-marquee 30s linear infinite;
}

@keyframes playbook-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   BLOG CARD
   ════════════════════════════════════════ */
.blog-card {
  width: 360px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

/* Card image area */
.blog-card__media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}

/* Card text body */
.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #111111;
}

.blog-card__title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: #FFD700;
}

/* Nav arrows and dots hidden */
.playbook__nav,
.playbook__dots {
  display: none !important;
}

/* ════════════════════════════════════════
   PLAYBOOK RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-card { width: 300px; }
  .playbook__header {
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .blog-card { width: 260px; }
  .blog-card__media { height: 180px; }
  #playbook-cards,
  .playbook-cards__track { gap: 18px; }
}

@media (max-width: 480px) {
  .blog-card { width: 220px; }
  .blog-card__media { height: 150px; }
  #playbook-cards,
  .playbook-cards__track { gap: 14px; }
  #playbook, .playbook { padding: 40px 0; }
}

/* Reduced motion: static grid fallback */
@media (prefers-reduced-motion: reduce) {
  .playbook__slider-outer { overflow: visible; }
  #playbook-cards,
  .playbook-cards__track {
    animation: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }
  .blog-card {
    width: 100%;
    transition: none !important;
  }
  .blog-card__img,
  .blog-card__title { transition: none !important; }
}

/* ─────────────────────────────────────────────
   19. REGISTRATION FORM
───────────────────────────────────────────── */
/* Banner animation + floating labels + sticker animations (section-18) */
#register,
.register {
  position: relative;
  min-height: 700px;
  padding: 80px 0 120px;
  background-image: url('../assets/images/register-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: visible;
  overflow-x: clip; /* rotated stickers may bleed past the edge — clip without scroll */
}

#register::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 0;
  pointer-events: none;
}

#register > .container {
  position: relative;
  z-index: 1;
}

/* ── STICKER GROUPS ── */
.register__stickers {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.register__stickers--left {
  left: 0;
  bottom: 0;
  width: 360px;
  height: 460px;
}

.register__stickers--right {
  right: 0;
  bottom: 0;
  width: 380px;
  height: 460px;
}

/* Base sticker */
.reg-sticker {
  position: absolute;
  object-fit: contain;
  opacity: 0;
  user-select: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* ── LEFT stickers ── */
.reg-sticker--l1 {
  width: 124px;
  bottom: 200px;
  left: 170px;
  transform: rotate(-15deg);
  z-index: 3;
}

.reg-sticker--l2 {
  width: 118px;
  bottom: 16px;
  left: 16px;
  transform: rotate(-2deg);
  z-index: 1;
}

.reg-sticker--l3 {
  width: 156px;
  bottom: 12px;
  left: 148px;
  transform: rotate(-6deg);
  z-index: 2;
}

/* ── RIGHT stickers ── */
.reg-sticker--r1 {
  width: 136px;
  bottom: 220px;
  right: 80px;
  transform: rotate(20deg);
  z-index: 3;
}

.reg-sticker--r2 {
  width: 166px;
  bottom: 16px;
  right: 8px;
  transform: rotate(-3deg);
  z-index: 1;
}

.reg-sticker--r3 {
  width: 118px;
  bottom: 16px;
  right: 190px;
  transform: rotate(10deg);
  z-index: 2;
}

/* ── REGISTER CARD ── */
.register-card {
  max-width: 480px;
  margin: 0 auto;
  background-color: #111111;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.65);
  overflow: visible;
  position: relative;
  z-index: 5;
}

/* ── BANNER ── */
.register-card__banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  line-height: 0;
  background-color: #111111;
}

.register-card__banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ── FORM AREA ── */
.register-card__form-area {
  padding: 24px 24px 32px;
}

.register__headline {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.register__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

/* ── TAG BUTTONS ── */
.tag-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 12px 14px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.tag-btn:hover,
.tag-btn--active {
  color: #000000;
  background: #FFD700;
  border-color: #FFD700;
}

/* ── FORM GRID ── */
.register__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ── FLOATING LABEL FIELD ── */
.form-field {
  position: relative;
}

.form-field__input {
  width: 100%;
  height: 56px;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  outline: none;
  display: block;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-field__input::placeholder {
  color: transparent;
}

.form-field__input:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-field__input--textarea {
  height: auto;
  min-height: 128px;
  resize: vertical;
  padding: 16px;
}

/* Label — normal state: centered inside input */
.form-field__label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  cursor: text;
  white-space: nowrap;
  z-index: 1;
  line-height: 1;
  padding: 0;
  background-color: transparent;
  transition:
    top 0.25s ease,
    left 0.25s ease,
    font-size 0.25s ease,
    font-weight 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease,
    padding 0.25s ease;
}

/* Textarea label sits near the top in normal state */
.form-field--textarea .form-field__label {
  top: 18px;
  transform: none;
}

/* Label — floated state: sits ON the input's top border */
.form-field__input:focus + .form-field__label,
.form-field__input:not(:placeholder-shown) + .form-field__label {
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #FFD700;
  background-color: #111111;
  padding: 0 4px;
}

/* ── SUBMIT BUTTON ── */
.form-submit {
  margin-top: 8px;
}

.form-submit__btn,
.btn-register-submit {
  width: 100%;
  height: 48px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.form-submit__btn:hover,
.btn-register-submit:hover {
  background-color: #FFD700;
  color: #000000;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.form-submit__btn:active,
.btn-register-submit:active {
  transform: translateY(0);
}

/* ── FOOTER LINKS ── */
.register__footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.register__footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  padding-block: 11px;
}

.register__footer-links a:hover {
  color: #FFD700;
}

/* ── REGISTER RESPONSIVE ── */
@media (max-width: 1400px) {
  .register__stickers--left { width: 320px; height: 420px; }
  .register__stickers--right { width: 340px; height: 420px; }
  .reg-sticker--l1 { width: 108px; bottom: 176px; left: 148px; }
  .reg-sticker--l2 { width: 104px; }
  .reg-sticker--l3 { width: 138px; left: 130px; }
  .reg-sticker--r1 { width: 120px; bottom: 194px; right: 70px; }
  .reg-sticker--r2 { width: 148px; right: 6px; }
  .reg-sticker--r3 { width: 104px; right: 168px; }
}

@media (max-width: 1200px) {
  .register__stickers--left { width: 280px; height: 370px; }
  .register__stickers--right { width: 300px; height: 370px; }
  .reg-sticker--l1 { width: 92px; bottom: 152px; left: 124px; }
  .reg-sticker--l2 { width: 88px; }
  .reg-sticker--l3 { width: 118px; left: 110px; }
  .reg-sticker--r1 { width: 102px; bottom: 166px; right: 60px; }
  .reg-sticker--r2 { width: 126px; right: 6px; }
  .reg-sticker--r3 { width: 88px; right: 142px; }
}

/* Hide stickers on tablet and mobile (≤1024px) */
@media (max-width: 1024px) {
  .register__stickers--left,
  .register__stickers--right { display: none; }
}

@media (max-width: 768px) {
  #register { padding: 48px 0 80px; }
}

@media (max-width: 480px) {
  .register__stickers { display: none; }
  .register-card__form-area { padding: 16px 16px 24px; }
  .register__form { gap: 12px; }
  #register { padding: 40px 0 56px; min-height: unset; }
}

@media (max-width: 375px) {
  .register-card__form-area { padding: 12px 12px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .form-field__label,
  .form-field__input,
  .form-submit__btn,
  .btn-register-submit,
  .reg-sticker {
    transition: none !important;
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────
   20. FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--color-black);
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-gray-mid);
}

.footer__links {
  display: flex;
  gap: var(--space-8);
}

.footer__links a {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-gray-mid);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__legal {
  font-size: var(--text-xs);
  color: var(--color-gray-mid);
}

/* ─────────────────────────────────────────────
   21. SCROLL ANIMATIONS — initial states
   GSAP targets these via .js-reveal class
───────────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ─────────────────────────────────────────────
   22. RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root {
    --content-pad: 4rem;
  }

  .social-proof__layout {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-panel--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 900px) {
  :root {
    --content-pad: 1.5rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {

  .stats-bar__inner {
    flex-direction: column;
    gap: var(--space-8);
  }

  .stat-item__divider {
    width: 80px;
    height: 1px;
  }

  .hero__coin {
    display: none;
  }

}

/* ─────────────────────────────────────────────
   23. NAV PILL CONTAINER
   Figma: rounded border around logo + nav links
───────────────────────────────────────────── */
.nav-pill-container {
  display: none; /* hidden on mobile; shown below xl */
}

@media (min-width: 1200px) {
  .nav-pill-container {
            display: flex;
        align-items: center;
        gap: 0;
        border: 1px solid transparent;
        border: 1px solid rgba(250, 204, 21, 0.25);
        border-radius: var(--radius-full);
        padding: 10px 20px;
        background: transparent;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        flex-shrink: 0;
}

.nav-pill-container .site-logo {
  display: flex;
    align-items: center;
    text-decoration: none;
    height: 47px;
    margin-right: 100px;
}

.nav-pill-container .site-navlinks {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-direction: row;
}

.nav-pill-container .site-navlinks li {
  list-style: none;
}

.nav-pill-container .site-navlink {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-gray-light);
    text-decoration: none;
    white-space: nowrap;
    padding: 0;
    margin-right: 24px;
    transition: color var(--duration-fast);
    line-height: 1;
    display: block;
}

.nav-pill-container .site-navlinks li:last-child .site-navlink {
  margin-right: 0;
}

.nav-pill-container .site-navlink:hover {
  color: var(--color-accent);
}

.site-logo__img {
      display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
}
} /* end @media (min-width: 1200px) — nav pill desktop styles */

/* ─────────────────────────────────────────────
   24. STATS TICKER
   Figma: scrolling platform metrics in nav
───────────────────────────────────────────── */
.nav-stats-ticker {
         overflow: hidden;
        max-width: 480px;
        height: 60px;
        align-items: center;
        border: 1px solid rgba(250, 204, 21, 0.25);
        border-radius: var(--radius-full);
        background: transparent;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding-inline: 14px;
        flex-shrink: 1;
}

.nav-stats-ticker__track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: tickerScroll 15s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stats-item {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    background: linear-gradient(to right, #facc15, #ff3a3c);
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.stats-item strong {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.stats-sep {
  color: var(--color-accent);
  font-size: 8px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ════════════════════════════════════════════
   SECTION 16 — FAQ
   3D Flip Cards + Marquee Bottom Strip
   ════════════════════════════════════════════ */

/* ── Section ── */
.faq {
  background-color: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ── Heading ── */
.faq__header {
  margin-bottom: 48px;
}

.faq__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

/* ── Grid: 3×3 ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* ════════════════════════════════════════════
   FLIP CARD ARCHITECTURE
   ════════════════════════════════════════════ */

/* ── Outer wrapper — sets perspective ── */
.faq-card {
  perspective: 1000px;
  cursor: pointer;
  outline: none;
  height: 380px;
}

.faq-card:focus-visible {
  outline: 2px solid #FFD700;
  outline-offset: 3px;
  border-radius: 8px;
}

/* ── Flipper — this rotates on hover ── */
.faq-card__flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Flip triggers ── */
.faq-card:hover .faq-card__flipper,
.faq-card:focus .faq-card__flipper,
.faq-card.is-flipped .faq-card__flipper {
  transform: rotateY(180deg);
}

/* ── Both faces share base styles ── */
.faq-card__front,
.faq-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

/* ════════════════════════════════════════════
   FRONT FACE — DEFAULT
   ════════════════════════════════════════════ */
.faq-card__front {
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.faq-card__front-inner {
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Question text */
.faq-card__question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.55;
  margin: 0;
}

/* Footer row: number + arrow */
.faq-card__front-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Number */
.faq-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFD700;
  line-height: 1;
}

/* Arrow icon */
.faq-card__arrow-icon {
  font-size: 1.6rem;
  color: #FFD700;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-card:hover .faq-card__arrow-icon {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════
   BACK FACE — FLIPPED STATE
   ════════════════════════════════════════════ */
.faq-card__back {
  transform: rotateY(180deg);
  background-color: #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Answer text area (top) ── */
.faq-card__back-top {
  flex: 1;
  padding: 24px 28px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Answer text */
.faq-card__answer {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

/* Back UL — same font as answer, square bullet markers */
.faq-card__back ul {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}

.faq-card__back ul li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 5px;
}

.faq-card__back ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  background-color: #1a1a1a;
}

/* ════════════════════════════════════════════
   MARQUEE STRIP — bottom of back face
   ════════════════════════════════════════════ */
.faq-card__marquee-strip {
  background-color: #FFD700;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Track — slides right to left via CSS animation; GSAP overrides */
.faq-card__marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: faqMarquee 10s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

/* Play only when card is hovered/flipped */
.faq-card:hover .faq-card__marquee-track,
.faq-card:focus .faq-card__marquee-track,
.faq-card.is-flipped .faq-card__marquee-track {
  animation-play-state: running;
}

@keyframes faqMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Marquee text item */
.faq-card__marquee-item {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.faq-card__marquee-sep {
  color: #1a1a1a;
  font-size: 2rem;
  opacity: 0.5;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .faq-card { height: 360px; }
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .faq-card { height: 360px; }
}

@media (max-width: 768px) {
  .faq { padding: 48px 0; }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .faq-card { height: 340px; }
  .faq-card__question { font-size: 1rem; }
  .faq-card__answer,
  .faq-card__back ul { font-size: 0.92rem; }
  .faq-card__front-inner { padding: 22px; }
  .faq-card__back-top { padding: 20px 22px 12px; }
}

@media (max-width: 480px) {
  .faq { padding: 40px 0; }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-card { height: 320px; }
  .faq-card__question { font-size: 1.05rem; }
  .faq-card__marquee-item { font-size: 2.8rem; }
  .faq-card__marquee-strip { height: 72px; }
}

@media (max-width: 375px) {
  .faq-card { height: 300px; }
  .faq-grid { gap: 10px; }
}

/* Touch: CSS hover flip disabled — JS handles tap */
@media (hover: none) {
  .faq-card:hover .faq-card__flipper {
    transform: none;
  }
  .faq-card:hover .faq-card__marquee-track {
    animation-play-state: paused;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-card__flipper {
    transition: none;
  }
  .faq-card__marquee-track {
    animation: none !important;
  }
  .faq-card:hover .faq-card__flipper,
  .faq-card:focus .faq-card__flipper,
  .faq-card.is-flipped .faq-card__flipper {
    transform: none;
  }
  .faq-card:hover .faq-card__front {
    opacity: 0;
  }
  .faq-card:hover .faq-card__back {
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }
}

/* ─────────────────────────────────────────────
   26. FOOTER LOGO
───────────────────────────────────────────── */
.footer__logo {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer__links {
  flex-wrap: wrap;
  gap: var(--space-5);
}

/* ─────────────────────────────────────────────
   27. FLOATING REGISTER & CLAIM WIDGET
   Fixed left-bottom: badge image + 3D coin
───────────────────────────────────────────── */
#float-register,
.float-register {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* GSAP sets initial state: translateX(-200px) opacity:0 */
}

/* ── Both boxes ── */
.float-register__box {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  will-change: transform;
}

/* ── BOX 1: Badge image ── */
.float-register__box--image {
          width: 144px;
        height: 44px;
        background-color: transparent;
        border: 0px solid rgba(232, 64, 64, 0.7);
        border-radius: 8px;
        text-decoration: none;
    }

.float-register__box--image:hover {
  transform: scale(1.06) translateY(-2px);
  filter: brightness(1.12);
}

.float-register__box--image:active {
  transform: scale(0.97);
}

.float-register__box--image:focus-visible {
  outline: 2px solid #FFD700;
  outline-offset: 3px;
}

/* Pulse ring */
.float-register__box--image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  /* border: 2px solid rgba(255, 215, 0, 0.55); */
  animation: floatPulse 2s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes floatPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0;    transform: scale(1.1); }
}

.float-register__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.float-register__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.float-register__box--image:hover .float-register__img {
  transform: scale(1.08);
}

.float-register__hover-glow {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

.float-register__box--image:hover .float-register__hover-glow {
  opacity: 1;
}

/* ── BOX 2: Coin (Three.js appends canvas here) ── */
.float-register__box--coin {
  width: 144px;
  height: 144px;
  background-color: transparent;
  /* border: 1px solid rgba(255, 215, 0, 0.18); */
  border-radius: 12px;
  cursor: default;
}

.float-register__box--coin:hover {
  transform: translateY(-3px);
}

/* Three.js canvas — let renderer control inline width/height; no CSS override */
#float-coin-container canvas {
  display: block;
  border-radius: 12px;
}

/* Hidden state (GSAP also drives this) */
#float-register.is-hidden {
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .float-register__box--image { width: 130px; height: 44px; }
  .float-register__box--coin  { width: 130px; height: 130px; }
}

@media (max-width: 768px) {
  .float-register__box--image { width: 118px; height: 44px; }
  .float-register__box--coin  { width: 118px; height: 118px; }
  #float-register { left: 12px; bottom: 20px; }
}

@media (max-width: 480px) {
  .float-register__box--image { width: 106px; height: 44px; border-radius: 6px; }
  .float-register__box--coin  { width: 106px; height: 106px; border-radius: 10px; }
  #float-register { left: 8px; bottom: 16px; gap: 6px; }
  .float-register__box--image::before { animation: none; }
}

@media (max-width: 375px) {
  .float-register__box--image { width: 96px; height: 44px; }
  .float-register__box--coin  { width: 96px;  height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .float-register__box,
  .float-register__img,
  .float-register__hover-glow { transition: none !important; }
  .float-register__box--image::before { animation: none; }
}

/* ─────────────────────────────────────────────
   29. FIFA OFFER SECTION
───────────────────────────────────────────── */
.offer-section {
  position: relative;
  padding-block: var(--space-32);
  background: var(--color-bg-primary);
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(250, 204, 21, 0.07) 0%, transparent 65%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(100% / 8 - 1px),
      rgba(255, 255, 255, 0.015) calc(100% / 8 - 1px),
      rgba(255, 255, 255, 0.015) calc(100% / 8)
    );
  pointer-events: none;
}

.offer-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}

.offer-section__heading-group {
  text-align: left;
}

.offer-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, var(--text-display-2));
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: 0.01em;
}

.offer-section__sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ── Offer Countdown Calendar Widget ── */
#offerCountdown {
  position: relative;
  width: 130px;
  height: 130px;
  background-image: url('../assets/images/calendar-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  cursor: default;
}

#offerCountdown .countdown-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 16px 8px 8px;
  position: relative;
  z-index: 1;
}

#offerCountdown .counter-number {
  font-family: 'Jersey 10', var(--font-display), monospace;
  font-size: 3.8rem;
  font-weight: 400;
  color: #7B6B1A;
  line-height: 0.9;
  text-shadow: none;
  display: block;
}

#offerCountdown .days-label {
  font-family: var(--font-heading), sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7B6B1A;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

@media (max-width: 700px) {
  #offerCountdown {
    width: 100px;
    height: 100px;
  }
  #offerCountdown .counter-number {
    font-size: 2.8rem;
  }
  #offerCountdown .days-label {
    font-size: 0.65rem;
  }
}

.offer-section__footer-text {
          font-size: 1.85rem;
        color: var(--text-gray);
        margin-top: 2rem;
        line-height: normal;
        position: relative;
        z-index: 1;
        font-weight: 500;
}

.offer-section__cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  /* max-width: 1200px; */
  margin-inline: auto;
  position: relative;
  z-index: 1;
  align-items: center;
}

.offer-section__coin {
  width: clamp(80px, 10vw, 140px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(250, 204, 21, 0.35));
  animation: coin-float 3s ease-in-out infinite;
}

@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Flip Card Container ──────────────────────────────── */
.offer-card {
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

/* ── Flip Card Inner ──────────────────────────────────── */
.flip-card-inner {
  position: relative;
  width: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.offer-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* ── Front & Back share: hidden when facing away ──────── */
.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Front Face: stadium image ────────────────────────── */
.flip-card-front {
  position: relative;
  width: 100%;
}

.offer-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
  transition: filter 0.3s ease;
}

.offer-card:hover .offer-card__img {
  filter: drop-shadow(0 12px 40px rgba(250, 204, 21, 0.25));
}

/* ── Back Face: yellow coupon ticket ──────────────────── */
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
  background: #FFD700;
  border-radius: 14px;
  border: 2px dashed rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ticket shape: semicircular notch cut from left and right edges */
  -webkit-mask-image:
    radial-gradient(circle 32px at 0% 50%, transparent 56px, black 57px),
    radial-gradient(circle 32px at 100% 50%, transparent 56px, black 57px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 32px at 0% 50%, transparent 56px, black 57px),
    radial-gradient(circle 32px at 100% 50%, transparent 56px, black 57px);
  mask-composite: intersect;
}

/* ── Coupon Code Content ──────────────────────────────── */
.coupon-back {
  text-align: center;
  padding: 24px 40px;
  user-select: none;
}

.coupon-back__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

.coupon-back__code {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.1;
  margin: 16px 0 18px;
  letter-spacing: 0.04em;
}

.coupon-back__cta {
  font-size: 0.82rem;
  font-weight: 500;
  color: #555555;
  letter-spacing: 0.05em;
  margin: 0;
  transition: color 0.2s ease;
}

.flip-card-back.copied .coupon-back__cta {
  color: #1a7a1a;
  font-weight: 700;
}

/* ── Tablet: cards get narrow in 3-col grid — shrink notches + code ── */
@media (min-width: 701px) and (max-width: 991px) {
  .flip-card-back {
    -webkit-mask-image:
      radial-gradient(circle 20px at 0% 50%, transparent 44px, black 45px),
      radial-gradient(circle 20px at 100% 50%, transparent 44px, black 45px);
    -webkit-mask-composite: source-in;
    mask-image:
      radial-gradient(circle 20px at 0% 50%, transparent 44px, black 45px),
      radial-gradient(circle 20px at 100% 50%, transparent 44px, black 45px);
    mask-composite: intersect;
  }
  .coupon-back {
    padding: 16px 24px;
  }
  .coupon-back__code {
    font-size: 1.7rem;
    margin: 10px 0 12px;
  }
}

/* ── Mobile Responsive ────────────────────────────────── */
@media (max-width: 700px) {
  .offer-section__header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .offer-section__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offer-section__coin {
    display: none;
  }
  .flip-card-back {
    border-radius: 10px;
    -webkit-mask-image:
      radial-gradient(circle 20px at 0% 50%, transparent 48px, black 49px),
      radial-gradient(circle 20px at 100% 50%, transparent 48px, black 49px);
    -webkit-mask-composite: source-in;
    mask-image:
      radial-gradient(circle 20px at 0% 50%, transparent 48px, black 49px),
      radial-gradient(circle 20px at 100% 50%, transparent 48px, black 49px);
    mask-composite: intersect;
  }
  .coupon-back__code {
    font-size: 2rem;
    margin: 12px 0 14px;
  }
}

/* ─────────────────────────────────────────────
   30. TITAN — "Own The FIFA Traffic" (section-2)
───────────────────────────────────────────── */
.titan {
  position: relative;
  padding-block: clamp(var(--space-20), 9vw, var(--space-32));
  background-color: var(--color-bg-primary);
  background-image: url('../assets/images/Frame 143.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.titan__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--content-pad);
  text-align: center;
}

.titan__tag {
  margin-bottom: var(--space-6);
  text-transform: none;
  color: #FFD700;
  border-color: #FFD700;
  letter-spacing: 0.01em;
}

.titan__tag .tag-icon {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #b8860b 35%, #FFD700 40%);
  border: 2px solid #FFD700;
}

.titan__heading {
          font-family: var(--font-display);
        font-size: clamp(2.6rem, 6vw, 5.5rem);
        line-height: normal;
        color: var(--color-white);
        letter-spacing: 0.01em;
        margin-bottom: var(--space-6);
}

.titan__sub {
          font-family: var(--font-heading);
        font-size: clamp(1rem, 1.5vw, 1.5rem);
        font-weight: 400;
        color: rgb(255 255 255);
        line-height: 1.5;
        max-width: 600px;
        margin-inline: auto;
}

.titan__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--duration-base), border-color var(--duration-base);
}

.titan__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
}

.titan__arrow--prev { left: clamp(8px, 3vw, 40px); }
.titan__arrow--next { right: clamp(8px, 3vw, 40px); }

/* ─────────────────────────────────────────────
   30b. PURPLE CTA BAND (section-6)
───────────────────────────────────────────── */
.cta-band {
  background-image: url('../assets/images/section-6.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: var(--space-12);
  overflow: hidden;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: calc(var(--content-max) + var(--content-pad) * 2);
  padding-inline: var(--content-pad);
  margin-inline: auto;
}

.cta-band__badge {
  height: clamp(90px, 12vw, 230px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-band__actions {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 1rem 2.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-band__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-band__btn:active {
  transform: translateY(0);
}

.cta-band__btn-icon {
  font-size: 1.05em;
}

/* CTA band — stack on small screens so buttons stay visible */
@media (max-width: 768px) {
  .cta-band__inner {
    flex-direction: column;
    justify-content: center;
  }

  .cta-band__actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .cta-band__btn {
    width: min(100%, 320px);
    justify-content: center;
    font-size: var(--text-md);
    padding: 0.9rem 1.5rem;
  }

  .cta-band__badge {
    height: clamp(70px, 18vw, 110px);
  }
}

/* ─────────────────────────────────────────────
   30c. STICKER SCATTER (section-8)
───────────────────────────────────────────── */
#sticker-scatter {
  position: relative;
  background: var(--color-bg-primary);
  min-height: 520px;
  overflow: hidden;
}

/* Sticker layer — absolute overlay, no layout impact */
.sticker-scatter__container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Base sticker styles */
.sticker-item {
  position: absolute;
  display: block;
  object-fit: contain;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.35));
}

/* ── Individual positions (matched from section-8.jpg) ── */
/* Top cluster */
.sticker-item[data-index="1"]  { left: 12%;   top: 5%;  width: 130px; height: auto; transform: rotate(-5deg);  z-index: 3; }
.sticker-item[data-index="2"]  { left: 1.5%;  top: 28%; width: 110px; height: auto; transform: rotate(-15deg); z-index: 4; }
.sticker-item[data-index="3"]  { left: 7%;    top: 42%; width: 145px; height: auto; transform: rotate(-3deg);  z-index: 3; }
.sticker-item[data-index="4"]  { left: 21%;   top: 26%; width: 120px; height: auto; transform: rotate(-8deg);  z-index: 2; }
.sticker-item[data-index="5"]  { left: 34%;   top: 40%; width: 110px; height: auto; transform: rotate(0deg);   z-index: 2; }
.sticker-item[data-index="6"]  { left: 44%;   top: 40%; width: 108px; height: auto; transform: rotate(8deg);   z-index: 3; }
/* Bottom row */
.sticker-item[data-index="7"]  { left: 1.5%;  top: 63%; width: 110px; height: auto; transform: rotate(-5deg);  z-index: 3; }
.sticker-item[data-index="8"]  { left: 12%;   top: 64%; width: 100px; height: auto; transform: rotate(0deg);   z-index: 2; }
.sticker-item[data-index="9"]  { left: 24%;   top: 63%; width: 115px; height: auto; transform: rotate(0deg);   z-index: 2; }
.sticker-item[data-index="10"] { left: 37%;   top: 64%; width: 95px;  height: auto; transform: rotate(-5deg);  z-index: 2; }
.sticker-item[data-index="11"] { left: 48%;   top: 63%; width: 125px; height: auto; transform: rotate(5deg);   z-index: 3; }
.sticker-item[data-index="12"] { left: 61%;   top: 64%; width: 100px; height: auto; transform: rotate(0deg);   z-index: 2; }

/* Reduced-motion: show stickers immediately, skip animation */
@media (prefers-reduced-motion: reduce) {
  .sticker-item { opacity: 1 !important; animation: none !important; transition: none !important; }
}

/* Content layer — sits above stickers */
#sticker-scatter .container-xl {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.sticker-scatter__copy {
  margin-left: 44%;
  width: 56%;
  text-align: right;
  padding-block: 60px;
}

.sticker-scatter__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.85vw, 1.65rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.sticker-scatter__text em {
  font-style: normal;
  color: var(--color-accent);
}

.sticker-scatter__btn {
  display: inline-block;
  padding: 1.25rem 3.2rem;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: scatter-btn-glow 2.8s ease-in-out infinite;
}

/* Shimmer sweep on the button */
.sticker-scatter__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: scatter-btn-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scatter-btn-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.45); }
  50%       { box-shadow: 0 0 22px 6px rgba(255, 215, 0, 0.28); }
}

@keyframes scatter-btn-shimmer {
  0%   { left: -75%; }
  60%, 100% { left: 130%; }
}

.sticker-scatter__btn:hover,
.sticker-scatter__btn:focus-visible {
  transform: translateY(-4px) scale(1.06);
  background: #FFC107;
  box-shadow: 0 10px 36px rgba(255, 215, 0, 0.65);
  animation: none;
  outline: none;
}

.sticker-scatter__btn:hover::after {
  animation: none;
}

.sticker-scatter__btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sticker-scatter__copy {
    margin-left: 42%;
    width: 58%;
  }
}

/* ── Tablet (≤768px) — keep side-by-side, tighter proportions ── */
@media (max-width: 768px) {
  #sticker-scatter { min-height: 400px; }

  .sticker-item { transform-origin: center center; }
  .sticker-item[data-index="1"]  { transform: rotate(-5deg)  scale(0.65); }
  .sticker-item[data-index="2"]  { transform: rotate(-15deg) scale(0.65); }
  .sticker-item[data-index="3"]  { transform: rotate(-3deg)  scale(0.65); }
  .sticker-item[data-index="4"]  { transform: rotate(-8deg)  scale(0.65); }
  .sticker-item[data-index="5"]  { transform: rotate(0deg)   scale(0.65); }
  .sticker-item[data-index="6"]  { transform: rotate(8deg)   scale(0.65); }
  .sticker-item[data-index="7"]  { transform: rotate(-5deg)  scale(0.65); }
  .sticker-item[data-index="8"]  { transform: rotate(0deg)   scale(0.65); }
  .sticker-item[data-index="9"]  { transform: rotate(0deg)   scale(0.65); }
  .sticker-item[data-index="10"] { transform: rotate(-5deg)  scale(0.65); }
  .sticker-item[data-index="11"] { transform: rotate(5deg)   scale(0.65); }
  .sticker-item[data-index="12"] { transform: rotate(0deg)   scale(0.65); }

  .sticker-scatter__copy {
    margin-left: 34%;
    width: 66%;
    padding-block: 36px;
  }

  .sticker-scatter__text {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  }
}

/* ── Mobile (≤576px) — stacked: stickers top band, text full-width below ── */
@media (max-width: 576px) {
  #sticker-scatter {
    min-height: auto;
  }

  /* Sticker layer becomes a flow block — stickers spread across full width */
  .sticker-scatter__container {
    position: relative;
    inset: auto;
    height: 155px;
    width: 100%;
    overflow: hidden;
  }

  /* Uniform size, spread across full device width in two rows */
  .sticker-item {
    width: 72px !important;
    height: auto !important;
    transform-origin: center center;
  }

  .sticker-item[data-index="1"]  { left: 1%;   top: 6%;  transform: rotate(-5deg);  }
  .sticker-item[data-index="2"]  { left: 16%;  top: 42%; transform: rotate(-12deg); }
  .sticker-item[data-index="3"]  { left: 31%;  top: 6%;  transform: rotate(-3deg);  }
  .sticker-item[data-index="4"]  { left: 47%;  top: 42%; transform: rotate(-8deg);  }
  .sticker-item[data-index="5"]  { left: 62%;  top: 6%;  transform: rotate(0deg);   }
  .sticker-item[data-index="6"]  { left: 78%;  top: 42%; transform: rotate(8deg);   }
  /* hide bottom-row stickers — top 6 fill the band */
  .sticker-item[data-index="7"],
  .sticker-item[data-index="8"],
  .sticker-item[data-index="9"],
  .sticker-item[data-index="10"],
  .sticker-item[data-index="11"],
  .sticker-item[data-index="12"] { display: none; }

  /* Content flows below the sticker band */
  #sticker-scatter .container-xl {
    min-height: auto;
    display: block;
    padding-top: 0;
  }

  .sticker-scatter__copy {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding-block: 24px 36px;
  }

  .sticker-scatter__text {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: var(--space-6);
  }

  .sticker-scatter__btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* ════════════════════════════════════════════
   SECTION 15 — WORLD CUP BUZZ GREEN BAND
   ════════════════════════════════════════════ */

/* ── Section wrapper ── */
.buzz-band {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-image: url('../assets/images/buzz-band-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.buzz-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 0;
  pointer-events: none;
}

/* ── Container ── */
.buzz-band__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ── Text Column (left ~55%) ── */
.buzz-band__text-col {
  flex: 0 0 54%;
  max-width: 54%;
}

/* ── Image Column (right ~42%) ── */
.buzz-band__image-col {
  flex: 0 0 42%;
  max-width: 42%;
  text-align: right;
}

/* ── Heading ── */
.buzz-band__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 20%;
}

/* ── CTA wrap ── */
.buzz-band__cta {
  display: inline-block;
}

/* ── CTA button ── */
.buzz-band__btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buzz-band__btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ── Image wrap (float animation target) ── */
.buzz-band__image-wrap {
  display: inline-block;
  margin-bottom: 12px;
  will-change: transform;
}

/* ── Sticker image ── */
.buzz-band__img {
  height: clamp(180px, 20vw, 260px);
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
}

/* ── Description text ── */
.buzz-band__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .buzz-band__text-col {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .buzz-band__image-col {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .buzz-band__container {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .buzz-band {
    padding: 48px 0;
  }
  .buzz-band__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .buzz-band__text-col,
  .buzz-band__image-col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .buzz-band__desc {
    text-align: center;
  }
  .buzz-band__img {
    margin: 0 auto;
  }
  .buzz-band__cta {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .buzz-band {
    padding: 40px 0;
  }
  .buzz-band__container {
    gap: 24px;
    padding: 0 16px;
  }
  .buzz-band__heading {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .buzz-band__desc {
    font-size: 0.95rem;
  }
  .buzz-band__img {
    height: clamp(140px, 38vw, 200px);
  }
}

@media (max-width: 375px) {
  .buzz-band__heading {
    font-size: 1.35rem;
  }
  .buzz-band__container {
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buzz-band__image-wrap,
  .buzz-band__btn {
    transition: none !important;
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────
   28. FOCUS & ACCESSIBILITY
───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ════════════════════════════════════════
   AUTO POPUP MODAL — Section 20
   Does NOT affect any section layout
   ════════════════════════════════════════ */

/* ── Backdrop ── */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;

  /* Hidden initially */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ── Modal Box ── */
.popup-modal {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 790px;
  max-width: min(92vw, 960px);
  max-height: 90vh;
  overflow: hidden;

  background-color: #111111;
  border-radius: 8px;
  border: 2px solid #FFD700;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(255, 215, 0, 0.18);
}

/* ── Close Button ── */
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  outline: none;
}

.popup-close:hover {
  background: #FFD700;
  color: #000000;
  transform: scale(1.1) rotate(90deg);
}

.popup-close:focus-visible {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* ── LEFT SIDE — Image ── */
.popup-modal__left {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
  overflow: hidden;
}

.popup-modal__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.popup-modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── RIGHT SIDE — Form ── */
.popup-modal__right {
  flex: 1 1 54%;
  max-width: 54%;
  padding: 40px 40px 32px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.5) transparent;
}

.popup-modal__right::-webkit-scrollbar {
  width: 4px;
}
.popup-modal__right::-webkit-scrollbar-track {
  background: transparent;
}
.popup-modal__right::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 2px;
}

/* Floating-label fields reuse section-18 classes
   (.form-field, .form-field__input, .form-field__label).
   Floated label bg #111111 already matches the modal bg. */

/* Slightly tighter textarea inside popup */
#popup-modal .form-field__input--textarea {
  min-height: 104px;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .popup-modal {
    width: 90vw;
    max-width: 720px;
  }
  .popup-modal__right {
    padding: 32px 32px 28px;
  }
}

/* Tablet portrait: stack — image top + form bottom */
@media (max-width: 768px) {
  .popup-modal {
    flex-direction: column;
    width: 92vw;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
  }
  .popup-modal__left {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .popup-modal__img-wrap {
    min-height: 200px;
    max-height: 240px;
  }
  .popup-modal__img {
    position: static;
    height: 240px;
    object-position: center 22%;
  }
  .popup-modal__right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 24px 24px 24px;
    overflow-y: visible;
  }
}

@media (max-width: 480px) {
  .popup-modal {
    width: 96vw;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 8px;
  }
  .popup-modal__img-wrap {
    min-height: 176px;
    max-height: 200px;
  }
  .popup-modal__img {
    height: 200px;
  }
  .popup-modal__right {
    padding: 16px 16px 20px;
  }
  .popup-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  #popup-modal .form-field__input {
    height: 48px;
  }
}

@media (max-width: 375px) {
  .popup-modal {
    width: 100%;
    max-height: 95vh;
  }
  .popup-modal__right {
    padding: 16px 12px 16px;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .popup-backdrop,
  .popup-modal,
  .popup-close {
    transition: none !important;
    animation: none !important;
  }
}
