/* matchoscope — design tokens + base styles */
:root {
  --pitch: oklch(0.58 0.17 142);
  --pitch-deep: oklch(0.32 0.10 150);
  --pitch-dark: oklch(0.20 0.05 150);
  --chalk: #f6f4ec;
  --chalk-2: #ecead9;
  --ink: #16191a;
  --ink-soft: #3a3f3e;
  --stitch: oklch(0.74 0.17 55);
  --stitch-deep: oklch(0.55 0.16 45);
  --sky: oklch(0.78 0.10 230);
  --line: rgba(22, 25, 26, 0.12);
  --line-strong: rgba(22, 25, 26, 0.22);
  --shadow-soft: 0 1px 0 rgba(22,25,26,.05), 0 12px 32px -16px rgba(22,25,26,.18);

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.mono { font-family: var(--font-mono); }
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.95; }
.display-italic { font-family: var(--font-display); font-style: italic; font-weight: 800; letter-spacing: -0.025em; line-height: 0.95; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ticker */
.ticker {
  background: var(--ink);
  color: var(--chalk);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
}
.ticker-rail {
  display: flex;
  gap: 36px;
  padding: 12px 0;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}
.ticker-rail:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stitch); }
.ticker-dot.live { background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,.7); animation: pulse 1.4s infinite; }
.ticker-match { display: inline-flex; align-items: center; gap: 9px; }
.ticker-team { color: var(--chalk); }
.ticker-prob-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(34px, 1fr));
  gap: 4px;
  min-width: 124px;
  padding: 4px 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.ticker-prob-col {
  display: grid;
  gap: 2px;
  justify-items: center;
  line-height: 1;
}
.ticker-prob-label {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.ticker-prob-value {
  color: var(--stitch);
  font-size: 12px;
  font-weight: 800;
}
.ticker-score { color: #fff; font-weight: 700; }
.ticker-vs { color: rgba(255,255,255,.5); }
.ticker-label { color: rgba(255,255,255,.5); text-transform: uppercase; }
.ticker-pick { color: var(--stitch); font-weight: 800; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 244, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.nav a { color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 8px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--chalk);
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--chalk);
}

/* logo */
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.logo svg { display: block; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--chalk);
  box-shadow: 0 2px 0 var(--pitch-dark);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--pitch-dark); }
.btn-pitch {
  background: var(--pitch);
  color: #fff;
  box-shadow: 0 2px 0 var(--pitch-deep);
}
.btn-pitch:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--pitch-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(22,25,26,.04); }
.btn-stitch {
  background: var(--stitch);
  color: var(--ink);
  box-shadow: 0 2px 0 var(--stitch-deep);
}
.btn-stitch:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--stitch-deep); }

/* pill / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--chalk-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pitch); }

/* hero */
.hero {
  position: relative;
  padding: 60px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 40px 0 64px; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 18px 0 22px;
  color: var(--ink);
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--pitch-deep);
  font-family: var(--font-display);
}
.hero h1 .stitch {
  display: inline-block;
  background: var(--stitch);
  color: var(--ink);
  padding: 0 0.18em 0.04em;
  border-radius: 12px;
  transform: rotate(-1.5deg);
}
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-bottom: 28px; line-height: 1.45; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta-item .num { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.hero-meta-item .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* hero devices */
.hero-devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -40px;
  min-height: 580px;
}
@media (max-width: 960px) { .hero-devices { min-height: 520px; } }
.hero-device {
  transform-origin: bottom center;
}
.hero-device.left {
  transform: rotate(-4deg) translateY(20px);
  z-index: 2;
}
.hero-device.right {
  transform: rotate(3deg) translateX(-40px);
  z-index: 1;
}
.hero-pitch-bg {
  position: absolute;
  inset: -40px -10% auto -10%;
  height: 100%;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(85,150,80,.10), transparent 65%),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(22,25,26,.025) 60px 120px);
  border-radius: 24px;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }
  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-meta {
    justify-content: space-between;
    gap: 18px;
  }
  .hero-devices {
    min-height: 430px;
    margin: 0 -20px;
    overflow: hidden;
  }
  .hero-device.left {
    transform: rotate(-4deg) translate(-28px, 12px) scale(0.82);
  }
  .hero-device.right {
    transform: rotate(3deg) translate(-116px, 26px) scale(0.82);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero-cta-row .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* sections */
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) { .section-pad { padding: 64px 0; } .section-tight { padding: 48px 0; } }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
@media (max-width: 720px) { .section-head { flex-direction: column; align-items: flex-start; } }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 8px 0 0;
  max-width: 700px;
}
.section-head p { color: var(--ink-soft); max-width: 360px; font-size: 15px; margin: 0; }

