/* =====================================================================
   SOB GAME CHANGERS — MASTER STYLESHEET
   ---------------------------------------------------------------------
   HOW TO EDIT THE WHOLE SITE FAST:
   - Change BRAND COLORS in the :root block right below.
   - Change FONTS in the --font variables (and the <link> in each .html head).
   - Everything else inherits from these. No need to hunt through pages.
   ===================================================================== */

/* ----------  1. BRAND TOKENS (EDIT THESE)  ---------- */
:root {
  /* Colors pulled from your poster */
  --ink:      #07060d;   /* near-black base background          */
  --ink-2:    #110f1e;   /* lifted panel / card surface         */
  --ink-3:    #1a1830;   /* hover surface / borders             */
  --pink:     #ff1e8c;   /* hot magenta (logo + primary CTA)    */
  --pink-2:   #ff5cae;   /* lighter pink for hovers             */
  --cyan:     #1fc6e3;   /* bright teal/cyan accent             */
  --cyan-2:   #5fe0f5;   /* lighter cyan for hovers             */
  --violet:   #5a1e64;   /* sunset purple for gradients         */
  --white:    #f6f4fb;   /* headings / high-contrast text       */
  --ash:      #b3afc4;   /* body copy / muted text              */
  --ash-dim:  #6f6b85;   /* captions / very muted               */

  /* Fonts (also update the Google Fonts <link> in each page head) */
  --font-display: 'Archivo', system-ui, sans-serif; /* big athletic headlines */
  --font-body:    'Figtree', system-ui, sans-serif; /* everything readable    */

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --gap: clamp(16px, 3vw, 28px);

  /* Reusable glows */
  --glow-pink: 0 0 24px rgba(255, 30, 140, .45);
  --glow-cyan: 0 0 24px rgba(31, 198, 227, .40);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ash);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* Subtle animated grain/sunset wash behind the whole page */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(255,30,140,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(31,198,227,.12), transparent 55%),
    var(--ink);
}

/* ----------  3. TYPOGRAPHY  ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -.01em;
  font-weight: 800;
}

/* The signature "athletic slanted" headline look */
.display {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ash); max-width: 60ch; }

/* Small uppercase label above headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--cyan);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--cyan); box-shadow: var(--glow-cyan);
}

/* The neon diagonal "slash" accent — the page signature */
.slash {
  position: relative; display: inline-block;
}
.slash::after {
  content: ""; position: absolute; left: 0; bottom: -.18em;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform: skewX(-22deg);
  box-shadow: var(--glow-pink);
}

.text-pink { color: var(--pink); }
.text-cyan { color: var(--cyan); }

/* ----------  4. LAYOUT HELPERS  ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }

/* ----------  5. BUTTONS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: .04em; font-size: .95rem;
  padding: 15px 30px; border: 0; border-radius: 100px;
  background: var(--pink); color: #fff;
  box-shadow: var(--glow-pink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); background: var(--pink-2); box-shadow: 0 0 34px rgba(255,30,140,.6); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn--cyan { background: var(--cyan); color: #04141a; box-shadow: var(--glow-cyan); }
.btn--cyan:hover { background: var(--cyan-2); box-shadow: 0 0 34px rgba(31,198,227,.6); }

.btn--ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.22); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(31,198,227,.06); }

.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------  6. NAVBAR (injected by components.js)  ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,6,13,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__top {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 14px 20px 12px; position: relative;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img.brand-mark { height: 54px; width: auto; transition: height .3s ease, transform .3s ease; }
.nav__logo:hover img.brand-mark { transform: scale(1.06) rotate(-2deg); }
.nav__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  padding: 0 12px 12px;
}
.nav__links a {
  position: relative;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
  color: var(--ash); padding: 9px 14px; border-radius: 100px;
  transition: color .2s ease;
}
/* animated underline that sweeps in from center */
.nav__links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan)); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform .28s ease;
  box-shadow: var(--glow-pink);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--pink); }
