/* =====================================================================
   MuriBet — Landing page styles
   Aesthetic: dark, premium, clear. Single accent (green), Geist + Geist Mono.
   ===================================================================== */

:root {
  --accent: oklch(0.78 0.16 145);
  --accent-soft: oklch(0.78 0.16 145 / 0.14);
  --accent-faint: oklch(0.78 0.16 145 / 0.35);
  --accent-strong: oklch(0.85 0.18 145);
  --miss: oklch(0.68 0.18 25);
  --miss-soft: oklch(0.68 0.18 25 / 0.14);

  --bg: oklch(0.14 0.005 250);
  --bg-elev: oklch(0.165 0.006 250);
  --card: oklch(0.185 0.007 250);
  --card-2: oklch(0.21 0.008 250);
  --line: oklch(0.28 0.008 250);
  --line-strong: oklch(0.35 0.01 250);

  --text: oklch(0.97 0.005 90);
  --text-2: oklch(0.78 0.008 250);
  --text-faint: oklch(0.55 0.01 250);
  --text-dim: oklch(0.42 0.01 250);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 0 oklch(1 0 0 / 0.04) inset, 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 0 0 1px var(--line) inset, 0 1px 0 oklch(1 0 0 / 0.04) inset, 0 8px 30px oklch(0 0 0 / 0.35);

  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'JetBrains Mono', monospace;

  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv01';
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Global accent glow on the page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 80% -10%, oklch(0.78 0.16 145 / 0.10), transparent 60%),
    radial-gradient(ellipse 800px 500px at -10% 30%, oklch(0.55 0.10 220 / 0.06), transparent 60%);
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: oklch(0.14 0.005 250 / 0.72);
  border-bottom: 1px solid oklch(0.28 0.008 250 / 0.5);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-2);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lang {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-faint);
  margin-right: 8px;
}
.lang-btn {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 2px 4px;
  font-family: inherit;
  font-size: inherit;
}
.lang-btn.active { color: var(--text); }
.lang-sep { opacity: .5; padding: 0 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all .18s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: oklch(0.16 0.01 145);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px oklch(0.78 0.16 145 / 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text-faint); background: oklch(1 0 0 / 0.02); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.logo-mark { color: var(--text); flex-shrink: 0; }
.logo-word {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-bet { color: var(--accent); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  padding: 88px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: oklch(0.78 0.16 145 / 0.10);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid oklch(0.78 0.16 145 / 0.20);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.78 0.16 145 / 0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px oklch(0.78 0.16 145 / 0.2); }
  50% { box-shadow: 0 0 0 7px oklch(0.78 0.16 145 / 0); }
}

.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.stat-lg .stat-num {
  font-size: 44px;
  color: var(--accent);
}
.stat-pct { font-size: 0.6em; color: var(--text-2); margin-left: 1px; }
.stat-lbl {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  color: var(--text-faint);
  font-size: 13px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item svg { color: var(--accent); }

/* Hero right — live card */
.live-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.live-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-faint), transparent);
}
.lc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}
.lc-title {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lc-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--miss);
  letter-spacing: 0.08em;
}
.lc-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--miss);
  animation: pulse-red 1.4s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 oklch(0.68 0.18 25 / 0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px oklch(0.68 0.18 25 / 0); }
}
.lc-rate {
  text-align: right;
}
.lc-rate b {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.lc-rate span { font-size: 11px; color: var(--text-faint); }

/* Streak dots */
.streak-dots {
  display: grid;
  grid-template-columns: repeat(36, 1fr);
  gap: 4px;
  padding: 12px 0 8px;
}
.streak-dot {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--card-2);
}
.streak-dot.hit { background: var(--accent); }
.streak-dot.miss { background: var(--miss); opacity: 0.85; }

.lc-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.lc-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0 16px;
}

