/* ============================================================
   WOWflag.com — Design System v1
   Brand: black · gold · forest green (founder-confirmed 2026-06-11)
   "One Standard. Zero Deviations."
   ============================================================ */

:root {
  --black: #0B0C0B;         /* page background */
  --black-2: #0E1310;       /* alternate sections — faint forest tint */
  --surface: #142019;       /* cards & panels — deep forest */
  --ink: #060706;
  --forest: #1B4332;
  --forest-bright: #2D6A4F;
  --green-text: #8FD4AE;
  --gold: #C9A227;
  --gold-light: #E3C268;
  --gold-grad: linear-gradient(135deg, #C9A227 0%, #E3C268 55%, #C9A227 100%);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --faint: rgba(255, 255, 255, 0.45);
  --line: rgba(201, 162, 39, 0.28);
  --radius: 18px;
  --font: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont,
          "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-light); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-light); outline-offset: 3px;
}

.container { width: min(1100px, 92%); margin: 0 auto; }
.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;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 7, 6, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand:hover { text-decoration: none; }
.brand-img { height: 46px; width: auto; }

/* Logo 1 (transparent lockup) in the hero */
.hero-lockup {
  height: clamp(110px, 16vw, 160px); width: auto;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 6px 28px rgba(201, 162, 39, 0.30));
}
.brand-word {
  font-size: 1.45rem; font-weight: 800; letter-spacing: 0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-word .tm { font-size: 0.55em; vertical-align: super; }

.nav-links {
  display: flex; align-items: center; gap: 1.3rem; list-style: none;
}
.nav-menu { display: flex; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 0.95rem; font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--gold-light); font-size: 1.4rem; line-height: 1;
  min-width: 44px; min-height: 44px; padding: 0.35rem 0.65rem;
  border-radius: 8px; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  font-weight: 700; font-size: 1rem;
  padding: 0.8rem 1.6rem; border-radius: 999px; border: none;
  cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-gold {
  background: var(--gold-grad); color: var(--ink);
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35);
}
.btn-outline {
  background: transparent; color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  padding: 2.2rem 0 4.6rem;
  background: url("../assets/brand/field-bg.png?v=5") center bottom / 100% auto no-repeat, var(--black);
  text-align: center;
}
.hero-mark {
  height: clamp(110px, 15vw, 150px); width: auto;
  margin: 0 auto 1.2rem; display: block;
  filter: drop-shadow(0 6px 26px rgba(201, 162, 39, 0.30));
}
.hero-city {
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.42em; text-transform: uppercase;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.7rem;
}
.hero .kicker {
  display: inline-block; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 1rem; margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.12;
  font-weight: 800; margin-bottom: 1.1rem;
}
.hero h1 .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: 1.15rem; color: var(--muted);
  max-width: 640px; margin: 0 auto 2rem;
}
.hero .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section.alt { background: var(--black-2); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.6rem; display: flex; flex-direction: column; align-items: center; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; margin-bottom: 0.7rem; }
.section-head p { color: var(--muted); }
/* Section crown: the WOW crown (logo 3) — sits ABOVE headings (founder 2026-06-11) */
.gold-rule {
  width: 56px; height: 44px;
  background: url("../assets/brand/logo3.png") center / contain no-repeat;
  border: none; margin: 0 auto 1.1rem;
}
.section-head .gold-rule { order: -1; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.4rem; }
ul.grid, ol.grid { list-style: none; padding-left: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; color: var(--gold-light); }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .card-cta { display: inline-block; margin-top: 0.9rem; font-weight: 700; font-size: 0.92rem; }

.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold-grad);
  border-radius: 999px; padding: 0.2rem 0.7rem; margin-bottom: 0.8rem;
}
.badge.soft { background: none; color: var(--gold-light); border: 1px solid var(--line); }

