/* ───────────────────────────────────────────────────────────
   Bold variant — black-dominant, acid-green accent,
   oversized display type, high-energy.
─────────────────────────────────────────────────────────── */

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

:root {
  --bg: #0b0b0b;
  --bg-soft: #161614;
  --bg-band: #1c1c1a;
  --ink: #f4f4ee;
  --ink-soft: #c8c8c0;
  --muted: #777770;
  --rule: rgba(244, 244, 238, 0.15);
  --accent: #d6f24a;       /* acid green, ties into ball */
  --accent-warm: #ff5b3a;  /* alarm orange for tier badge */
  --ball: #d6f24a;

  --display: 'Anton', 'Inter', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --pad-x: 22px;
  --section-pad-y: 90px;
  --maxw: 1320px;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }
body.menu-open { overflow: hidden; }

.hl { color: var(--accent); }

/* ─── SCROLL REVEALS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── HERO TITLE DROP-IN ───────────────────────────────── */
.hero-title .ht-word {
  display: inline-block;
  animation: heroDrop .9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title .ht-word:nth-child(1) { animation-delay: 0.15s; }
.hero-title .ht-word:nth-child(3) { animation-delay: 0.40s; }
@keyframes heroDrop {
  from { opacity: 0; transform: translateY(60px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .ht-word { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ─── PARALLAX ─────────────────────────────────────────── */
.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.px-obj {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  --px-y: 0px;
  --px-rot: 0deg;
  transform: translate3d(0, var(--px-y), 0) rotate(var(--px-rot));
  aspect-ratio: 1 / 1;
}
.px-obj svg { width: 100%; height: 100%; overflow: visible; }
.px-paddle { aspect-ratio: 200 / 320; }
.ball-acid { color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .px-obj { transform: rotate(var(--px-rot, 0deg)) !important; }
  .ticker-track { animation: none !important; }
}

/* ─── PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(214,242,74,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #1d1d1a, #0a0a09);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(214,242,74,0.5);
  border: 1px solid rgba(214,242,74,0.15);
  position: relative;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(214,242,74,0.18);
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 22px;
  border-radius: 0;
  border: 2px solid var(--accent);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}
.btn-primary.large { padding: 20px 32px; font-size: 14px; }
.btn-primary.huge { padding: 26px 40px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 20px;
  border: 2px solid var(--ink);
  transition: all .2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ─── EYEBROWS / SECTION HEADS ────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
h1, h2 { font-family: var(--display); font-weight: 400; line-height: 0.92; letter-spacing: 0.005em; text-transform: uppercase; }
h2 { font-size: clamp(48px, 12vw, 132px); }

.section-head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
}

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--pad-x);
  background: linear-gradient(180deg, rgba(11,11,11,0.85), rgba(11,11,11,0));
  transition: background .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo-mark { color: var(--accent); font-size: 22px; }
.logo-amp {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 700;
  opacity: 0.5;
  padding: 0 4px;
  font-size: 16px;
}

.nav-toggle {
  position: relative;
  z-index: 110;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-105%);
  transition: transform .4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 90;
  border-bottom: 2px solid var(--accent);
}
.nav-links.open { transform: translateY(0); }
.nav-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--rule);
}
.nav-cta-li { margin-top: 24px; }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  background: var(--accent);
  color: var(--bg) !important;
  padding: 12px 18px !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  border: 2px solid var(--accent);
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg);
  overflow: hidden;
  padding: 120px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: -8% -2% -8% -2%;
  z-index: 0;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(214,242,74,0.05) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #1a1a18 0%, #0b0b0a 100%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(214,242,74,0.5);
  border: none;
}
.hero-img::before { display: none; }
.hero-img-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  margin: 0;
  padding: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.85) 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(214,242,74,0.3);
  border-radius: 999px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(96px, 26vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-sub {
  max-width: 50ch;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  width: 100%;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--accent);
}
.hero-stat {
  padding: 18px 12px 6px;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1;
  color: var(--accent);
}
.hero-stat span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── TICKER ───────────────────────────────────────────── */
.ticker {
  background: var(--accent);
  color: var(--bg);
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-33.333%); } }

/* ─── MANIFESTO ────────────────────────────────────────── */
.manifesto {
  position: relative;
  padding: var(--section-pad-y) var(--pad-x);
  background: var(--bg-soft);
  overflow: hidden;
}
.manifesto-inner { position: relative; z-index: 2; }
.manifesto-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.manifesto-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--accent);
  overflow: hidden;
}
.manifesto-photo .img-placeholder { border: none; }
.manifesto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto-title {
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.manifesto-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.manifesto-body p + p { margin-top: 18px; }

/* ─── PROGRAMS ─────────────────────────────────────────── */
.programs {
  padding: var(--section-pad-y) 0;
  background: var(--bg);
}
.program-list {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.program-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--rule);
  transition: background .25s ease;
  position: relative;
}
.program-item:hover { background: var(--bg-soft); }
.program-item:hover .program-arrow { transform: translateX(8px); color: var(--accent); }
.program-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
}
.program-item h3 {
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-weight: 400;
}
.program-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}
.program-arrow {
  font-size: 28px;
  color: var(--ink-soft);
  transition: transform .25s ease, color .25s ease;
}

