/* ═══════════════════════════════════════════════════════════════════════════
   POLLY BASKETBALL MANAGER — LANDING
   Editorial sports magazine × data dashboard
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand — consistent met packages/web/src/index.css */
  --ink: #050a1a;
  --ink-2: #0a122b;
  --ink-3: #111a3a;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --gold: #fbbf24;
  --amber: #f59e0b;
  --cream: #f5efe3;
  --cream-2: #ede4cf;
  --chalk: #e0e4ff;
  --chalk-dim: rgba(224, 228, 255, 0.62);
  --chalk-faint: rgba(224, 228, 255, 0.18);

  /* Typography */
  --ff-display: 'Big Shoulders Display', 'Arial Narrow', system-ui, sans-serif;
  --ff-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --ff-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Layout */
  --content: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.65, 0.2, 1);
  --ease-editorial: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ─────────── Reset ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; background: none; border: 0; padding: 0; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════ ATMOSPHERIC BG ═══════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 700px at 85% -10%, rgba(249, 115, 22, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 30%, rgba(251, 191, 36, 0.06), transparent 55%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════ TYPOGRAPHY ═══════════════════════════ */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 900; line-height: 0.92; letter-spacing: -0.01em; color: #fff; text-transform: uppercase; margin: 0; }
.ital { font-family: var(--ff-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.num { font-family: var(--ff-mono); font-weight: 500; letter-spacing: -0.02em; }

/* ═══════════════════════════ EYEBROW ═══════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: var(--sp-6);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.eyebrow--center { justify-content: center; }
.eyebrow--dark { color: var(--orange-deep); }
.eyebrow__dot--dark { box-shadow: 0 0 10px rgba(234, 88, 12, 0.5); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.18); }
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(249, 115, 22, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--ghost {
  color: var(--chalk);
  background: transparent;
  border: 1px solid var(--chalk-faint);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: #fff;
}
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ═══════════════════════════ NAV ═══════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: 1rem var(--gutter);
  background: rgba(5, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--chalk-faint);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--chalk);
}
.nav__mark-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -6px rgba(249, 115, 22, 0.5);
  object-fit: cover;
}
.nav__wordmark { display: inline-flex; flex-direction: column; line-height: 1; gap: 1px; }
.nav__wordmark-name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 0.95;
}
.nav__wordmark-tag {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--chalk-dim);
  transition: color 0.2s var(--ease-out);
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--chalk); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Lang toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--chalk-faint);
  border-radius: 999px;
}
.lang-toggle__btn {
  color: var(--chalk-dim);
  transition: color 0.2s;
}
.lang-toggle__btn.is-active { color: var(--orange); }
.lang-toggle__btn:hover { color: var(--chalk); }
.lang-toggle__sep { color: var(--chalk-faint); }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__actions { margin-left: auto; gap: var(--sp-2); }
  .nav__wordmark-tag { display: none; }
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(4rem, 6vw, 6rem);
  overflow: hidden;
  min-height: 88vh;
}
.hero__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__headline {
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.88;
  margin-bottom: var(--sp-6);
  color: #fff;
}
.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: word-in 0.75s var(--ease-editorial) forwards;
}
.hero__headline .word:nth-child(1) { animation-delay: 0.10s; }
.hero__headline .word:nth-child(2) { animation-delay: 0.22s; }
.hero__headline .word:nth-child(3) { animation-delay: 0.34s; }
.hero__headline .word:nth-child(4) { animation-delay: 0.46s; }
.hero__headline .word:nth-child(5) { animation-delay: 0.58s; }
.hero__headline .word:nth-child(6) { animation-delay: 0.70s; }
.hero__headline .word:nth-child(7) { animation-delay: 0.82s; }
.hero__headline .word--accent { color: var(--orange); }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero__subhead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--chalk-dim);
  max-width: 52ch;
  margin: 0 0 var(--sp-8);
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--chalk-faint);
  margin: 0;
  max-width: 520px;
}
.hero__meta div { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta dt {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}
.hero__meta dd .num { font-size: 2rem; color: var(--orange); font-weight: 700; margin-right: 0.15em; }
.hero__meta dd span:last-child {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--chalk-dim);
  text-transform: none;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 0.2em;
}

/* Hero visual — court + floating cards */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin-left: auto;
}
.hero__court {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(249, 115, 22, 0.15));
}
.court__line {
  fill: none;
  stroke: var(--chalk-faint);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: court-draw 2.4s var(--ease-editorial) 0.3s forwards;
}
.court__hoop {
  fill: var(--orange);
  opacity: 0;
  animation: fade-in 0.6s var(--ease-out) 2.2s forwards;
  filter: drop-shadow(0 0 8px var(--orange));
}
.court__heat { opacity: 0; animation: fade-in 1.6s var(--ease-out) 2.4s forwards; }
.court__heat--delay { animation-delay: 2.8s; }
.court__shots circle {
  opacity: 0;
  animation: shot-in 0.4s var(--ease-out) forwards;
}
.court__shots circle:nth-child(1) { animation-delay: 2.6s; }
.court__shots circle:nth-child(2) { animation-delay: 2.7s; }
.court__shots circle:nth-child(3) { animation-delay: 2.8s; }
.court__shots circle:nth-child(4) { animation-delay: 2.9s; }
.court__shots circle:nth-child(5) { animation-delay: 3.0s; }
.court__shots circle:nth-child(6) { animation-delay: 3.1s; }
.court__shots circle:nth-child(7) { animation-delay: 3.2s; }
.court__shots circle:nth-child(8) { animation-delay: 3.3s; }
.court__shots circle:nth-child(9) { animation-delay: 3.4s; }
.court__shots circle:nth-child(10) { animation-delay: 3.5s; }
.court__shots circle:nth-child(11) { animation-delay: 3.6s; }
.court__shots circle:nth-child(12) { animation-delay: 3.7s; }
.shot--make { fill: var(--orange); filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.8)); }
.shot--miss { fill: none; stroke: var(--chalk-dim); stroke-width: 1.5; }
@keyframes court-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes fade-in { to { opacity: 1; } }
@keyframes shot-in {
  to { opacity: 1; }
}

