/* ──────────────────────────────────────────────
   HOOPS TRIVIA — WAITLIST LANDING
   Sports-editorial. Paper, ink, single orange.
   ────────────────────────────────────────────── */

:root {
  --paper:       #F2EEE5;
  --paper-2:     #E9E3D5;
  --paper-edge:  #D9D2C0;
  --ink:         #111111;
  --ink-2:       #2A2724;
  --ink-3:       #5A544A;
  --orange:      #E85D1E;
  --orange-2:    #FF7A3D;
  --court:       #10523A;
  --crimson:     #B5311A;

  --font-display: 'Anton', 'Helvetica Neue Condensed Bold', 'Arial Narrow', sans-serif;
  --font-body:    'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-mono:    'IBM Plex Mono', 'JetBrains Mono', 'Menlo', monospace;
}

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

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 100;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input  { font-family: inherit; }

/* halftone paper grain */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(17,17,17,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* ── Type system ──────────────────────────── */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.86;
}
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Layout ───────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; z-index: 2; }

/* ── NAV ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}
.wordmark .ball {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
}
.wordmark .ball::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 49%, rgba(0,0,0,0.4) 49%, rgba(0,0,0,0.4) 51%, transparent 51%),
    linear-gradient(to right,  transparent 49%, rgba(0,0,0,0.4) 49%, rgba(0,0,0,0.4) 51%, transparent 51%);
  border-radius: 50%;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
}
.nav-link:hover { color: var(--orange); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.kicker .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker .pill .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.kicker .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 168px);
  text-transform: uppercase;
  line-height: 0.84;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  right: -10px; bottom: 8%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero-sub b { color: var(--ink); font-weight: 600; }

/* form */
.waitlist {
  display: flex;
  border: 1.5px solid var(--ink);
  background: #fff;
  max-width: 480px;
  margin-bottom: 18px;
  position: relative;
}
.waitlist input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 18px;
  font-size: 15px;
  background: transparent;
}
.waitlist button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.15s ease;
}
.waitlist button:hover { background: var(--orange-2); }
.waitlist button.is-done { background: var(--court); }