/* demo */
.demo-section {
  background: var(--ink);
  color: var(--chalk);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .demo-section { padding: 36px 24px; border-radius: 24px; } }
.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 110%, rgba(94, 161, 80, 0.25), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,.02) 80px 160px);
  pointer-events: none;
}
.demo-section h2 { color: var(--chalk); }
.demo-section .kicker { background: rgba(255,255,255,.08); color: var(--chalk); }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}
@media (max-width: 880px) { .demo-grid { grid-template-columns: 1fr; gap: 32px; } }

.team-select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
}
.team-select-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 480px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--chalk);
  padding: 10px 4px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.team-chip:hover { background: rgba(255,255,255,.10); }
.team-chip.selected {
  background: var(--pitch);
  border-color: var(--pitch);
  color: #fff;
}
.team-flag {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  display: block;
}

.vs-divider {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,.5);
  margin: 16px 0 12px;
  letter-spacing: 0.1em;
}

/* schedule-based demo */
.schedule-demo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .schedule-demo-grid { grid-template-columns: 1fr; } }

.schedule-list-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 8px;
}
.schedule-list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.schedule-list-meta {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.schedule-rows { display: flex; flex-direction: column; gap: 4px; }

.schedule-demo-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, border .15s, transform .15s;
}
.schedule-demo-row:hover { background: rgba(255,255,255,.04); }
.schedule-demo-row.active { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.schedule-demo-row.live { box-shadow: inset 3px 0 0 #ef4444; padding-left: 12px; }
.schedule-demo-row.upcoming.active { box-shadow: inset 3px 0 0 var(--stitch); padding-left: 12px; }

.sr-date { display: flex; flex-direction: column; gap: 2px; font-size: 11px; }
.sr-date .mono { color: var(--chalk); font-size: 12px; font-weight: 600; }
.sr-date .mono.dim { color: rgba(255,255,255,.4); font-size: 10px; font-weight: 400; }

.sr-teams { display: flex; align-items: center; gap: 10px; min-width: 0; flex-wrap: wrap; }
.sr-team { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-family: var(--font-display); font-size: 14px; letter-spacing: -0.01em; color: var(--chalk); }
.sr-vs { color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.sr-result { display: inline-flex; align-items: center; gap: 8px; }
.sr-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--chalk);
  min-width: 38px;
  text-align: right;
}
.sr-score.live { color: #ef4444; }
.sr-score.forecast { color: var(--stitch); font-style: italic; }
.sr-score.q { color: rgba(255,255,255,.3); font-style: italic; }

.sr-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.sr-badge.hit { background: var(--pitch); color: #fff; }
.sr-badge.miss { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.sr-badge.live { background: #ef4444; color: #fff; }
.sr-badge.forecast { background: var(--stitch); color: var(--ink); }
.sr-badge.q { background: rgba(255,212,127,.15); color: var(--stitch); border: 1px dashed rgba(255,212,127,.3); }

.schedule-list-foot {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 8px 4px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 10px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pred-card-detail { min-height: 460px; }
.pred-venue {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: -8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hidden-forecast {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px 0;
  min-height: 220px;
}
.hidden-glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 80px;
  letter-spacing: -0.04em;
  color: var(--chalk-2);
  line-height: 0.95;
}
.hidden-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 260px;
}

.calc-strip {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  line-height: 1.4;
  text-align: left;
  color: var(--ink-soft);
  width: 100%;
  max-width: 340px;
}
.calc-line { opacity: 0.2; transition: opacity .25s; }
.calc-line.on { opacity: 1; color: var(--ink); }

.demo-bottombar {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.demo-bottombar > div:first-child { max-width: 640px; }

/* prediction output */
.pred-card {
  background: var(--chalk);
  color: var(--ink);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.pred-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}
.pred-empty-icon { font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--chalk-2); font-style: italic; }
.pred-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.pred-matchup { display: flex; align-items: center; gap: 16px; }
.pred-team-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.pred-vs { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; }
.pred-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pred-score .sep { color: var(--ink-soft); font-style: italic; }
.pred-score-label { font-family: var(--font-mono); font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.prob-bars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin: 24px 0 20px; height: 56px; }
.prob-bar {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--chalk-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 10px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  transition: all .6s cubic-bezier(.34,.6,.3,1.1);
}
.prob-bar.home { background: linear-gradient(180deg, var(--pitch) 0%, var(--pitch-deep) 100%); }
.prob-bar.draw { background: linear-gradient(180deg, #888 0%, #555 100%); }
.prob-bar.away { background: linear-gradient(180deg, var(--stitch) 0%, var(--stitch-deep) 100%); color: var(--ink); }
.prob-bar-pct { font-size: 18px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.prob-bar-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.forecast-reasoning {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.pred-stat .v.model-v {
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.pred-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.pred-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.pred-stat .l { font-family: var(--font-mono); font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.feature-tall { grid-row: span 2; min-height: 660px; }
.feature.dark { background: var(--pitch-dark); color: var(--chalk); border-color: transparent; }
.feature.green { background: var(--pitch); color: #fff; border-color: transparent; }
.feature.stitch { background: var(--stitch); color: var(--ink); border-color: transparent; }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.05; }
.feature p { font-size: 15px; opacity: 0.8; margin: 0 0 24px; max-width: 320px; line-height: 1.45; }
.feature-visual { margin-top: auto; }
.push-preview {
  background: var(--chalk-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.push-preview-head,
.push-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0;
}
.push-preview-head span,
.push-preview-foot strong { color: var(--pitch-deep); font-weight: 800; }
.push-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(9, 38, 30, .08);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 26px rgba(9, 38, 30, .08);
}
.push-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--stitch);
  display: grid;
  place-items: center;
}
.push-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.15;
  margin-bottom: 4px;
}
.push-card p {
  margin: 0;
  max-width: none;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
  opacity: 1;
}

@media (max-width: 720px) { .feature-tall { grid-row: auto; min-height: 320px; } }

/* mini schedule */
.schedule-list { display: flex; flex-direction: column; gap: 6px; }
.schedule-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  font-size: 13px;
}
.feature:not(.dark):not(.green):not(.stitch) .schedule-row { background: var(--chalk-2); }
.schedule-date { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; }
.schedule-teams { font-weight: 600; }
.schedule-prob { font-family: var(--font-mono); font-size: 11px; opacity: 0.7; }

/* pricing */
.price-card {
  background: var(--ink);
  color: var(--chalk);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .price-card { grid-template-columns: 1fr; padding: 40px 28px; } }
.price-card::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: var(--stitch);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
}
.price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: 0;
}
@media (max-width: 720px) { .price-big { font-size: 58px; } }
.price-big .cents { font-style: italic; color: var(--stitch); }
.price-big .once { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: 0.04em; font-style: normal; margin-top: 12px; font-family: var(--font-mono); text-transform: uppercase; }
.store-buttons { display: flex; flex-direction: column; gap: 12px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--chalk);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }
.store-btn strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; display: block; line-height: 1.1; margin-top: 2px; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.blog-body { padding: 22px 22px 26px; }
.blog-thumb-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.92);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink);
}
.blog-match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.blog-match-row strong { color: var(--pitch-deep); font-weight: 800; }
.blog-cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0; color: var(--pitch-deep); margin-bottom: 8px; }
.blog-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0; line-height: 1.15; margin-bottom: 8px; }
.blog-lead { margin: 0 0 12px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.blog-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }

/* newsletter */
.newsletter {
  background: var(--chalk-2);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .newsletter { grid-template-columns: 1fr; padding: 36px 28px; } }
.newsletter h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1; margin: 0 0 8px; }
.newsletter p { color: var(--ink-soft); margin: 0; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: var(--chalk);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.newsletter-form input:focus { border-color: var(--ink); }

/* share */
.share-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .share-card { grid-template-columns: 1fr; padding: 32px 28px; gap: 32px; } }
.share-head h3.share-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 14px 0 10px;
}
.share-sub {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 360px;
  margin: 0;
  line-height: 1.5;
}
.share-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
@media (max-width: 640px) { .share-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 380px) { .share-row { grid-template-columns: repeat(3, 1fr); } }
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 6px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  text-decoration: none;
  transition: transform .12s, background .12s, border-color .12s;
}
.share-btn:hover { transform: translateY(-2px); background: var(--chalk-2); border-color: var(--line-strong); }
.share-btn-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.share-btn-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* footer socials */
.footer-socials { margin-top: 4px; }
.footer-socials-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.footer-socials-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s, transform .15s;
}
.footer-social-link:hover {
  background: var(--stitch);
  color: var(--ink);
  transform: translateY(-2px);
}

/* disclaimer */
.disclaimer {
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  padding: 28px 32px;
  background: rgba(22,25,26,.02);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.disclaimer h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.disclaimer p { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; line-height: 1.55; }
.disclaimer-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--chalk-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  padding: 28px 32px;
  background: rgba(22,25,26,.02);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.disclaimer h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.disclaimer p { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; line-height: 1.55; }
.disclaimer-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--chalk-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}