.nav__links a.is-active::after { transform: scaleX(1); }
/* Hamburger (mobile only) */
.nav__toggle {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  display: none; background: transparent; border: 0; color: var(--white);
  width: 44px; height: 44px;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--white); transition: .25s;
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -7px; } .nav__toggle span::after { top: 7px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0;
  }
  .nav.open .nav__links { max-height: 80vh; padding: 8px 0 16px; }
  .nav__links a { padding: 14px 24px; border-radius: 0; text-align: center; }
  .nav__links a.is-active::after { display: none; }
}

/* ----------  7. HERO  ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(70px, 12vw, 150px) 0 clamp(60px, 9vw, 110px);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(255,30,140,.30), transparent 60%),
    radial-gradient(800px 600px at 12% 30%, rgba(90,30,100,.40), transparent 60%),
    radial-gradient(700px 400px at 50% 100%, rgba(31,198,227,.16), transparent 60%);
  animation: heroPulse 9s ease-in-out infinite alternate;
}
/* CSS skyline silhouette at the bottom of the hero */
.hero__skyline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px; z-index: -1;
  background:
    repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 30px) bottom/auto 60px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 22px, #000 22px 26px) bottom/auto 90px no-repeat;
  opacity: .55; -webkit-mask-image: linear-gradient(to top, #000, transparent);
          mask-image: linear-gradient(to top, #000, transparent);
}
@keyframes heroPulse { from { opacity: .8; } to { opacity: 1; } }

.hero__inner { max-width: 760px; }
.hero .h1 { margin: 14px 0 18px; }

/* Tagline lockup like the poster */
.tagline { font-family: var(--font-display); font-style: italic; text-transform: uppercase; }
.tagline .a { color: var(--cyan); } .tagline .b { color: var(--pink); }

/* ----------  8. STAT LINE (scoreboard signature)  ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--ink-2); padding: 28px 18px; text-align: center; }
.stat__num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); line-height: 1;
}
.stat:nth-child(odd) .stat__num  { color: var(--pink); }
.stat:nth-child(even) .stat__num { color: var(--cyan); }
.stat__label { margin-top: 8px; font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: var(--ash-dim); }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ----------  9. CARDS  ---------- */
.card {
  position: relative; background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 26px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(31,198,227,.5); box-shadow: var(--glow-cyan); }
.card__tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
  color: var(--pink); border: 1px solid rgba(255,30,140,.4);
}
.card h3 { margin-bottom: 8px; }

/* "Feature" cards (what SOB is / about pillars) */
.pillar { padding: 30px; }
.pillar__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: #fff;
  margin-bottom: 18px; box-shadow: var(--glow-pink);
}

/* ----------  10. TOURNAMENT CARDS  ---------- */
.tcard { display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center; }
.tcard__date {
  text-align: center; border-radius: var(--radius-sm); padding: 12px 6px;
  background: linear-gradient(160deg, rgba(255,30,140,.18), rgba(31,198,227,.12));
  border: 1px solid rgba(255,255,255,.1);
}
.tcard__date .m { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--cyan); font-size: .8rem; letter-spacing: .1em; }
.tcard__date .d { font-family: var(--font-display); font-weight: 900; font-size: 1.7rem; color: var(--white); line-height: 1; }
.tcard__meta { color: var(--ash); font-size: .92rem; }
.tcard__meta strong { color: var(--white); }
@media (max-width: 760px) {
  .tcard { grid-template-columns: 70px 1fr; }
  .tcard .btn { grid-column: 1 / -1; }
}

/* ----------  11. COUNTDOWN  ---------- */
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-unit {
  min-width: 84px; text-align: center; padding: 18px 12px;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
}
.cd-unit .n { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 2.4rem; color: var(--pink); line-height: 1; }
.cd-unit .l { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ash-dim); margin-top: 6px; }

