/* ScoreBox product site. Tokens mirror app/src/theme.ts in the scorebox repo:
   bg 0-4, ink 0-3, amber accent #ffb142, Archivo display / Inter body /
   JetBrains Mono. Keep those in sync if the app palette ever changes.
   One deliberate divergence: --ink3 is lightened from the app's #6b7180 to
   pass WCAG AA (4.5:1) for small text on the web; the app value survives as
   --dim for large display type only. */

/* ------------------------------ fonts ------------------------------ */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-var.woff2') format('woff2');
  font-weight: 100 800;
  font-display: swap;
}

/* ------------------------------ tokens ----------------------------- */
:root {
  --bg0: #050609;
  --bg1: #0b0d12;
  --bg2: #13161d;
  --bg3: #1c2029;
  --bg4: #272c37;
  --ink0: #ffffff;
  --ink1: #e5e7ed;
  --ink2: #a4aab6;
  --ink3: #828a9b;
  --dim: #6b7180;
  --line1: rgba(255, 255, 255, 0.06);
  --line2: rgba(255, 255, 255, 0.12);
  --line3: rgba(255, 255, 255, 0.22);
  --accent: #ffb142;
  --accent-ink: #1a0e00;
  --live-fg: #ffd28a;
  --live-bg: rgba(255, 177, 66, 0.14);
  --live-border: rgba(255, 177, 66, 0.45);
  --matched-fg: #86efac;
  --matched-bg: rgba(74, 222, 128, 0.1);
  --matched-border: rgba(74, 222, 128, 0.32);
  --card-grad: linear-gradient(157deg, #1b1f28 0%, #14171f 64%, #10131a 100%);
  --card-border: rgba(255, 255, 255, 0.09);
  --card-border-focus: rgba(255, 255, 255, 0.2);
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Ambient bloom colors, swapped per section (mirrors the app's dynamic
     background that tints to the highlighted card). */
  --amb-a: rgba(255, 177, 66, 0.16);
  --amb-b: rgba(255, 177, 66, 0.06);
}
body[data-ambient='match'] {
  --amb-a: rgba(74, 222, 128, 0.1);
  --amb-b: rgba(255, 177, 66, 0.06);
}
body[data-ambient='team'] {
  --amb-a: rgba(31, 74, 158, 0.22);
  --amb-b: rgba(4, 106, 56, 0.16);
}
body[data-ambient='quiet'] {
  --amb-a: rgba(255, 255, 255, 0.045);
  --amb-b: rgba(255, 177, 66, 0.03);
}

/* ------------------------------ base ------------------------------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* Anchor targets stop clear of the fixed nav. */
[id] {
  scroll-margin-top: 88px;
}
/* Section panels carry 130px of their own top padding, which already clears
   the nav — a negative margin tucks that padding under it so the heading
   lands near the top of the viewport instead of a third of the way down. */
section[id] {
  scroll-margin-top: -22px;
}
body {
  margin: 0;
  background: var(--bg0);
  color: var(--ink1);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 18% -8%, var(--amb-a), transparent 65%),
    radial-gradient(900px 640px at 92% 110%, var(--amb-b), transparent 65%);
  transition: background 1.1s ease;
  pointer-events: none;
}
.grid-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(1200px 900px at 50% 18%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(1200px 900px at 50% 18%, #000 30%, transparent 85%);
  pointer-events: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow {
  max-width: 780px;
}
.center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--ink0);
  line-height: 1.06;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
}
h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
}
h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}
h1 .dim {
  color: var(--dim);
}
p {
  margin: 0 0 16px;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
:focus-visible {
  outline: 2px solid var(--ink0);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 18px;
}
.lead {
  font-size: 19px;
  color: var(--ink2);
  max-width: 620px;
}
.lead.narrow {
  max-width: 680px;
}
.aside {
  color: var(--ink3);
  max-width: 640px;
  margin-top: 26px;
}

/* Every section header block is centered so the page stays symmetric at any
   viewport width (the hero keeps its two-column left-aligned layout). Grids
   and card rows below the headers span the container, so they center
   themselves. */
.panel:not(.hero) .container > .eyebrow,
.panel:not(.hero) .container > h2 {
  text-align: center;
}
.panel:not(.hero) .container > .lead,
.panel:not(.hero) .container > .aside {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.fine {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.6;
}
.mono {
  font-family: var(--mono);
}
.quiet-link {
  color: var(--ink2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quiet-link:hover {
  color: var(--ink0);
}

/* ------------------------------- nav ------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(5, 6, 9, 0.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line1);
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink0);
  letter-spacing: -0.01em;
}
.wordmark span {
  color: var(--accent);
}
.wordmark:hover {
  text-decoration: none;
}

.nav-dots {
  display: flex;
  align-items: center;
}
.nav-dots a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink3);
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 0;
}
.nav-dots a:hover {
  color: var(--ink1);
  text-decoration: none;
}
.nav-dots a + a::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--line2);
  margin: 0 10px;
}
.nav-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--ink3);
  transition: all 0.25s ease;
}
.nav-dots a.active {
  color: var(--ink0);
}
.nav-dots a.active i {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 177, 66, 0.6);
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink0);
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 10px 22px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  background: var(--bg4);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover {
  /* web-only hover; derived from the accent token rather than a new hex */
  background: color-mix(in srgb, var(--accent) 86%, white);
}

/* ------------------------------ panels ----------------------------- */
.panel {
  padding: 130px 0;
  position: relative;
}
.panel.hero {
  padding: 170px 0 140px;
  /* clamp keeps a huge monitor (or a tall headless capture) from inflating
     the hero into a screenful of empty space */
  min-height: clamp(560px, 92vh, 900px);
  display: flex;
  align-items: center;
}

/* Scroll reveal — only hidden when JS is present (html.js); without JS the
   page renders fully visible. */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}
.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(26px);
}

/* ------------------------------- hero ------------------------------ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 30px;
}
.chips li {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink2);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.02);
}
.big-chips {
  justify-content: center;
}
.big-chips li {
  font-size: 13.5px;
  padding: 10px 20px;
  color: var(--live-fg);
  border-color: var(--live-border);
  background: var(--live-bg);
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 4px 0 18px;
}
.badge {
  display: block;
  height: 48px;
  width: auto;
}
.store-badges a:hover {
  opacity: 0.85;
}
.hero-fine {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0;
}
.hero-try {
  margin-top: 10px;
  font-size: 13.5px;
}

/* Hero mock: a game card + matched channels, in app design language. The
   carousel (main.js) swaps league/teams/channels and the split-glow colors. */
.hero-mock {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}
.mock-callout {
  position: absolute;
  top: -18px;
  right: -6px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--matched-fg);
  background: color-mix(in srgb, var(--bg1) 86%, #4ade80);
  border: 1px solid var(--matched-border);
  border-radius: 8px;
  padding: 7px 12px;
}
.mock-callout::before {
  content: '✓ ';
}
.mock-stage {
  transition: opacity 0.28s ease;
}
.mock-stage.switching {
  opacity: 0;
}
.mock-card {
  --glow-l: rgba(31, 74, 158, 0.5);
  --glow-r: rgba(4, 106, 56, 0.45);
  position: relative;
  background:
    radial-gradient(90% 130% at 8% 0%, var(--glow-l), transparent 55%),
    radial-gradient(90% 130% at 92% 0%, var(--glow-r), transparent 55%),
    var(--card-grad);
  border: 1px solid var(--card-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 24px 26px 0;
  overflow: hidden;
}
.mock-pills {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink2);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.pill-league {
  background: rgba(0, 0, 0, 0.35);
}
.pill-live {
  color: var(--live-fg);
  background: var(--live-bg);
  border-color: var(--live-border);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pill-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
.pill-matched {
  color: var(--matched-fg);
  background: var(--matched-bg);
  border-color: var(--matched-border);
}
.mock-teams {
  display: grid;
  gap: 16px;
}
.mock-team {
  display: flex;
  align-items: center;
  gap: 14px;
}
.team-mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* National teams render as flags (the app's one non-crest case). */
.team-mark.flag {
  width: 44px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.team-mark.flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* Club teams render as the app's crest fallback: team color + abbreviation. */
.team-mark.crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink0);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.team-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink0);
  flex: 1;
}
.score {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 30px;
  color: var(--ink0);
}
.mock-foot {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
  border-top: 1px solid var(--line1);
  margin: 22px -26px 0;
  padding: 14px 26px;
}
.mock-channels {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.mock-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 13px 18px;
}
.mock-channel .ch-name {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink1);
}
.mock-channel.is-focused {
  border-color: var(--card-border-focus);
  box-shadow: 0 0 0 2px var(--ink0), 0 14px 30px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}
.mock-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.mock-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line3);
  transition: background 0.3s ease;
}
.mock-dots i.on {
  background: var(--accent);
}
/* Entrance cascade once .in lands on the mock */
.js .hero-mock .mock-channel {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .hero-mock.in .mock-channel {
  opacity: 1;
  transform: none;
}
.js .hero-mock.in .mock-channel.is-focused {
  transform: scale(1.02);
}
.js .hero-mock.in .mock-channel:nth-child(1) {
  transition-delay: 0.55s;
}
.js .hero-mock.in .mock-channel:nth-child(2) {
  transition-delay: 0.75s;
}
.js .hero-mock.in .mock-channel:nth-child(3) {
  transition-delay: 0.95s;
}
.js .hero-mock .mock-callout {
  opacity: 0;
  transition: opacity 0.5s ease 1.3s;
}
.js .hero-mock.in .mock-callout {
  opacity: 1;
}
/* Once the carousel starts cycling, channel rows must stay visible without
   the entrance delays. */
.hero-mock.cycling .mock-channel {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}
.hero-mock.cycling .mock-channel.is-focused {
  transform: scale(1.02) !important;
}

/* ------------------------------ cards ------------------------------ */
.card {
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 28px rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  padding: 28px;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 44px 0 60px;
}
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.step p {
  color: var(--ink2);
  font-size: 15.5px;
  margin: 0;
}

/* match diagram */
.match-diagram {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.match-node {
  flex: 1;
  min-width: 200px;
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 20px;
}
.node-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink3);
  margin-bottom: 8px;
}
.node-body {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink1);
  line-height: 1.35;
}
.node-body.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14.5px;
}
.node-hit {
  border-color: var(--live-border);
  background:
    radial-gradient(120% 160% at 50% -20%, rgba(255, 177, 66, 0.16), transparent 60%),
    var(--card-grad);
}
.node-hit .node-body {
  color: var(--live-fg);
}
.match-arrow {
  flex: none;
  width: 42px;
  align-self: center;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--live-border) 0 6px, transparent 6px 11px);
  position: relative;
}
.match-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3.5px;
  border-left: 7px solid var(--live-border);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ---------------------------- screenshots -------------------------- */