/* Floating stat cards */
.stat-card {
  position: absolute;
  background: rgba(10, 18, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--chalk-faint);
  border-radius: 14px;
  padding: var(--sp-4);
  min-width: 190px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: card-in 0.7s var(--ease-editorial) forwards;
}
.stat-card--a {
  top: 8%;
  left: -12%;
  animation-delay: 1.3s;
  transform: translateY(20px) rotate(-2deg);
}
.stat-card--b {
  bottom: 10%;
  right: -8%;
  animation-delay: 1.6s;
  transform: translateY(20px) rotate(2deg);
}
@keyframes card-in {
  to { opacity: 1; transform: translateY(0) rotate(var(--end-rot, 0deg)); }
}
.stat-card--a { --end-rot: -2deg; }
.stat-card--b { --end-rot: 2deg; }

.stat-card__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--sp-2);
}
.stat-card__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}
.stat-card__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.stat-card__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.stat-card__jersey {
  color: var(--orange);
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  margin-left: 0.4em;
}
.stat-card__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.stat-card__label {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--chalk-dim);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.stat-card__num {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--chalk);
  letter-spacing: -0.02em;
}
.stat-card__sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--chalk-dim);
  line-height: 1.3;
  margin-top: var(--sp-2);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--sp-2);
}
.badge-chip__tier {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.badge-chip__tier--gold {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: var(--ink);
}
.badge-chip__tier-empty {
  width: 12px; height: 4px; background: var(--chalk-faint); border-radius: 2px;
}

/* Hero scroll */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: var(--chalk-dim);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fade-in 0.6s var(--ease-out) 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--chalk-dim));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scroll-line 2s var(--ease-out) infinite;
}
@keyframes scroll-line {
  to { top: 40px; }
}

@media (max-width: 960px) {
  .hero__visual { max-width: 400px; margin: var(--sp-8) auto 0; }
  .stat-card--a { left: -5%; }
  .stat-card--b { right: -5%; }
  .hero__meta { grid-template-columns: 1fr; gap: var(--sp-3); }
  .hero__scroll { display: none; }
}
@media (max-width: 520px) {
  .hero__visual { max-width: 320px; }
  .stat-card { min-width: 160px; padding: var(--sp-3); }
  .stat-card--a { left: -8%; top: 5%; }
  .stat-card--b { right: -8%; bottom: 5%; }
}