/* footer */
.footer {
  background: var(--ink);
  color: var(--chalk);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* device-frame override sizing in hero */
.hero-device-wrap { width: 280px; height: 580px; position: relative; }
.hero-device-wrap.android { height: 590px; }
@media (max-width: 480px) {
  .hero-device-wrap { width: 240px; height: 500px; }
  .hero-device-wrap.android { height: 510px; }
}

/* phone screen content */
.phone-screen { background: var(--chalk); height: 100%; width: 100%; overflow: hidden; display: flex; flex-direction: column; font-size: 12px; }
.phone-top {
  padding: 56px 18px 14px;
  background: linear-gradient(180deg, var(--pitch-dark) 0%, var(--pitch-deep) 100%);
  color: #fff;
}
.phone-top .ph-h { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.phone-top .ph-match { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; margin-top: 4px; line-height: 1; }
.phone-pred-bar { display: flex; height: 8px; border-radius: 999px; overflow: hidden; margin-top: 14px; background: rgba(255,255,255,.15); }
.phone-pred-bar > div { height: 100%; }
.phone-pred-bar .home { background: #fff; }
.phone-pred-bar .draw { background: rgba(255,255,255,.4); }
.phone-pred-bar .away { background: var(--stitch); }
.phone-pred-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; margin-top: 8px; opacity: 0.85; }
.phone-body { flex: 1; padding: 14px 14px 40px; overflow: hidden; }
.phone-stat {
  background: var(--chalk-2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.phone-stat .l { color: var(--ink-soft); font-family: var(--font-mono); font-size: 10px; }
.phone-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.phone-pitch {
  margin-top: 8px;
  aspect-ratio: 3/2;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.15) 0%, transparent 70%),
    repeating-linear-gradient(0deg, var(--pitch) 0 8px, var(--pitch-deep) 8px 16px);
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  position: relative;
  overflow: hidden;
}
.phone-pitch::after {
  content: '';
  position: absolute;
  inset: 30% 35%;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
}

/* mini pitch (android variant) */
.phone-screen.android-screen { background: #fafbf8; }
.phone-top.android-top { background: var(--ink); }
.phone-top.android-top .ph-h { color: var(--stitch); opacity: 1; }
.phone-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.phone-mini-card { background: var(--chalk-2); border-radius: 8px; padding: 10px; }
.phone-mini-card .l { font-family: var(--font-mono); font-size: 9px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.phone-mini-card .v { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }
.phone-mini-card.live { background: var(--ink); color: var(--chalk); }
.phone-mini-card.live .l { color: rgba(255,255,255,.6); }
.phone-mini-card.live .v { color: var(--stitch); }

/* fade-in */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* misc */
.divider-stitch {
  height: 1px;
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 14px);
  opacity: 0.2;
}