.waitlist-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.waitlist-meta .avatars {
  display: flex;
}
.waitlist-meta .avatars span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: var(--ink-3);
  margin-left: -6px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 9px;
  color: rgba(255,255,255,0.85);
}
.waitlist-meta .avatars span:first-child { margin-left: 0; }
.waitlist-meta .avatars span:nth-child(1) { background: #E85D1E; }
.waitlist-meta .avatars span:nth-child(1)::before { content: 'JT'; }
.waitlist-meta .avatars span:nth-child(2) { background: #10523A; }
.waitlist-meta .avatars span:nth-child(2)::before { content: 'MK'; }
.waitlist-meta .avatars span:nth-child(3) { background: #B5311A; }
.waitlist-meta .avatars span:nth-child(3)::before { content: 'DR'; }
.waitlist-meta .avatars span:nth-child(4) { background: #3B4D8A; }
.waitlist-meta .avatars span:nth-child(4)::before { content: 'AL'; }

/* hero stats card */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  margin-top: 40px;
  background: #fff;
}
.hero-stats .stat {
  padding: 18px 20px;
  position: relative;
}
.hero-stats .stat + .stat { border-left: 1px solid rgba(17,17,17,0.2); }
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}
.hero-stats .stat .lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

/* hero visual — phone */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.court-arc {
  position: absolute;
  width: 720px; height: 720px;
  right: -180px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.phone {
  width: 320px;
  aspect-ratio: 390 / 844;
  background: #111;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(17,17,17,0.25), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone::before {
  /* dynamic island — border-radius set past half the height on
     purpose so it stays a full pill/capsule at any scaled size
     below, without needing to recompute the radius per breakpoint */
  content: ''; position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  background: var(--paper);
  border-radius: 34px;
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
.phone.tilt-r { transform: rotate(3deg); }

/* mini phone screens */
.mini-home {
  padding: 48px 18px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mini-home .mh-meta {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.mini-home h2 {
  font-family: var(--font-display);
  font-size: 60px;
  text-transform: uppercase;
  line-height: 0.84;
  margin-bottom: 12px;
}
.mini-home h2 em { font-style: normal; color: var(--orange); }
.mini-home p {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.4;
  margin-bottom: 14px;
}
.mini-home .start {
  background: var(--orange);
  color: #fff;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.mini-home .stats3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
}
.mini-home .stats3 .s {
  padding: 4px;
}
.mini-home .stats3 .s + .s { border-left: 1px solid rgba(17,17,17,0.2); }
.mini-home .stats3 .n { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.mini-home .stats3 .l { font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.14em; color: var(--ink-3); margin-top: 2px; }

/* ── MARQUEE strip ────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee-track span:nth-child(odd) { color: var(--paper); }
.marquee-track span:nth-child(even) { color: var(--orange); }
.marquee-track .ball-dot {
  display: inline-block;
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION HEADER ───────────────────────── */
.section-head {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 40px;
}
.section-head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 0.86;
}
.section-head h2 em { font-style: normal; color: var(--orange); }
.section-head .lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ── HOW IT WORKS ─────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
}
.step {
  padding: 32px;
  position: relative;
}
.step + .step { border-left: 1.5px solid var(--ink); }
.step .num {
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 0.84;
  color: var(--orange);
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ── PREVIEW STRIP (3 phones) ─────────────── */
.preview {
  padding: 60px 0;
}
.preview-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-card .mini-phone {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 390 / 844;
  background: #111;
  border-radius: 38px;
  padding: 8px;
  margin-bottom: 18px;
  box-shadow: 0 20px 48px rgba(17,17,17,0.18);
  position: relative;
}
.preview-card .mini-phone::before {
  content: ''; position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 3;
}
.preview-card .mini-phone .screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.preview-card .caption {
  text-align: center;
}
.preview-card .caption .lbl {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.preview-card .caption .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* board preview tiny */
.mini-board {
  padding: 40px 10px 10px;
  height: 100%;
  display: flex; flex-direction: column;
}
.mini-scoreboard {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 6px 8px;
  margin-bottom: 6px;
}
.mini-scoreboard .t {
  display: flex; flex-direction: column;
}
.mini-scoreboard .t .nm {
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1;
  color: rgba(255,255,255,0.7);
}
.mini-scoreboard .t .sc {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.mini-scoreboard .t.r { text-align: right; }
.mini-scoreboard .vs {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--orange);
  padding: 0 6px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  flex: 1;
}
.mini-col { display: flex; flex-direction: column; gap: 3px; }
.mini-col .hd {
  background: #fff;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 6px;
  text-align: center;
  padding: 4px 2px;
  position: relative;
  height: 24px;
  display: grid; place-items: center;
}
.mini-col .hd::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cc, var(--orange));
}
.mini-col .sl {
  background: #fff;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  display: grid; place-items: center;
  flex: 1;
}
.mini-col .sl.win { background: var(--court); color: #fff; }
.mini-col .sl.lose { background: var(--ink); color: var(--paper); }

/* question preview */
.mini-question {
  padding: 40px 14px 16px;
  height: 100%;
  display: flex; flex-direction: column;
}
.mini-question .q-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.mini-question .q-cat {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.mini-question .q-pts {
  background: var(--ink);
  color: var(--paper);
  padding: 2px 8px;
  font-family: var(--font-display);
  font-size: 16px;
}
.mini-question .q-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.mini-question .q-opts {
  display: flex; flex-direction: column; gap: 5px;
}
.mini-question .q-opt {
  display: flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--ink);
  padding: 7px 8px;
  font-size: 10px;
}
.mini-question .q-opt .ltr {
  width: 16px; height: 16px;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 10px;
  flex-shrink: 0;
}
.mini-question .q-opt.sel { background: var(--ink); color: var(--paper); }
.mini-question .q-opt.sel .ltr { background: var(--orange); color: #fff; border-color: var(--orange); }
.mini-question .q-opt.cor { background: var(--court); color: #fff; border-color: var(--court); }
.mini-question .q-opt.cor .ltr { background: #fff; color: var(--court); border-color: #fff; }

/* ── PERKS ────────────────────────────────── */
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  background: #fff;
}
.perk {
  padding: 32px;
  position: relative;
  display: flex;
  gap: 20px;
}
.perk:nth-child(odd) { border-right: 1.5px solid var(--ink); }
.perk:not(:nth-last-child(-n+2)) { border-bottom: 1.5px solid var(--ink); }
.perk .pic {
  width: 56px; height: 56px;
  background: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
}
.perk.alt .pic { background: var(--court); }
.perk.alt-2 .pic { background: var(--ink); color: var(--orange); }
.perk h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.perk p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.perk .badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-2);
  padding: 4px 8px;
  border: 1px solid var(--ink);
}

/* ── CATEGORIES ───────────────────────────── */
.cats {
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.cat {
  display: grid;
  grid-template-columns: 60px 1fr auto 60px;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  border-top: 1px solid rgba(17,17,17,0.15);
  transition: background 0.2s ease;
}
.cat:first-child { border-top: none; }
.cat:hover { background: var(--paper-2); }
.cat .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.cat .nm {
  display: flex; align-items: center; gap: 14px;
}
.cat .stripe {
  width: 28px; height: 6px;
  background: var(--cc, var(--orange));
}
.cat .nm .lbl {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}
.cat .nm .desc {
  font-size: 14px;
  color: var(--ink-3);
  display: block;
  margin-top: 4px;
}
.cat .qty {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.cat .icn {
  display: grid; place-items: center;
}

/* ── FAQ ──────────────────────────────────── */
.faq {
  border: 1.5px solid var(--ink);
  background: #fff;
}
.faq-item {
  border-bottom: 1px solid rgba(17,17,17,0.15);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 18px;
  cursor: pointer;
  align-items: start;
}
.faq-item:last-child { border-bottom: none; }
.faq-item .qn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-top: 4px;
}
.faq-item .q {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
}
.faq-item .a {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
}
.faq-item.open .a { max-height: 300px; margin-top: 14px; }
.faq-item .plus {
  width: 32px; height: 32px;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: ''; position: absolute;
  background: var(--ink);
}
.faq-item .plus::before { width: 12px; height: 2px; }
.faq-item .plus::after  { width: 2px; height: 12px; transition: transform 0.2s ease; }
.faq-item.open .plus::after { transform: rotate(90deg); }

/* ── BIG CTA ──────────────────────────────── */
.cta {
  margin-top: 80px;
  background: var(--ink);
  color: var(--paper);
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.cta .grain {
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  position: absolute;
  mix-blend-mode: normal;
  opacity: 1;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta .kicker .pill { background: var(--orange); color: #fff; }
.cta .kicker .meta { color: rgba(255,255,255,0.5); }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 144px);
  text-transform: uppercase;
  line-height: 0.84;
  margin-bottom: 24px;
}
.cta h2 em { font-style: normal; color: var(--orange); }
.cta .lead {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(242,238,229,0.7);
  margin-bottom: 32px;
}
.cta .waitlist {
  background: var(--paper);
  border-color: var(--paper);
  max-width: 540px;
}
.cta-arc {
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--paper);
  padding: 40px 0 60px;
  border-top: 1.5px solid var(--ink);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 20px;
}
footer .links { display: flex; gap: 24px; }
footer a {
  color: var(--ink-3);
  text-decoration: none;
}
footer a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024) · Mobile (≤768) · Small (≤480)
   ══════════════════════════════════════════════════════════ */

/* ── TABLET ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 12px 24px; }
  .nav-links { gap: 18px; }
  .nav-link { font-size: 10px; }

  .hero { padding: 48px 0 64px; }
  .hero-grid { gap: 32px; }
  .hero-title { font-size: clamp(64px, 10vw, 120px); }
  .hero-sub { font-size: 16px; }
  .hero-visual { min-height: 520px; }
  .phone { width: 280px; }
  .phone::before { width: 88px; height: 24px; top: 16px; }

  .preview-rail { gap: 20px; }
  .preview-card .mini-phone { max-width: 240px; }

  .section-head { padding: 60px 0 32px; gap: 32px; }
  .section-head h2 { font-size: clamp(40px, 6vw, 72px); }

  .step { padding: 24px; }
  .step .num { font-size: 110px; }
  .step h3 { font-size: 26px; }

  .perk { padding: 24px; }
  .perk h3 { font-size: 20px; }

  .cat { padding: 20px 14px; gap: 18px; }
  .cat .nm .lbl { font-size: 28px; }

  .faq-item { padding: 20px 22px; grid-template-columns: 56px 1fr 28px; }
  .faq-item .q { font-size: 19px; }

  .cta { padding: 80px 24px 64px; }
  .cta h2 { font-size: clamp(56px, 8vw, 112px); }
}

/* ── MOBILE NAV TRIGGER ─────────────────────────────────── */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: var(--ink);
  border: none;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle::before, .nav-toggle::after,
.nav-toggle span {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle::before { top: 13px; }
.nav-toggle span    { top: 19px; }
.nav-toggle::after  { top: 25px; }
body.menu-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span    { opacity: 0; }
body.menu-open .nav-toggle::after  { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE — ≤768px ────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* nav becomes a drawer */
  .nav-inner { padding: 12px 20px; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 0;
    border-top: 1.5px solid var(--ink);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 40;
  }
  body.menu-open .nav-links { transform: translateY(0); }
  .nav-links .nav-link {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(17,17,17,0.15);
    color: var(--ink);
  }
  .nav-links .nav-cta {
    margin-top: 24px;
    padding: 16px;
    font-size: 12px;
    background: var(--orange);
  }
  .nav-toggle { display: block; }

  /* hero */
  .hero { padding: 32px 0 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kicker { flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .kicker .meta { font-size: 10px; }
  .hero-title { font-size: clamp(56px, 14vw, 88px); margin-bottom: 20px; }
  .hero-title em::after { width: 10px; height: 10px; right: -8px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; max-width: 100%; }

  .waitlist { flex-direction: column; max-width: 100%; }
  .waitlist input { padding: 16px; font-size: 16px; border-bottom: 1px solid var(--ink); }
  .waitlist button { padding: 14px; width: 100%; justify-content: center; font-size: 20px; }

  .waitlist-meta { flex-wrap: wrap; font-size: 9px; gap: 10px; }

  .hero-stats { grid-template-columns: 1fr; margin-top: 28px; }
  .hero-stats .stat + .stat {
    border-left: none;
    border-top: 1px solid rgba(17,17,17,0.2);
  }
  .hero-stats .stat .num { font-size: 36px; }

  /* phone visual — show it centered, smaller */
  .hero-visual {
    min-height: 0;
    padding: 12px 0;
    order: 2;
  }
  .court-arc {
    width: 480px; height: 480px;
    left: 50%; right: auto; top: 50%;
    transform: translate(-50%, -50%);
  }
  .phone { width: 240px; transform: rotate(-2deg); }
  .phone.tilt-r { transform: rotate(2deg); }
  .phone::before { width: 75px; height: 21px; top: 14px; }

  /* marquee — smaller text, and a faster loop so it doesn't crawl
     now that the (shorter) track covers less distance per lap */
  .marquee { padding: 14px 0; }
  .marquee-track { font-size: 26px; gap: 40px; animation-duration: 20s; }
  .marquee-track .ball-dot { width: 16px; height: 16px; }

  /* section heads stack */
  .section-head {
    grid-template-columns: 1fr;
    padding: 56px 0 28px;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-head h2 { font-size: clamp(44px, 12vw, 72px); }
  .section-head .lead { font-size: 15px; }

  /* steps stack */
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: none; border-top: 1.5px solid var(--ink); }
  .step { padding: 24px 20px; }
  .step .num { font-size: 88px; margin-bottom: 12px; }
  .step h3 { font-size: 26px; }

  /* preview rail — horizontal scroll on mobile is more elegant than stack */
  .preview-rail {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
  }
  .preview-rail::-webkit-scrollbar { display: none; }
  .preview-card {
    scroll-snap-align: center;
    flex: 0 0 75%;
    min-width: 240px;
  }
  .preview-card .mini-phone { max-width: 100%; }

  /* perks stack */
  .perks { grid-template-columns: 1fr; }
  .perk:nth-child(odd) { border-right: none; }
  .perk:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid var(--ink) !important;
  }
  .perk { padding: 22px 20px; gap: 16px; }
  .perk .pic { width: 44px; height: 44px; }
  .perk .pic svg { width: 22px; height: 22px; }
  .perk h3 { font-size: 20px; }
  .perk p { font-size: 13px; }
  .perk .badge {
    position: static;
    align-self: flex-start;
    margin-top: 8px;
    font-size: 8px;
    padding: 3px 6px;
  }
  .perk > div { display: flex; flex-direction: column; }

  /* categories */
  .cat {
    grid-template-columns: 30px 1fr auto;
    gap: 14px;
    padding: 18px 12px;
    align-items: center;
  }
  .cat .icn { display: none; }
  .cat .nm { gap: 10px; }
  .cat .stripe { width: 18px; height: 4px; }
  .cat .nm .lbl { font-size: 22px; }
  .cat .nm .desc { font-size: 12px; line-height: 1.4; }
  .cat .qty { font-size: 9px; letter-spacing: 0.12em; }

  /* faq */
  .faq-item {
    grid-template-columns: 1fr 28px;
    gap: 14px;
    padding: 18px 18px;
  }
  .faq-item .qn { display: none; }
  .faq-item .q { font-size: 18px; }
  .faq-item .a { font-size: 14px; }
  .faq-item .plus { width: 28px; height: 28px; }

  /* big CTA */
  .cta {
    margin-top: 56px;
    padding: 64px 20px 56px;
  }
  .cta h2 { font-size: clamp(64px, 14vw, 96px); margin-bottom: 20px; }
  .cta .lead { font-size: 16px; margin-bottom: 24px; }
  .cta-arc { width: 480px; height: 480px; right: -180px; opacity: 0.25; }

  /* footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 9px;
  }
  footer .links { flex-wrap: wrap; gap: 14px; }
}

/* ── SMALL MOBILE — ≤480px ──────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 10px 16px; }
  .wordmark { font-size: 18px; }
  .wordmark .ball { width: 20px; height: 20px; }

  .hero-title { font-size: clamp(48px, 15vw, 72px); line-height: 0.88; }
  .hero-sub { font-size: 15px; }

  .marquee-track { font-size: 20px; gap: 28px; animation-duration: 15s; }
  .marquee-track .ball-dot { width: 12px; height: 12px; }

  .section-head h2 { font-size: clamp(40px, 13vw, 64px); }

  .step .num { font-size: 72px; }
  .step h3 { font-size: 22px; }

  .preview-card { flex-basis: 82%; }

  .cat { grid-template-columns: 1fr auto; padding: 16px 10px; }
  .cat .num { display: none; }

  .cta { padding: 48px 16px 48px; }
  .cta h2 { font-size: clamp(56px, 16vw, 80px); }

  .phone { width: 242px; }
}

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .kicker .pill .dot { animation: none; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger — cards that reveal as a set */
.steps .step:nth-child(2) { transition-delay: 0.08s; }
.steps .step:nth-child(3) { transition-delay: 0.16s; }

.preview-rail .preview-card:nth-child(2) { transition-delay: 0.1s; }
.preview-rail .preview-card:nth-child(3) { transition-delay: 0.2s; }

.perks .perk:nth-child(2) { transition-delay: 0.08s; }
.perks .perk:nth-child(3) { transition-delay: 0.16s; }
.perks .perk:nth-child(4) { transition-delay: 0.24s; }

.cats .cat:nth-child(2) { transition-delay: 0.06s; }
.cats .cat:nth-child(3) { transition-delay: 0.12s; }
.cats .cat:nth-child(4) { transition-delay: 0.18s; }
.cats .cat:nth-child(5) { transition-delay: 0.24s; }

.faq .faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq .faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq .faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq .faq-item:nth-child(5) { transition-delay: 0.2s; }
.faq .faq-item:nth-child(6) { transition-delay: 0.25s; }

/* ── HOVER / TAP MICRO-INTERACTIONS ────────────────────── */
.step {
  transition: background 0.25s ease;
}
.step:hover { background: var(--paper-2); }
.step .num { transition: color 0.25s ease; }
.step:hover .num { color: var(--orange-2); }

.perk { transition: background 0.25s ease; }
.perk:hover { background: var(--paper-2); }

.cat { transition: background 0.2s ease, transform 0.2s ease; }
.cat:hover { transform: translateX(4px); }

.faq-item { transition: background 0.2s ease; }
.faq-item:hover { background: var(--paper-2); }
.faq-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
  background: var(--paper-2);
}

.preview-card .mini-phone { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.preview-card:hover .mini-phone { transform: translateY(-8px); }

.waitlist button { transition: background 0.15s ease, transform 0.15s ease; }
.waitlist button:active { transform: scale(0.96); }

.nav-cta { transition: background 0.2s ease, transform 0.15s ease; }
.nav-cta:hover { background: var(--orange); }
.nav-cta:active { transform: scale(0.96); }

.nav-link, footer a, .legal-toc a, .legal-content a {
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* ── ACCESSIBILITY UTILITIES ───────────────────────────── */
.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;
}

/* Honeypot: hidden from sighted users AND assistive tech (unlike
   .sr-only, which stays available to screen readers on purpose).
   Off-screen via position, not display:none/visibility:hidden, since
   naive bots that only fill visible-looking inputs are more likely
   to still fill this one in. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── FORM VALIDATION STATES ───────────────────────────── */
.waitlist input.is-error {
  border-color: var(--crimson);
  background: #FFF5F3;
  animation: shake 0.4s ease;
}
.waitlist input:disabled {
  background: var(--paper-2);
  color: var(--ink-3);
  cursor: not-allowed;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── LEGAL PAGES ──────────────────────────────────────── */
.legal-content {
  max-width: 720px;
}
.legal-content .legal-updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 40px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  padding: 6px 0 6px 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.legal-content a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.legal-content a:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
}

/* ── CONTACT GRID ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  margin: 32px 0;
  background: #fff;
}
.contact-card {
  padding: 28px;
  position: relative;
}
.contact-card:nth-child(odd) {
  border-right: 1.5px solid var(--ink);
}
.contact-card:nth-child(-n+2) {
  border-bottom: 1.5px solid var(--ink);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.contact-email {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.contact-email:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card:nth-child(odd) {
    border-right: none;
  }
  .contact-card:nth-child(-n+2) {
    border-bottom: none;
  }
  .contact-card:not(:last-child) {
    border-bottom: 1.5px solid var(--ink);
  }
  .contact-card { padding: 22px 20px; }
}

/* ── SHARED WORDMARK / FOOTER STATES ──────────────────── */
.wordmark-link { text-decoration: none; color: inherit; }
.footer-wordmark { font-size: 16px; }
.footer-ball { width: 18px; height: 18px; }

/* ── STATIC / LEGAL PAGE HERO ──────────────────────────── */
.legal-hero { padding: 80px 0 120px; }
.legal-head { grid-template-columns: 1fr; margin-bottom: 40px; }
.contact-note { margin-top: 40px; color: var(--ink-3); font-size: 14px; }

/* ── SECTION PADDING (categories / faq) ────────────────── */
#categories { padding-top: 80px; }
#faq { padding-top: 80px; padding-bottom: 40px; }
#faq .section-head { margin-bottom: 32px; }

.mh-title-sm { font-size: 48px; }

/* ── 404 / ERROR PAGE ──────────────────────────────────── */
.error-section { padding: 120px 0; text-align: center; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  text-transform: uppercase;
  line-height: 0.84;
  color: var(--orange);
}
.error-message {
  font-size: 20px;
  color: var(--ink-2);
  margin: 24px auto 40px;
  max-width: 480px;
}
.error-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ── LEGAL PAGE "ON THIS PAGE" JUMP NAV ────────────────── */
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 18px 20px;
  border: 1.5px solid var(--ink);
  background: #fff;
  margin-bottom: 40px;
}
.legal-toc .toc-label {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.legal-toc a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.legal-toc a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