/* ─── BIG STATS ────────────────────────────────────────── */
.bigstats {
  background: var(--accent);
  color: var(--bg);
  padding: 56px var(--pad-x);
}
.bigstats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bigstat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bigstat-num {
  font-family: var(--display);
  font-size: clamp(56px, 14vw, 120px);
  line-height: 0.9;
  letter-spacing: 0;
}
.bigstat-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* ─── MEMBERSHIP ───────────────────────────────────────── */
.membership {
  padding: var(--section-pad-y) 0;
  background: var(--bg);
}
.tier-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  gap: 16px;
}
.tier {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease;
}
.tier:hover { border-color: var(--accent); }
.tier.featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.tier-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--accent-warm);
  color: var(--bg);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier-name {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.tier.featured .tier-price { border-color: rgba(11,11,11,0.2); }
.dollar { font-family: var(--display); font-size: 22px; opacity: 0.7; }
.amount { font-family: var(--display); font-size: 64px; line-height: 1; }
.period {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 6px;
  opacity: 0.7;
}
.invite { font-family: var(--display); font-size: 32px; font-style: normal; }
.tier-features { flex: 1; margin-bottom: 24px; }
.tier-features li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--rule);
}
.tier.featured .tier-features li { border-color: rgba(11,11,11,0.15); }
.bullet { color: var(--accent); font-weight: 800; }
.tier.featured .bullet { color: var(--bg); }
.tier-cta {
  text-align: center;
  padding: 14px;
  border: 2px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.tier-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier-cta.filled {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}
.tier-cta.filled:hover { background: var(--accent-warm); color: var(--bg); border-color: var(--accent-warm); }

/* ─── TESTIMONIAL ──────────────────────────────────────── */
.testimonial {
  position: relative;
  padding: 100px var(--pad-x);
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.testimonial > *:not(.parallax-layer) { position: relative; z-index: 2; }
.quote-mark {
  font-family: var(--display);
  font-size: 140px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 8px;
}
.testimonial blockquote {
  max-width: 30ch;
  margin: 0 auto 32px;
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
.byline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.byline-name { color: var(--accent); font-weight: 700; }
.byline-sep { color: var(--muted); }
.byline-role { color: var(--muted); }

/* ─── COURTS ───────────────────────────────────────────── */
.courts {
  position: relative;
  padding: var(--section-pad-y) var(--pad-x);
  background: var(--bg-soft);
  overflow: hidden;
}
.courts-grid { position: relative; z-index: 2; }
.courts-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.courts-text > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 18px 0 24px;
}
.courts-list {
  margin: 0 0 28px;
  border-top: 1px solid var(--rule);
}
.courts-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.courts-list li span { color: var(--accent); width: 14px; flex-shrink: 0; }

.courts-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.courts-photo {
  position: relative;
  aspect-ratio: 16 / 11;
  border: 2px solid var(--accent);
  overflow: hidden;
}
.courts-photo .img-placeholder { border: none; }
.courts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.courts-card {
  background: var(--bg);
  border: 2px solid var(--accent);
  padding: 0;
}
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  gap: 14px;
}
.card-row:last-child { border-bottom: none; }
.card-row-highlight { background: var(--accent); color: var(--bg); }
.card-row-highlight .card-k { color: var(--bg); opacity: 0.7; }
.card-k {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.card-row strong {
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent);
}
.card-row-highlight strong { color: var(--bg); }

/* ─── CTA ──────────────────────────────────────────────── */
.cta {
  position: relative;
  background: var(--bg);
  padding: 130px var(--pad-x) 150px;
  overflow: hidden;
  text-align: center;
}
.cta-inner {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(64px, 16vw, 200px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 60px var(--pad-x) 28px;
  border-top: 2px solid var(--accent);
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.logo-mark.big { font-size: 32px; color: var(--accent); }
.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  max-width: 32ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.footer-h {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-cols p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footer-cols p + p { margin-top: 12px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: center;
}

/* ─── TABLET ───────────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --pad-x: 32px; --section-pad-y: 110px; }
  .bigstats-inner { grid-template-columns: repeat(4, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .ticker-row { font-size: 32px; gap: 32px; padding-right: 32px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; padding: 0 var(--pad-x); }
}

/* ─── DESKTOP ──────────────────────────────────────────── */
@media (min-width: 980px) {
  :root { --pad-x: 56px; --section-pad-y: 140px; }
  .nav { padding: 20px var(--pad-x); }
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    margin-left: auto;
    border-bottom: none;
  }
  .nav-links a {
    padding: 0;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
    color: var(--ink-soft);
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta-li { margin-top: 0; margin-left: 8px; }

  .hero { padding: 0 var(--pad-x); padding-bottom: 0; }
  .hero-content { padding-top: 80px; }
  .hero-stats { margin: 80px auto 64px; }

  .ticker-row { font-size: 36px; gap: 40px; padding-right: 40px; }

  .manifesto-inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .program-item {
    grid-template-columns: 80px 1fr 2fr 60px;
    gap: 32px;
    align-items: center;
    padding: 40px var(--pad-x);
  }
  .program-item p { margin: 0; }
  .program-arrow { justify-self: end; }

  .tier-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--maxw); }

  .courts-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
  }
}

@media (min-width: 1280px) {
  :root { --section-pad-y: 160px; }
}