/* ---------- Steps / pathway ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink);
  font-weight: 800; display: grid; place-items: center;
}
.step h3 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 0.2rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.wow {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
}
table.wow th {
  background: rgba(201, 162, 39, 0.14); color: var(--gold-light);
  text-align: left; padding: 0.75rem 1rem; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
table.wow td { padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.07); color: var(--muted); }
table.wow td:first-child { color: var(--white); font-weight: 600; white-space: nowrap; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; max-width: 640px; margin: 0 auto;
}
.form-fieldset { border: 0; min-width: 0; padding: 0; margin: 0; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); background: var(--black);
  color: var(--white); font-family: var(--font); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold); border-color: transparent;
}
.form-note { font-size: 0.82rem; color: var(--faint); margin-top: 0.9rem; }
.form-success {
  display: none; text-align: center; padding: 1.4rem;
  border: 1px solid var(--forest-bright); border-radius: var(--radius);
  background: rgba(45, 106, 79, 0.18);
  color: var(--green-text); font-weight: 700; margin-top: 1rem;
}
.form-success.show { display: block; }
#thanks:target { display: block; }
.form-errors {
  display: none; padding: 0.85rem 1rem; margin-bottom: 1rem;
  border: 1px solid var(--gold); border-radius: 10px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light); font-weight: 700; font-size: 0.9rem;
}
.form-errors.show { display: block; }
.field-error {
  display: none; color: var(--gold-light);
  font-size: 0.82rem; font-weight: 700; margin-top: 0.35rem;
}
.field-error.show { display: block; }
.field input.field-invalid, .field select.field-invalid, .field textarea.field-invalid {
  border-color: var(--gold);
}
.form-honey {
  position: absolute; left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.acc-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--white); font-family: var(--font); font-size: 1.02rem; font-weight: 700;
  padding: 1.1rem 1.3rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.acc-q::after { content: "+"; color: var(--gold-light); font-size: 1.4rem; font-weight: 400; }
.acc-item.open .acc-q::after { content: "–"; }
.acc-a { display: none; padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: 0.97rem; }
.acc-item.open .acc-a { display: block; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem;
  padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--forest); list-style: none;
}
.trust-strip li { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; }
.trust-strip b { color: var(--gold-light); }

.badge.green {
  background: var(--forest-bright); color: var(--white);
}

/* ---------- Share / word of mouth ---------- */
.share-row {
  display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.4rem;
}
.share-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; padding: 0;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.share-btn svg { fill: var(--gold-light); transition: fill 0.15s ease; }
.share-btn:hover {
  transform: translateY(-3px);
  background: var(--gold-grad);
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.35);
  text-decoration: none;
}
.share-btn:hover svg { fill: var(--ink); }
.share-btn.copied { background: var(--forest-bright); border-color: var(--forest-bright); }
.share-btn.copied svg { fill: var(--white); }

/* ---------- Members-only teaser ---------- */
.locked-card { position: relative; }
.locked-card h3::before { content: "🔒 "; font-size: 0.85em; }
.tier-note {
  border: 1px solid var(--forest-bright); background: rgba(45, 106, 79, 0.14);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-top: 1.6rem;
  text-align: center; color: var(--green-text); font-weight: 600;
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.8rem; }
.split p { color: var(--muted); margin-bottom: 0.9rem; }
.split ul { color: var(--muted); padding-left: 1.2rem; margin-bottom: 1rem; }
.split li { margin-bottom: 0.4rem; }
.split .visual {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--ink);
}
.brand-panel {
  display: grid; place-items: center; padding: 3rem 2rem; min-height: 280px;
  background:
    radial-gradient(440px 240px at 50% 55%, rgba(201, 162, 39, 0.12), transparent 70%),
    var(--ink);
}
.brand-panel img { width: min(80%, 430px); height: auto; }

/* ---------- Banner CTA ---------- */
.banner-cta {
  background:
    url("../assets/brand/logo2.png") center 2rem / clamp(110px, 14vw, 150px) auto no-repeat,
    radial-gradient(600px 300px at 50% 120%, rgba(201,162,39,0.22), transparent 70%),
    var(--ink);
  text-align: center; padding: 7.5rem 0 4rem;
  border-top: 1px solid var(--line);
}
.banner-cta h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 0.8rem; }
.banner-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 1.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    url("../assets/brand/logo1-watermark.png") right 2rem bottom 1.5rem / 220px no-repeat,
    var(--ink);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem; font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr 1.1fr; gap: 2rem; margin-bottom: 2rem; }
.site-footer h4 { color: var(--gold-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold-light); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem;
  color: var(--faint); font-size: 0.8rem; text-align: center;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 0.6rem; }

/* Marketing promo image blocks */
.promo-img {
  display: block; max-width: 860px; width: 100%; margin: 0 auto 2.4rem;
  border: 1px solid var(--line); border-radius: var(--radius);
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: 0.5rem 4%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: flex; align-items: center; min-height: 44px; padding: 0.8rem 0; font-size: 1.05rem; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3.4rem 0 3rem; }
}