.lc-recent-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lc-list { display: flex; flex-direction: column; gap: 6px; }
.lc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: oklch(0.16 0.006 250);
}
.lc-result {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.lc-result.hit { background: var(--accent-soft); color: var(--accent-strong); }
.lc-result.miss { background: var(--miss-soft); color: var(--miss); }
.lc-match { flex: 1; min-width: 0; }
.lc-teams {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lc-vs { color: var(--text-dim); padding: 0 3px; }
.lc-tip-row { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.lc-tip {}
.lc-sep { margin: 0 6px; opacity: 0.5; }
.lc-score { font-family: var(--font-mono); color: var(--text-2); }

/* =====================================================================
   Generic section
   ===================================================================== */
.section { padding: 96px 0; }
.section-head {
  margin-bottom: 56px;
  max-width: 800px;
}
.row-head {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.section-title .muted { color: var(--text-dim); font-weight: 500; }

/* Card */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.card-title { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.card-sub {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}
.card-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-faint);
}
.legend-line, .legend-area {
  display: inline-block;
  width: 14px; height: 2px;
  margin-right: 4px;
  vertical-align: middle;
}
.legend-line { background: var(--accent); }
.legend-area { height: 8px; background: linear-gradient(var(--accent-soft), transparent); border-radius: 1px; }

/* =====================================================================
   Track section
   ===================================================================== */
.track-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .track-grid { grid-template-columns: 1fr; }
}
.track-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .card-foot { grid-template-columns: repeat(2, 1fr); }
}
.kpi { display: flex; flex-direction: column; gap: 4px; }
.kpi-lbl { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; }
.kpi-val { font-family: var(--font-mono); font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }

/* Chart */
.chart-wrap { position: relative; }
.chart-axis {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--text-faint);
  letter-spacing: 0.04em;
}
.chart-ref {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--accent);
  letter-spacing: 0.04em;
}
.chart-tooltip {
  position: absolute;
  top: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  pointer-events: none;
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.5);
  min-width: 180px;
}
.tt-week {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.tt-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 0;
}
.tt-row span { color: var(--text-faint); }
.tt-row b { font-family: var(--font-mono); }

/* Tip mix */
.tip-mix { display: flex; gap: 16px; align-items: center; }
.mix-center-num { font-family: var(--font-mono); font-size: 16px; fill: var(--text); }
.mix-center-lbl { font-size: 10px; fill: var(--text-faint); letter-spacing: 0.05em; }
.tip-mix-legend { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tml-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.tml-swatch { width: 10px; height: 10px; border-radius: 2px; }
.tml-label { flex: 1; color: var(--text-2); }
.tml-val { font-family: var(--font-mono); color: var(--text); }

/* Top performer */
.top-perf { padding: 8px 0 4px; }
.top-perf-rate {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.top-perf-rate span { font-size: 0.5em; color: var(--text-2); }
.top-perf-name { font-size: 15px; font-weight: 500; margin-top: 6px; }
.top-perf-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); margin-top: 4px; }