/* ═══════════════════════════ PULL-QUOTE ═══════════════════════════ */
.quote {
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  border-top: 1px solid var(--chalk-faint);
  border-bottom: 1px solid var(--chalk-faint);
  background:
    linear-gradient(180deg, transparent, rgba(10, 18, 43, 0.5)),
    radial-gradient(ellipse 600px 300px at 50% 50%, rgba(249, 115, 22, 0.08), transparent 70%);
}
.quote__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.quote__mark {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(8rem, 14vw, 14rem);
  line-height: 0.7;
  color: var(--orange);
  font-weight: 400;
  transform: translateY(-0.15em);
  opacity: 0.9;
}
.quote__body { margin: 0; }
.quote__body p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 var(--sp-6);
  letter-spacing: -0.015em;
}
.quote__byline {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.quote__rule {
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.quote__byline cite {
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .quote__grid { grid-template-columns: 1fr; }
  .quote__mark { display: none; }
}

/* ═══════════════════════════ SECTION HEADER ═══════════════════════════ */
.section-header {
  max-width: var(--content);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0 var(--gutter);
}
.section-header--center { text-align: center; }
.section-header__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  max-width: 22ch;
}
.section-header--center .section-header__title { margin: 0 auto; max-width: 20ch; }
.section-header__title span { display: inline; }
.section-header__title > span { display: block; }
.section-header__sub {
  margin-top: var(--sp-6);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--chalk-dim);
  max-width: 52ch;
  line-height: 1.5;
}
.section-header--center .section-header__sub { margin-left: auto; margin-right: auto; text-align: center; }

/* ═══════════════════════════ FEATURES ═══════════════════════════ */
.features {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.feature {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--chalk-faint);
  position: relative;
}
.feature:first-of-type { border-top: 0; padding-top: 0; }

.feature__index {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.1em;
  grid-row: 1;
  padding-top: 0.25rem;
}
.feature__meta {
  grid-row: 1;
  grid-column: 2 / 3;
  padding-top: 0.25rem;
}
.feature__tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--chalk-faint);
  border-radius: 4px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chalk);
  text-transform: uppercase;
}
.feature__body {
  grid-row: 2;
  grid-column: 2 / 3;
  padding-top: var(--sp-4);
}
.feature__title {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  margin-bottom: var(--sp-4);
  line-height: 0.96;
  max-width: 14ch;
}
.feature__desc {
  font-size: 1.05rem;
  color: var(--chalk-dim);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 var(--sp-6);
}
.feature__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.feature__points li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--chalk-dim);
}
.feature__points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-family: var(--ff-body);
  font-weight: 700;
}
.feature__visual {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
  align-self: center;
  position: relative;
}

/* Alternating feature layouts */
.feature--b { grid-template-columns: 1fr 1fr 80px; }
.feature--b .feature__index { grid-column: 3 / 4; text-align: right; }
.feature--b .feature__meta { grid-column: 2 / 3; text-align: left; }
.feature--b .feature__body { grid-column: 2 / 3; }
.feature--b .feature__visual { grid-column: 1 / 2; grid-row: 1 / 3; }

.feature--d { grid-template-columns: 1fr 1fr 80px; }
.feature--d .feature__index { grid-column: 3 / 4; text-align: right; }
.feature--d .feature__meta { grid-column: 2 / 3; text-align: left; }
.feature--d .feature__body { grid-column: 2 / 3; }
.feature--d .feature__visual { grid-column: 1 / 2; grid-row: 1 / 3; }

@media (max-width: 820px) {
  .feature, .feature--b, .feature--d {
    grid-template-columns: 60px 1fr !important;
  }
  .feature .feature__meta,
  .feature .feature__body,
  .feature .feature__index { grid-column: auto !important; text-align: left !important; }
  .feature .feature__index { grid-column: 1 !important; }
  .feature .feature__meta { grid-column: 2 !important; }
  .feature .feature__body { grid-column: 2 !important; }
  .feature .feature__visual {
    grid-column: 1 / 3 !important;
    grid-row: 3 !important;
    margin-top: var(--sp-8);
    max-width: 380px;
  }
}