/* ---------- Scoreboard countdown bar ---------- */
.scoreboard-bar { background: var(--ink); border-bottom: 2px solid var(--gold); }
.scoreboard-bar a {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  min-height: 44px; padding: 0.5rem 1rem; flex-wrap: wrap; text-decoration: none;
}
.scoreboard-bar a:hover { text-decoration: none; }
.sb-label {
  color: var(--gold-light); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.sb-clock {
  display: inline-flex; gap: 0.4rem; align-items: center;
  background: #000; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.28rem 0.75rem;
  box-shadow: inset 0 0 16px rgba(201, 162, 39, 0.18);
}
.sb-seg { display: inline-flex; flex-direction: column; align-items: center; min-width: 2.1rem; }
.sb-seg b {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums; font-size: 1.08rem; line-height: 1;
  color: var(--gold-light); text-shadow: 0 0 10px rgba(227, 194, 104, 0.55);
}
.sb-seg i {
  font-style: normal; font-size: 0.5rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint); margin-top: 2px;
}
.sb-colon { color: var(--gold); font-weight: 800; margin-top: -8px; }
.sb-cta { color: var(--white); font-weight: 700; font-size: 0.85rem; }
@media (max-width: 560px) {
  .scoreboard-bar a { gap: 0.55rem; padding: 0.55rem 0.75rem; }
  .sb-label { letter-spacing: 0.1em; text-align: center; }
  .sb-cta { display: none; }
}

/* ---------- Team Roster Builder (coach signup) ---------- */
.roster-input { display: flex; gap: 0.6rem; }
.roster-input input { flex: 1; }
.rb-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; min-height: 2.2rem; }
.rb-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--gold-grad); color: var(--ink);
  font-weight: 700; font-size: 0.9rem;
  border-radius: 999px; padding: 0.3rem 0.55rem 0.3rem 0.9rem;
  cursor: pointer; border: none; font-family: var(--font);
  animation: chip-pop 0.25s ease;
}
.rb-chip::after { content: "×"; font-weight: 800; opacity: 0.7; }
@keyframes chip-pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.rb-meter {
  position: relative; height: 34px; border-radius: 10px; overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 2px), rgba(255,255,255,0.14) calc(12.5% - 2px) 12.5%),
    var(--forest);
  border: 1px solid var(--line); margin-top: 0.9rem;
}
.rb-meter-fill {
  height: 100%; width: 0%;
  background: var(--gold-grad);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 18px rgba(227, 194, 104, 0.5);
}
.rb-meter-goal {
  position: absolute; top: 0; bottom: 0; left: 75%; width: 3px;
  background: var(--white); opacity: 0.7;
}
.rb-meter-goal::after {
  content: "team!"; position: absolute; top: 50%; left: 7px; transform: translateY(-50%);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); opacity: 0.85;
}
.rb-status { margin-top: 0.5rem; font-weight: 600; }
.rb-status.ready { color: var(--green-text); }

/* ---------- Scroll-driven reveal (progressive enhancement) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .card, .step, .form-card, .brand-panel {
      animation: rise-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(26px); }
      to { opacity: 1; transform: none; }
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .share-btn:hover, .footer-social a:hover {
    transform: none;
  }
}

/* ---------- Forest-green section bands ---------- */
.section.green {
  background: linear-gradient(160deg, #17382B 0%, #0F231A 100%);
}

/* ---------- Big-number stat posters ---------- */
.stat-band {
  padding: 3.8rem 0 6rem;
  background:
    url("../assets/brand/spot-kids.png") right -20px bottom -10px / 200px no-repeat,
    linear-gradient(160deg, #17382B 0%, #0F231A 100%);
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem; text-align: center;
}
.stat b {
  display: block; line-height: 1; font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.4rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span {
  display: block; margin-top: 0.5rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.82);
  text-wrap: balance;
}
.stat-grid.poster .stat span { max-width: 11ch; margin-inline: auto; }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }

/* Stat band v2 — program-grouped scoreboard (index) */
.band-kicker {
  text-align: center; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 2.4rem;
}
.stat-groups { display: grid; grid-template-columns: 1.15fr 1fr 1fr; column-gap: 2.8rem; }
.stat-group + .stat-group { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 2.8rem; }
.group-head {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
}
.group-head .pill {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: var(--gold-grad);
  border-radius: 999px; padding: 0.18em 0.65em; margin-left: 0.55em; vertical-align: middle;
}
.group-sub {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.35em;
}
.group-rule { width: 28px; height: 2px; background: var(--gold); border: none; margin: 0.8rem 0 1.3rem; }
.stat-row {
  display: grid; grid-template-columns: minmax(4.5ch, auto) 1fr;
  column-gap: 0.9rem; align-items: center; padding: 0.55rem 0;
}
.stat-row .num {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem); font-weight: 800; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.stat-row .num .num-prefix {
  font-size: 0.42em; font-style: normal; letter-spacing: 0.06em; vertical-align: 0.45em;
  background: none; -webkit-background-clip: initial; background-clip: initial;
  color: var(--gold-light); -webkit-text-fill-color: var(--gold-light);
}
.stat-row.price .num { font-size: clamp(1.7rem, 2.1vw, 2.4rem); }
.stat-row .label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.82); text-wrap: balance;
}
.band-foot {
  text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  max-width: 58ch; margin: 2.6rem auto 0;
}
.band-foot b { color: var(--gold-light); }
@media (max-width: 760px) {
  .stat-groups { grid-template-columns: 1fr; row-gap: 1.8rem; }
  .stat-group + .stat-group { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.10); padding-top: 1.6rem; }
  .stat-row .num { font-size: clamp(1.85rem, 7vw, 2.6rem); }
}
@media (max-width: 560px) {
  .stat-band { padding-bottom: 7rem; background-size: 140px, auto; background-position: right -16px bottom -8px, 0 0; }
}