/* ----------  12. COACH CARDS  ---------- */
.coach__photo {
  aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--ink-3), var(--violet));
  display: grid; place-items: center; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.coach__photo svg { width: 46%; opacity: .85; }
.coach__photo img { width: 100%; height: 100%; object-fit: cover; }
.coach__role { color: var(--cyan); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.coach__name { margin: 4px 0 2px; }
.coach ul li { font-size: .9rem; color: var(--ash); padding: 3px 0; }

/* ----------  13. PRODUCT (APPAREL) CARDS  ---------- */
.product__img {
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(31,198,227,.25), transparent 60%),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.product__img svg { width: 42%; opacity: .9; }
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__badge { position: absolute; top: 12px; left: 12px; }
.product__price { font-family: var(--font-display); font-weight: 900; font-style: italic; color: var(--cyan); font-size: 1.4rem; }
.product__name { color: var(--white); font-weight: 600; }

/* ----------  14. GALLERY  ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.chip {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  font-size: .8rem; padding: 9px 18px; border-radius: 100px;
  background: var(--ink-2); color: var(--ash); border: 1px solid rgba(255,255,255,.1);
  transition: .2s;
}
.chip:hover { color: var(--white); border-color: var(--cyan); }
.chip.is-active { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: var(--glow-pink); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item {
  aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(150deg, var(--ink-3), var(--violet));
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--glow-cyan); }
.gallery__item svg { width: 38%; opacity: .55; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item.hide { display: none; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ----------  15. FAQ ACCORDION  ---------- */
.faq { border-top: 1px solid rgba(255,255,255,.1); }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq__q .ic { color: var(--cyan); font-size: 1.6rem; transition: transform .25s; flex: none; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--ash); }
.faq__a p { padding-bottom: 22px; }

/* ----------  16. FORMS  ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ash); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--white); font-family: inherit; font-size: 1rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--ash-dim); }
.form-success { display: none; padding: 16px; border-radius: var(--radius-sm); background: rgba(31,198,227,.1); border: 1px solid var(--cyan); color: var(--cyan); }

/* ----------  17. CTA BANNER  ---------- */
.cta-banner {
  text-align: center; border-radius: var(--radius);
  padding: clamp(40px, 7vw, 80px) 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,30,140,.3), transparent 70%),
    linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(255,255,255,.1);
}

/* ----------  18. SPLIT / INFO ROWS  ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.media-block {
  aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--violet), var(--ink-2));
  border: 1px solid rgba(255,255,255,.08); display: grid; place-items: center;
}
.media-block svg { width: 40%; opacity: .8; }

.contact-list li { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-list .ic { color: var(--cyan); width: 22px; }

/* Social row */
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); color: var(--white);
  transition: .2s;
}
.socials a:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }

/* ----------  19. FOOTER (injected by components.js)  ---------- */
.footer { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.footer h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; }
.footer a { color: var(--ash); font-size: .92rem; }
.footer a:hover { color: var(--cyan); }
.footer__links li { padding: 5px 0; }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--ash-dim); font-size: .85rem; }

/* ----------  20. SCROLL REVEAL ANIMATION  ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   21. ANIMATION UPGRADE PACK  (flowing / moving / interactive)
   ===================================================================== */

/* --- Logo: real image + neon glow pulse --- */
.brand-mark { display: block; width: auto; }
.nav__logo .brand-mark {
  filter: drop-shadow(0 0 6px rgba(255,30,140,.5));
  animation: logoGlow 3.6s ease-in-out infinite;
}
.footer .brand-mark { height: 48px; filter: drop-shadow(0 0 6px rgba(31,198,227,.4)); }
@keyframes logoGlow {
  0%,100% { filter: drop-shadow(0 0 5px rgba(255,30,140,.45)); }
  50%     { filter: drop-shadow(0 0 15px rgba(31,198,227,.6)); }
}