/* ─── Feature 01 — Shot log visual ─── */
.chart-mini {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 12px;
  padding: var(--sp-4);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  max-width: 360px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}
.chart-mini__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--chalk-faint);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}
.chart-mini__time { color: var(--orange); }
.chart-mini__rows { display: flex; flex-direction: column; gap: var(--sp-2); }
.chart-mini__row {
  display: flex; align-items: center; gap: var(--sp-2);
  color: var(--chalk);
  padding: 0.3rem 0;
}
.chart-mini__row--miss { color: var(--chalk-dim); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--make { background: var(--orange); box-shadow: 0 0 6px rgba(249, 115, 22, 0.6); }
.dot--miss { background: transparent; border: 1.5px solid var(--chalk-dim); }
.dot--ast { background: var(--gold); }
.chart-mini__plus { margin-left: auto; color: var(--gold); font-weight: 700; }
.chart-mini__minus { margin-left: auto; color: var(--chalk-dim); font-weight: 700; }

/* ─── Feature 02 — Heatmap visual (1-op-1 met ZoneHeatmap.tsx) ─── */
.heatmap-mock {
  background: var(--ink);
  border: 1px solid var(--chalk-faint);
  border-radius: 14px;
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  max-width: 430px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.heatmap-mock__head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.heatmap-mock__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--chalk);
}
.heatmap-mock__filters {
  display: inline-flex;
  gap: 6px;
}
.heatmap-mock__pill {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--chalk-dim);
  border: 1px solid var(--chalk-faint);
}
.heatmap-mock__pill--on {
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  color: #fff;
  border-color: transparent;
}
.heatmap-mock__center {
  text-align: center;
  font-family: var(--ff-body);
  margin-top: 2px;
}
.heatmap-mock__fg {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--chalk);
}
.heatmap-mock__fg em {
  font-style: normal;
  font-weight: 500;
  color: var(--chalk-dim);
  font-size: 0.82rem;
  margin-left: 0.4em;
}

/* 3D-perspective trapezoid — exact zoals de echte app */
.heatmap-mock__court-wrap {
  perspective: 900px;
  padding: var(--sp-2) 0;
}
.heatmap-mock__court {
  width: 100%;
  height: auto;
  display: block;
  transform: rotateX(18deg) scale(0.96);
  transform-origin: center top;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.heatmap-mock__legend {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: var(--chalk-dim);
  font-weight: 500;
}
.heatmap-mock__legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.heatmap-mock__legend em {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-style: normal;
}

/* ─── Feature 03 — Badge stack ─── */
.badge-stack {
  position: relative;
  width: 300px;
  height: 280px;
  margin: 0 auto;
}
.badge-card {
  position: absolute;
  width: 240px;
  padding: var(--sp-4);
  border-radius: 12px;
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  box-shadow: 0 18px 48px -14px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s var(--ease-out);
}
.badge-card--platinum {
  top: 0; left: 0;
  transform: rotate(-4deg);
  border-color: rgba(224, 228, 255, 0.35);
}
.badge-card--gold {
  top: 70px; left: 40px;
  transform: rotate(2deg);
  border-color: rgba(251, 191, 36, 0.4);
}
.badge-card--silver {
  top: 140px; left: 10px;
  transform: rotate(-2deg);
}
.feature--c:hover .badge-card--platinum { transform: rotate(-6deg) translate(-6px, -4px); }
.feature--c:hover .badge-card--gold { transform: rotate(3deg) translate(4px, -6px); }
.feature--c:hover .badge-card--silver { transform: rotate(-1deg) translate(-2px, 4px); }

.badge-card__tier {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: var(--sp-3);
}
.badge-card--platinum .badge-card__tier {
  background: linear-gradient(135deg, #cbd5e1, #f1f5f9);
  color: var(--ink);
}
.badge-card--gold .badge-card__tier {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: var(--ink);
}
.badge-card--silver .badge-card__tier {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  color: var(--ink);
}
.badge-card__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.badge-card__meta {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--chalk-dim);
  letter-spacing: 0.04em;
}

/* ─── Feature 04 — Sync diagram ─── */
.sync-diagram {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 420px;
}
.sync-node {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 12px;
  padding: var(--sp-4);
  flex: 1;
  min-width: 0;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}
.sync-node__label {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--chalk-dim);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.sync-node__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.1;
  word-break: break-all;
}
.sync-node--dst .sync-node__name { color: var(--orange); }
.sync-arrow {
  flex: 0 0 60px;
  height: 40px;
}