.shot-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 28px;
}
.shot-tabs button {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink2);
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.shot-tabs button:hover {
  color: var(--ink0);
  background: var(--bg3);
}
.shot-tabs button[aria-pressed='true'] {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}
.shot-figure {
  margin: 0;
}
.tv-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: var(--bg0);
}
.tv-frame img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease;
}
.tv-frame img.swapping {
  opacity: 0;
}
.shot-caption {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink2);
  text-align: center;
  max-width: 820px;
  margin: 22px auto 0;
  min-height: 1.6em;
}

/* --------------------------- feature grid -------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.feature p {
  color: var(--ink2);
  font-size: 15.5px;
  margin: 0;
}

/* ------------------------------ leagues ---------------------------- */
.league-groups {
  margin-top: 44px;
  border-top: 1px solid var(--line2);
}
.league-row {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line1);
  align-items: baseline;
}
.sport-label {
  flex: 0 0 130px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.league-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.league-pills li {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink1);
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ------------------------------ pricing ---------------------------- */
.price-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 48px;
  /* stretch both columns to equal height so the single price card and the
     two-card free column don't end at different depths */
  align-items: stretch;
}
.price-card {
  padding: 38px;
  display: flex;
  flex-direction: column;
}
/* badges sink to the bottom so the stretched card fills evenly */
.price-card .store-badges {
  margin-top: auto;
}
/* the two free cards split the stretched column height equally */
.free-cards {
  grid-auto-rows: 1fr;
}
.price-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 74px;
  color: var(--ink0);
  line-height: 1;
}
.price-big .currency {
  font-size: 38px;
  vertical-align: 22px;
  color: var(--accent);
}
.price-sub {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 10px 0 24px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.price-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line1);
  color: var(--ink1);
  position: relative;
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
}
.free-cards {
  display: grid;
  gap: 18px;
}
.free-card p {
  color: var(--ink2);
  font-size: 15.5px;
}
.free-card .btn {
  margin: 6px 0 14px;
}
.free-card .fine {
  margin: 0;
}