/* --- Navbar shrinks + solidifies once you scroll --- */
.nav__top { transition: padding .3s ease; }
.nav.scrolled { background: rgba(7,6,13,.94); box-shadow: 0 10px 34px rgba(0,0,0,.55); }
.nav.scrolled .nav__top { padding-top: 8px; padding-bottom: 6px; }
.nav.scrolled .nav__logo .brand-mark { height: 42px; }

/* --- Neon scroll-progress bar (top of page, injected by JS) --- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 12px rgba(31,198,227,.7);
}

/* --- Flowing marquee band (injected above footer) --- */
.marquee {
  overflow: hidden; padding: 16px 0; margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(255,30,140,.08), rgba(31,198,227,.08));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  text-transform: uppercase; font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--white); white-space: nowrap; padding-right: .5rem; opacity: .9;
  text-shadow: 0 0 18px rgba(255,30,140,.35);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Hero: moving synthwave grid --- */
.hero::before {
  content: ""; position: absolute; left: 50%; bottom: 0; z-index: -1;
  width: 220%; height: 62%; transform: translateX(-50%) perspective(420px) rotateX(62deg);
  transform-origin: bottom center;
  background-image:
    linear-gradient(to right, rgba(31,198,227,.32) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,30,140,.32) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: gridMove 5.5s linear infinite;
  -webkit-mask-image: linear-gradient(to top, #000 6%, transparent 78%);
          mask-image: linear-gradient(to top, #000 6%, transparent 78%);
  opacity: .55;
}
@keyframes gridMove { from { background-position: 0 0; } to { background-position: 0 46px; } }

/* --- Hero: drifting neon glow orbs --- */
.hero__bg::before, .hero__bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px);
}
.hero__bg::before {
  width: 360px; height: 360px; background: rgba(255,30,140,.45);
  top: -60px; left: -50px; animation: drift1 15s ease-in-out infinite alternate;
}
.hero__bg::after {
  width: 320px; height: 320px; background: rgba(31,198,227,.4);
  right: -40px; top: 30px; animation: drift2 18s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(60px,40px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-50px,30px); } }

/* --- Animated flowing gradient on the signature slash --- */
.slash::after {
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--pink));
  background-size: 200% 100%;
  animation: slashFlow 4s linear infinite;
}
@keyframes slashFlow { from { background-position: 0 0; } to { background-position: 200% 0; } }

/* --- Buttons: shine sweep on hover --- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn:hover::after { left: 130%; }

/* --- Cards: smoother 3D tilt + glow follow --- */
.card { transform-style: preserve-3d; will-change: transform; }

/* --- Stat numbers: gentle glow pulse --- */
.stat__num { text-shadow: 0 0 18px currentColor; animation: statGlow 3s ease-in-out infinite; }
@keyframes statGlow { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.25); } }

/* --- Countdown digit pulse when it ticks --- */
.cd-unit .n.pulse { animation: cdPulse .5s ease; }
@keyframes cdPulse { 0% { transform: scale(1.25); color: var(--cyan); } 100% { transform: scale(1); } }

/* --- Chips / filter buttons: subtle press --- */
.chip:active { transform: scale(.95); }

/* --- Reveal: add a gentle scale so sections "breathe" in --- */
.reveal { transform: translateY(26px) scale(.985); }
.reveal.in { transform: none; }

/* Mobile: trim logo + grid intensity */
@media (max-width: 980px) {
  .nav__logo .brand-mark { height: 46px; }
  .nav.scrolled .nav__logo .brand-mark { height: 40px; }
}
@media (max-width: 620px) {
  .hero::before { opacity: .4; }
  .marquee__track { animation-duration: 24s; }
}

/* Respect reduced motion for all the new effects */
@media (prefers-reduced-motion: reduce) {
  .nav__logo .brand-mark, .stat__num, .hero::before,
  .hero__bg::before, .hero__bg::after, .slash::after,
  .marquee__track { animation: none !important; }
  .hero::before { display: none; }
}