/* League bars */
.league-card { padding: 24px 28px; }
.league-bars { display: flex; flex-direction: column; gap: 10px; }
.lb-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px 70px;
  gap: 16px;
  align-items: center;
}
@media (max-width: 700px) {
  .lb-row { grid-template-columns: 1fr 60px; }
  .lb-track, .lb-vol { display: none; }
}
.lb-name { font-size: 13px; display: flex; gap: 8px; align-items: center; }
.lb-flag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  background: var(--card-2);
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.lb-track {
  position: relative;
  height: 8px;
  background: var(--card-2);
  border-radius: 999px;
  overflow: hidden;
}
.lb-fill {
  height: 100%;
  background: linear-gradient(90deg, oklch(0.78 0.16 145 / 0.4), var(--accent));
  border-radius: 999px;
  transition: width .6s cubic-bezier(.2,.8,.2,1);
}
.lb-mark {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 1px;
  background: var(--text-faint);
  opacity: 0.6;
}
.lb-rate {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.lb-rate span { color: var(--text-faint); font-size: 0.75em; margin-left: 1px; }
.lb-vol {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  text-align: right;
}
.legend-note { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.legend-mark { display: inline-block; width: 1px; height: 10px; background: var(--text-faint); vertical-align: middle; margin-right: 5px; }

/* =====================================================================
   Today section
   ===================================================================== */
.today-date {
  font-family: var(--font-mono);
  text-align: right;
  letter-spacing: 0.04em;
}
.today-date-day {
  font-size: 28px;
  color: var(--text);
  line-height: 1;
}
.today-date-mon {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}
.today-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tip-row {
  display: grid;
  grid-template-columns: 100px 1fr 200px 180px;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--card);
  transition: background .15s;
}
.tip-row:hover { background: var(--card-2); }
.tip-row.open {
  background: linear-gradient(90deg, oklch(0.78 0.16 145 / 0.06), var(--card));
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}
@media (max-width: 800px) {
  .tip-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
}
.tip-time-hr {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.tip-league {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.tip-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.tip-home, .tip-away { white-space: nowrap; }
.tip-vs { color: var(--text-dim); font-size: 12px; }
.tip-locked {
  position: relative;
  height: 32px;
}
.tip-locked-blur {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-faint);
  filter: blur(6px);
  opacity: 0.7;
  user-select: none;
}
.tip-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
  background: linear-gradient(90deg, var(--card), oklch(0.185 0.007 250 / 0.85));
}
.tip-row.open .tip-locked-overlay { background: linear-gradient(90deg, oklch(0.78 0.16 145 / 0.06), var(--card)); }
.tip-open-val {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.tip-conf {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tip-conf-bar {
  flex: 1;
  height: 4px;
  background: var(--card-2);
  border-radius: 999px;
  overflow: hidden;
}
.tip-conf-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.tip-conf-num {
  font-family: var(--font-mono);
  font-size: 14px;
  min-width: 36px;
  text-align: right;
}
.tip-conf-num span { color: var(--text-faint); font-size: 0.75em; }

.today-cta {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.today-cta-title { font-size: 17px; font-weight: 600; }
.today-cta-sub { font-size: 13px; color: var(--text-faint); margin-top: 4px; }

/* =====================================================================
   Method section
   ===================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .method-grid { grid-template-columns: 1fr; }
}
.method-card {
  background: var(--card);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
}
.method-card:hover { background: var(--card-2); }
.method-head { display: flex; align-items: baseline; gap: 14px; }
.method-n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.method-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}
.method-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 4px 0 12px;
  text-wrap: pretty;
}
.method-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.method-points li {
  font-size: 12.5px;
  color: var(--text-faint);
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  letter-spacing: -0.005em;
}
.mp-tick { color: var(--accent); font-weight: 600; }

/* =====================================================================
   History section
   ===================================================================== */
.history-summary {
  text-align: right;
}
.hs-num {
  font-family: var(--font-mono);
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.hs-num b { font-weight: 500; }
.hs-num span { font-size: 0.55em; color: var(--text-2); }
.hs-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter { display: flex; flex-direction: column; gap: 6px; }
.filter-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.filter-select-wrap { position: relative; display: inline-block; }
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 9px 36px 9px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  min-width: 160px;
}
.filter-select:hover { border-color: var(--text-faint); }
.filter-select:focus { outline: none; border-color: var(--accent); }
.filter-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-faint);
}

.table-wrap { padding: 0; overflow: hidden; }
.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.results-table th, .results-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.results-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: oklch(0.16 0.006 250);
  border-bottom: 1px solid var(--line-strong);
}
.results-table tr:last-child td { border-bottom: 0; }
.results-table tr.row-miss td { background: oklch(0.68 0.18 25 / 0.03); }
.results-table .mono { font-family: var(--font-mono); }
.results-table .ta-r { text-align: right; }
.results-table .ta-c { text-align: center; }
.results-table .td-league { color: var(--text-2); font-size: 12.5px; }
.results-table .td-match { font-weight: 500; }
.results-table .vs { color: var(--text-dim); font-size: 11px; padding: 0 4px; }
.results-table .empty { text-align: center; padding: 32px; color: var(--text-faint); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
}
.pill.hit { background: var(--accent-soft); color: var(--accent-strong); }
.pill.miss { background: var(--miss-soft); color: var(--miss); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
.faq-aside {
  margin-top: 24px;
  color: var(--text-2);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-link {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item {
  background: var(--card);
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { background: var(--card-2); }
.faq-item[open] summary { color: var(--accent); }
.faq-plus {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text-faint);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item[open] .faq-plus { color: var(--accent); }
.faq-a {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  text-wrap: pretty;
  max-width: 64ch;
}

/* =====================================================================
   Final CTA
   ===================================================================== */
.final-cta { padding: 80px 0 96px; }
.fcta-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  overflow: hidden;
  isolation: isolate;
}
.fcta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 80% 20%, oklch(0.78 0.16 145 / 0.18), transparent 70%);
  z-index: -1;
}
.fcta-bg-num {
  position: absolute;
  right: -30px;
  bottom: -100px;
  font-family: var(--font-mono);
  font-size: 360px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: oklch(0.78 0.16 145 / 0.08);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.fcta-bg-num span { font-size: 0.5em; }
.fcta-title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 600;
  text-wrap: balance;
}
.fcta-sub {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 32px;
  max-width: 480px;
}
.fcta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: oklch(0.13 0.005 250);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-logo b { color: var(--accent); font-weight: 600; }
.footer-tag { font-size: 13px; color: var(--text-faint); line-height: 1.6; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0;
  transition: color .15s;
}
.footer-cols a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.responsible {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 720px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.responsible a { color: var(--accent); }
.resp-18 {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--miss);
  color: var(--miss);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

/* Responsive nav cleanup */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .results-table th, .results-table td { padding: 10px 12px; }
}