/* -------------------------------- faq ------------------------------ */
.faq-list {
  margin: 34px auto 0;
  max-width: 860px;
  border-top: 1px solid var(--line2);
}
.faq-list details {
  border-bottom: 1px solid var(--line2);
}
.faq-list summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink0);
  padding: 22px 40px 22px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list details p {
  color: var(--ink2);
  padding: 0 4px 24px;
  margin: 0;
  max-width: 700px;
}

/* ----------------------------- feedback ---------------------------- */
.feedback-band {
  padding: 110px 0;
}
.feedback-band .container {
  text-align: center;
}

/* form (feedback.html) */
.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.form-grid label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink3);
  margin-bottom: 8px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink0);
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 13px 16px;
}
.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 177, 66, 0.35);
}
.form-grid textarea {
  min-height: 160px;
  resize: vertical;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-status {
  font-size: 15.5px;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 14px 0 0;
}
.form-status-ok {
  color: var(--matched-fg);
  background: var(--matched-bg);
  border: 1px solid var(--matched-border);
}
.form-status-err {
  color: #ffb4b4;
  background: rgba(255, 107, 107, 0.14);
  border: 1px solid rgba(255, 107, 107, 0.45);
}

/* ------------------------------ footer ----------------------------- */
.site-footer {
  border-top: 1px solid var(--line1);
  padding: 48px 0 56px;
  background: rgba(5, 6, 9, 0.55);
  text-align: center;
}
.site-footer .fine {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 20px 0;
}
.footer-links a {
  color: var(--ink2);
  font-size: 14.5px;
}
.footer-links a:hover {
  color: var(--ink0);
}

/* ---------------------------- responsive --------------------------- */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-mock {
    max-width: 520px;
  }
  .nav-dots {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
  .match-diagram {
    flex-direction: column;
    gap: 10px;
  }
  .match-arrow {
    width: 1px;
    height: 30px;
    margin: 0 auto;
    background: repeating-linear-gradient(180deg, var(--live-border) 0 6px, transparent 6px 11px);
  }
  .match-arrow::after {
    right: -3.5px;
    top: auto;
    bottom: 0;
    border-top: 7px solid var(--live-border);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: none;
  }
}
@media (max-width: 640px) {
  .panel {
    padding: 90px 0;
  }
  /* Panels have less padding here, so tuck less of it under the nav. */
  section[id] {
    scroll-margin-top: 0;
  }
  .panel.hero {
    padding: 130px 0 90px;
  }
  .nav {
    padding: 12px 16px;
    gap: 12px;
  }
  .nav-cta {
    padding: 9px 14px;
    font-size: 14px;
  }
  .badge {
    height: 42px;
  }
  .form-two {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 28px;
  }
  .league-row {
    flex-direction: column;
    gap: 10px;
  }
  .sport-label {
    flex: none;
  }
}

/* ------------------------- reduced motion -------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal:not(.in),
  .js .hero-mock .mock-channel,
  .js .hero-mock .mock-callout {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pill-live .dot {
    animation: none;
  }
  .ambient {
    transition: none;
  }
}

/* ------------------------------ print ------------------------------ */
@media print {
  .js .reveal:not(.in),
  .js .hero-mock .mock-channel,
  .js .hero-mock .mock-callout {
    opacity: 1 !important;
    transform: none !important;
  }
  .nav,
  .ambient,
  .grid-lines {
    display: none;
  }
}