/* ─── Feature 05 — Roster ─── */
.roster {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}
.roster li {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  padding: 0.85rem var(--sp-4);
  border-bottom: 1px solid var(--chalk-faint);
}
.roster li:last-child { border-bottom: 0; }
.roster__num {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.roster__name {
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--chalk);
}
.roster__role {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--chalk-dim);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--chalk-faint);
  border-radius: 4px;
}

/* ═══════════════════════════ BADGE MARQUEE ═══════════════════════════ */
.badges {
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--chalk-faint);
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.04));
  overflow: hidden;
}
.badges .section-header__title { color: #fff; }
.marquee {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee__track--alt {
  animation-duration: 80s;
  animation-direction: reverse;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--chalk);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  transition: color 0.25s, transform 0.25s;
}
.marquee__item:hover { color: #fff; transform: translateY(-2px); }
.tier {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--ink);
}
.tier--bronze { background: linear-gradient(135deg, #c27038, #e6a063); }
.tier--silver { background: linear-gradient(135deg, #94a3b8, #cbd5e1); }
.tier--gold   { background: linear-gradient(135deg, var(--amber), var(--gold)); }
.tier--platinum { background: linear-gradient(135deg, #dbe4f3, #f5f7fb); }

/* ═══════════════════════════ NBB SPOTLIGHT ═══════════════════════════ */
.nbb {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--chalk-faint);
  border-bottom: 1px solid var(--chalk-faint);
}
.nbb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0 0.02  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.nbb__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .nbb__grid { grid-template-columns: 1fr; }
}
.nbb__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.nbb__title .ital { color: var(--orange-deep); display: inline; }
.nbb__body {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #1f2937;
  max-width: 48ch;
  margin: 0 0 var(--sp-8);
}
.nbb__points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.nbb__point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-3);
  align-items: start;
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(5, 10, 26, 0.12);
}
.nbb__point:last-child { border-bottom: 1px solid rgba(5, 10, 26, 0.12); }
.nbb__point-num {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--orange-deep);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.nbb__point-text { font-size: 0.95rem; color: #1f2937; line-height: 1.5; }

.nbb__visual { margin: 0; }
.nbb__card {
  background: #fff;
  border-radius: 14px;
  padding: var(--sp-6);
  box-shadow: 0 30px 80px -20px rgba(5, 10, 26, 0.18), 0 2px 6px rgba(5, 10, 26, 0.04);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.nbb__card::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--gold));
  border-radius: 4px 4px 0 0;
}
.nbb__card-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
}
.nbb__card-row--head {
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #64748b;
  text-transform: uppercase;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(5, 10, 26, 0.08);
}
.nbb__card-live { color: var(--orange-deep); font-weight: 700; }
.nbb__card-row--small { font-size: 0.82rem; color: #64748b; justify-content: space-between; }
.nbb__team {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1;
}
.nbb__vs {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--orange-deep);
  font-size: 1rem;
}
.nbb__card-divider {
  height: 1px;
  background: rgba(5, 10, 26, 0.08);
  margin: var(--sp-3) 0;
}
.nbb__standings {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: #334155;
}
.nbb__standings div {
  display: flex; justify-content: space-between;
  padding: 0.2rem 0;
}
.nbb__standings div:first-child { color: var(--orange-deep); font-weight: 700; }
.nbb__card-footer {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(5, 10, 26, 0.08);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: #64748b;
  letter-spacing: 0.04em;
}
.nbb__card-footer strong { color: var(--ink); }

/* ═══════════════════════════ STATS BAND ═══════════════════════════ */
.stats-band {
  padding: clamp(5rem, 9vw, 7rem) var(--gutter);
  background: var(--ink-2);
  border-top: 1px solid var(--chalk-faint);
  border-bottom: 1px solid var(--chalk-faint);
}
.stats-band .section-header { padding: 0; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.stats-band__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stats-band__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}
.stat-big {
  text-align: left;
  padding-left: var(--sp-5, 1.25rem);
  border-left: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.stat-big__num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(3.25rem, 6vw, 5rem);
  line-height: 0.88;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-big__label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1.35;
  font-weight: 500;
}
.stat-big__sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--chalk-dim);
  max-width: 32ch;
  margin-top: 4px;
}

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  background:
    radial-gradient(ellipse 800px 400px at 30% 20%, rgba(249, 115, 22, 0.08), transparent 60%),
    transparent;
}
.contact__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}
.contact__heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 0.92;
  margin-bottom: var(--sp-6);
}
.contact__heading .ital { color: var(--orange); display: inline; }
.contact__body {
  font-size: 1.05rem;
  color: var(--chalk-dim);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 var(--sp-8);
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact__list li {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--chalk);
  letter-spacing: 0.02em;
  display: flex; gap: var(--sp-3);
}
.contact__list-label { color: var(--orange); }