/* ---------- Footer v2: CTA strip, social icons, email capture ---------- */
.footer-cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.4rem; flex-wrap: wrap;
  padding-bottom: 1.8rem; margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tag {
  font-weight: 800; font-size: 1.35rem; line-height: 1.2;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line);
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social svg { fill: var(--gold-light); }
.footer-social a:hover { background: var(--gold-grad); transform: translateY(-2px); }
.footer-social a:hover svg { fill: var(--ink); }
.footer-sub-wrap { margin-top: 1.2rem; }
.footer-sub-label { font-weight: 700; color: var(--gold-light); margin-bottom: 0.4rem; }
.footer-sub { display: flex; gap: 0.5rem; max-width: 320px; }
.footer-sub input {
  flex: 1; min-width: 0; padding: 0.55rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18); background: var(--black);
  color: var(--white); font-family: var(--font); font-size: 1rem;
}
.footer-sub input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.footer-sub-wrap .form-success { text-align: left; padding: 0.7rem 1rem; margin-top: 0.5rem; font-size: 0.88rem; }

/* ---------- Kickoff strip (Opening Day announcement) ---------- */
.kickoff-strip {
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(620px 220px at 12% 50%, rgba(201, 162, 39, 0.12), transparent 70%),
    linear-gradient(160deg, #17382B 0%, #0F231A 100%);
  padding: 2.2rem 0;
}
.kickoff-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2.2rem; align-items: center;
}
.kickoff-date {
  display: flex; flex-direction: column; align-items: center;
  background: #000; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1.6rem 1rem;
  box-shadow: inset 0 0 22px rgba(201, 162, 39, 0.18);
}
.kd-month {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
}
.kd-day {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 12px rgba(227, 194, 104, 0.35));
}
.kd-dow {
  margin-top: 0.3rem; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
}
.kickoff-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold-grad);
  border-radius: 999px; padding: 0.2rem 0.7rem; margin-bottom: 0.55rem;
}
.kickoff-headline {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 800;
  line-height: 1.2; color: var(--white); margin-bottom: 0.35rem;
}
.kickoff-headline em { font-style: normal; color: var(--gold-light); }
.kickoff-sub { color: var(--muted); font-size: 0.95rem; max-width: 56ch; }
.kickoff-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem;
  list-style: none; margin-top: 0.85rem; padding: 0;
}
.kickoff-meta li {
  font-size: 0.78rem; font-weight: 700; color: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.28rem 0.85rem; background: rgba(0, 0, 0, 0.25);
}
.kickoff-meta li::before { content: "\2713  "; color: var(--gold-light); }
.kickoff-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; text-align: center;
}
.kickoff-note { font-size: 0.72rem; color: var(--faint); max-width: 20ch; line-height: 1.4; }
@media (max-width: 760px) {
  .kickoff-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.4rem; }
  .kickoff-meta { justify-content: center; }
  .kickoff-sub { margin-left: auto; margin-right: auto; }
}

/* ---------- Featured program card (League Play flagship) ---------- */
.feature-card {
  background:
    radial-gradient(560px 240px at 80% 20%, rgba(201, 162, 39, 0.14), transparent 70%),
    linear-gradient(160deg, #17382B 0%, #0F231A 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  display: grid; grid-template-columns: 1.7fr 1fr;
  gap: 2rem; align-items: center;
  box-shadow: 0 10px 44px rgba(201, 162, 39, 0.16);
  margin-bottom: 1.6rem;
}
.feature-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.feature-card .fc-cta { display: flex; flex-direction: column; gap: 0.7rem; align-items: center; text-align: center; }
.fc-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.fc-chips span {
  font-size: 0.75rem; font-weight: 700; color: var(--gold-light);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.8rem;
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 760px) { .feature-card { grid-template-columns: 1fr; } .feature-card .fc-cta { align-items: stretch; } }