/* Form */
.contact__form {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.field label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}
.field input,
.field textarea {
  font: inherit;
  background: var(--ink);
  border: 1px solid var(--chalk-faint);
  color: var(--chalk);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--ink-3);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(224, 228, 255, 0.35); }
.field__error {
  color: #fb7185;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  min-height: 1em;
}
.field.is-invalid input,
.field.is-invalid textarea { border-color: #fb7185; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.form-status {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: var(--sp-3) var(--sp-4);
  border-radius: 8px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.form-status.is-error {
  display: block;
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.3);
  color: #fecaca;
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq {
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--chalk-faint);
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__item {
  border-top: 1px solid var(--chalk-faint);
  padding: var(--sp-6) 0;
}
.faq__item:last-of-type { border-bottom: 1px solid var(--chalk-faint); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  font-family: var(--ff-mono);
  font-weight: 400;
  color: var(--orange);
  font-size: 1.5rem;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__answer {
  padding-top: var(--sp-4);
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--chalk-dim);
  max-width: 72ch;
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.foot {
  padding: var(--sp-12) var(--gutter);
  border-top: 1px solid var(--chalk-faint);
  background: var(--ink-2);
}
.foot__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 720px) {
  .foot__grid { grid-template-columns: 1fr; text-align: left; }
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.foot__wordmark { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.foot__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
}
.foot__tag {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--orange);
  text-transform: uppercase;
}
.foot__line {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--chalk-dim);
  line-height: 1.4;
}
.foot__meta {
  display: flex;
  gap: var(--sp-6);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--chalk-dim);
}
.foot__meta a { color: var(--chalk-dim); text-decoration: none; transition: color 0.2s; }
.foot__meta a:hover { color: var(--chalk); }

/* ═══════════════════════════ REVEAL ═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ═══════════════════════════ PLAY MOCK (Feature 03) ═══════════════════════════ */
.play-mock {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 12px;
  padding: var(--sp-4);
  max-width: 360px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}
.play-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--chalk-faint);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--chalk-dim);
  text-transform: uppercase;
}
.play-mock__frame { color: var(--orange); }
.play-mock__court {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: var(--ink);
}
.play-mock__player { filter: drop-shadow(0 2px 6px rgba(249, 115, 22, 0.4)); }
.play-mock__player--b { filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.4)); }
.play-mock__player--outline { opacity: 0.55; }
.play-mock__footer {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--chalk-faint);
}
.play-mock__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.play-mock__chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.7);
}

/* ═══════════════════════════ ROLES DIAGRAM (Feature 05) ═══════════════════════════ */
.roles-diagram {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.roles-diagram__top {
  display: flex;
  justify-content: center;
}
.roles-diagram__connector {
  width: 100%;
  height: 50px;
  margin: -1px 0;
  flex-shrink: 0;
}
.roles-diagram__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--sp-2);
}
.roles-diagram__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 var(--sp-2);
}
.roles-diagram__link svg {
  width: 60px;
  height: 12px;
}
.roles-diagram__link-label {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
}

.role-card {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 12px;
  padding: var(--sp-4);
  box-shadow: 0 14px 38px -14px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
}
.role-card--clubadmin {
  width: 70%;
  align-self: center;
  border-top: 3px solid var(--gold);
}
.role-card--coach {
  width: 62%;
  align-self: center;
  border-top: 3px solid var(--orange);
}
.role-card--player,
.role-card--parent {
  width: 100%;
}
.role-card--parent {
  border-left: 3px solid var(--gold);
}

.feature--e:hover .role-card { transform: translateY(-2px); }
.feature--e:hover .role-card--coach { border-color: rgba(249, 115, 22, 0.55); }
.feature--e:hover .role-card--clubadmin { border-color: rgba(251, 191, 36, 0.7); }

.role-card__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--chalk-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.role-card--clubadmin .role-card__eyebrow { color: var(--gold); }
.role-card--coach .role-card__eyebrow { color: var(--orange); }
.role-card--parent .role-card__eyebrow { color: var(--gold); }
.role-card__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.role-card__name span {
  color: var(--orange);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  margin-left: 0.3em;
}
.role-card__meta {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--chalk-dim);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .roles-diagram__bottom { grid-template-columns: 1fr; }
  .roles-diagram__link {
    transform: rotate(90deg);
    padding: var(--sp-2) 0;
  }
  .role-card--coach { width: 100%; }
}

/* ═══════════════════════════ TOOLKIT — EDITORIAL INDEX ═══════════════════════════ */
.toolkit {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  background:
    linear-gradient(180deg, transparent, rgba(10, 18, 43, 0.4)),
    radial-gradient(ellipse 900px 500px at 80% 50%, rgba(251, 191, 36, 0.05), transparent 60%);
  border-top: 1px solid var(--chalk-faint);
}
.toolkit__columns {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 820px) {
  .toolkit__columns { grid-template-columns: 1fr; gap: 0; }
}
.toolkit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.toolkit__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  padding: clamp(1.25rem, 2.8vw, 2rem) 0;
  border-top: 1px solid var(--chalk-faint);
  position: relative;
  transition: padding 0.3s var(--ease-out);
}
.toolkit__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--orange);
  transition: width 0.5s var(--ease-editorial);
}
.toolkit__item:hover::before { width: 100%; }
.toolkit__item:last-child { border-bottom: 1px solid var(--chalk-faint); }
.toolkit__list--b .toolkit__item:first-child { border-top: 1px solid var(--chalk-faint); }

.toolkit__item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
}
.toolkit__num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 0.85;
  color: var(--chalk-faint);
  letter-spacing: -0.02em;
  transition: color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  transform-origin: left baseline;
}
.toolkit__item:hover .toolkit__num {
  color: var(--orange);
  transform: scale(1.05);
}
.toolkit__tag {
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--chalk-dim);
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--chalk-faint);
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.toolkit__item:hover .toolkit__tag {
  color: var(--orange);
  border-color: var(--orange);
}
.toolkit__item-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: #fff;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.005em;
  margin: 0;
}
.toolkit__item-desc {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--chalk-dim);
  margin: 0;
  max-width: 48ch;
}

/* Featured/visual variant (item 06 — team feed) */
.toolkit__item--visual {
  gap: var(--sp-4);
}
.toolkit__visual {
  margin-top: var(--sp-2);
}
.feed-mini {
  background: var(--ink-2);
  border: 1px solid var(--chalk-faint);
  border-radius: 10px;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
}
.feed-mini::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), transparent);
}
.feed-mini__row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--chalk);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.feed-mini__row .tier {
  flex-shrink: 0;
  font-size: 0.6rem;
  padding: 0.15rem 0.35rem;
}
.feed-mini__row--play { color: var(--chalk-dim); }
.feed-mini__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.18);
  color: var(--orange);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ═══════════════════════════ BADGES FOOTNOTE ═══════════════════════════ */
.badges__footnote {
  max-width: 680px;
  margin: var(--sp-8) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--chalk-dim);
  line-height: 1.5;
}

/* ═══════════════════════════ FOOTER BM STYLE ═══════════════════════════ */
.foot__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.005em;
}
.foot__name,
.foot__tag {
  display: block;
}

