/* betwinner — TEAL SCOREBOARD scoreboard portal layout
   Palette: Dark teal stadium-night theme per FACTORY V9 DARK_COLOR_SYSTEM_293_TEAL_SCOREBOARD
   Typography: Manrope (sans) + Noto Sans Devanagari fallback
   Layout family: LAYOUT_CSS_PROMPT_108_NICHE_SCOREBOARD_PORTAL (asymmetric score panels)
*/

:root {
  --primary: #41D8C5;
  --primary-dark: #33A89A;
  --primary-darker: #1F8378;
  --accent: #F97E29;
  --accent-warm: #F2A33A;
  --background: #02181D;
  --surface: #092B2D;
  --surface-2: #13464B;
  --surface-3: #1B5F66;
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --muted-2: #8FA5B0;
  --border: rgba(255,255,255,0.14);
  --soft-border: rgba(255,255,255,0.08);
  --border-strong: rgba(65,216,197,0.45);
  --gradient: linear-gradient(135deg, #02181D 0%, #092B2D 48%, #13464B 100%);
  --gradient-warm: linear-gradient(120deg, #02181D 0%, #092B2D 60%, #0d3b3f 100%);
  --shadow-soft: 0 6px 24px rgba(0,0,0,0.36);
  --shadow-card: 0 4px 14px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-featured: 0 14px 38px rgba(0,0,0,0.6), 0 0 0 1px rgba(65,216,197,0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --content-max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--text);
  font-family: 'Manrope', 'Noto Sans Devanagari', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: #6eeae0; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4vw + 0.5rem, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 1.6vw + 1rem, 2.2rem); }
h3 { font-size: clamp(1.15rem, .8vw + .9rem, 1.45rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--muted); }
strong { color: var(--text); font-weight: 700; }

/* Container */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* Header / sticky nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(2, 24, 29, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 14px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #02181D;
  font-size: 18px;
  letter-spacing: -0.05em;
}
.brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-tag {
  display: block;
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 13px;
  border-radius: 8px;
  transition: background .15s;
}
.main-nav a:hover { background: rgba(65,216,197,0.10); color: var(--primary); }
.main-nav a.active { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 10px; }
.header-cta-ghost {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.header-cta-ghost:hover { border-color: var(--primary); color: var(--primary); }
.header-cta {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #02181D;
  border: 0;
  cursor: pointer;
}
.header-cta:hover { filter: brightness(1.08); color: #02181D; }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 300;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(2, 24, 29, 0.98);
  backdrop-filter: blur(12px);
  padding: 92px 26px 28px;
  z-index: 240;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(65,216,197,.14);
  color: var(--text);
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.drawer-close:hover,
.drawer-close:focus-visible {
  background: rgba(65,216,197,.26);
  border-color: var(--primary);
  transform: scale(1.04);
  outline: none;
}
.mobile-drawer a {
  color: var(--text);
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--soft-border);
  text-decoration: none;
}
.mobile-drawer a:hover { color: var(--primary); }
.mobile-drawer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #02181D !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px;
  margin-top: 12px;
  font-weight: 700 !important;
  border-bottom: 0 !important;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: filter .15s, transform .15s;
  line-height: 1;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #02181D;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--primary);
}
.btn-warm {
  background: linear-gradient(135deg, var(--accent) 0%, #d96b1e 100%);
  color: #02181D;
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: var(--border);
  color: var(--text);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 230;
  background: rgba(2, 24, 29, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  gap: 8px;
}
.sticky-cta .btn { flex: 1; padding: 12px 14px; font-size: 14px; }
body.has-sticky-cta { padding-bottom: 80px; }

/* Hero (asymmetric scoreboard) */
.hero {
  position: relative;
  min-height: 540px;
  padding: 80px 0 64px;
  background: var(--gradient);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 12% 0%, rgba(65,216,197,0.12), transparent 60%),
    radial-gradient(700px circle at 95% 100%, rgba(249,126,41,0.08), transparent 55%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-figure {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(8, 38, 42, 0.55);
  aspect-ratio: 16 / 9;
}
.hero-figure .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-text, .score-panel { grid-row: 2; min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65,216,197,0.10);
  border: 1px solid var(--border-strong);
  color: var(--primary);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(65,216,197,0.18);
}
.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary) 30%, var(--accent-warm) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(11, 35, 38, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.hero-trust-item { text-align: left; }
.hero-trust-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
}
.hero-trust-label {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Asymmetric score panel */
.score-panel {
  background: rgba(8, 38, 42, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  box-shadow: var(--shadow-featured);
}
.score-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.score-panel-tag {
  background: rgba(249,126,41,0.12);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.score-panel-timer {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 600;
}
.scoreboard {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.score-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border-radius: 10px;
  border: 1px solid var(--soft-border);
}
.score-row.team-a { border-left: 3px solid var(--primary); }
.score-row.team-b { border-left: 3px solid var(--accent); }
.score-team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-crest {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1F5A60, #15464B);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}
.score-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.score-stat {
  font-size: 12.5px;
  color: var(--muted-2);
}
.score-val { font-size: 16px; font-weight: 800; color: var(--text); }
.score-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pill-up { background: rgba(65,216,197,0.16); color: var(--primary); }
.pill-flat { background: rgba(255,255,255,0.08); color: var(--muted); }
.pill-down { background: rgba(249,126,41,0.16); color: var(--accent); }
.score-meter {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.score-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 999px;
}

/* Compliance strip */
.compliance-strip {
  background: rgba(31,131,120,0.06);
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
  padding: 16px 0;
}
.compliance-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12.5px;
  color: var(--muted-2);
}
.compliance-row strong { color: var(--text); }
.compliance-row .compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.compliance-row .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
}
.compliance-row .badge::before {
  content: '•';
  color: var(--primary);
  font-size: 16px;
}

/* Generic Section */
.section {
  padding: 72px 0;
  position: relative;
}
.section-tight { padding: 56px 0; }
.section-band-alt { background: linear-gradient(180deg, rgba(11,42,45,0.4) 0%, transparent 100%); }
.section-band-deep { background: linear-gradient(180deg, var(--surface) 0%, transparent 100%); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.section-head .label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.section-head h2 { margin: 0; }
.section-head p {
  color: var(--muted-2);
  max-width: 560px;
  margin: 0;
}
.section-head-link { color: var(--primary); font-weight: 600; font-size: 14px; white-space: nowrap; }

/* Hub card grid */
.hub-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .15s, border-color .15s;
  text-decoration: none;
  color: var(--text);
}
.hub-card:hover { transform: translateY(-2px); border-color: var(--border-strong); color: var(--text); }
.hub-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
}
.hub-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.hub-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(2,24,29,0.6) 100%);
  pointer-events: none;
}
.hub-card-body { padding: 18px 18px 20px; }
.hub-card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hub-card-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.hub-card-desc { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Stat tiles */
.stat-tile-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 32px 0; }
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.stat-tile .num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}
.stat-tile .lbl {
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Match / fixture list */
.match-list { display: grid; gap: 10px; }
.match-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.match-row .teams { display: flex; gap: 10px; align-items: center; font-weight: 700; }
.match-row .teams span { color: var(--muted); font-weight: 500; font-size: 12px; margin: 0 4px; }
.match-row .fixture-meta { font-size: 12.5px; color: var(--muted-2); }
.match-row .status {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.match-row .status.live { background: rgba(249,126,41,0.16); color: var(--accent); }
.match-row .status.upcoming { background: rgba(65,216,197,0.14); color: var(--primary); }
.match-row .status.replay { background: rgba(255,255,255,0.06); color: var(--muted); }

/* Two-column layout */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.split-2.reverse { grid-template-columns: 1.1fr 1fr; }
.article-with-toc {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sticky on mobile layout (above sticky CTA) */
@media (max-width: 899px) {
  .sticky-cta { display: flex; }
  .split-2, .split-2.reverse, .hero .container { grid-template-columns: 1fr; }
  .article-with-toc { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .article-with-toc .toc-list { position: static; }
  .hero { min-height: auto; padding: 56px 0 40px; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
}

/* Content figure */
.figure-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 22px 0 12px;
}
.figure-card img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.figure-card .cap {
  padding: 12px 16px 16px;
}
.figure-card .cap strong { display: block; margin-bottom: 4px; font-size: 14px; }
.figure-card .cap p { font-size: 13px; margin: 0; color: var(--muted-2); }
.figure-card.banner { aspect-ratio: 16/9; }
.figure-card.banner img { aspect-ratio: 16/9; }

/* Inline image row (image + text side-by-side) */
.inline-image-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(11,42,45,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 26px 0;
}
.inline-image-row .figure-card { margin: 0; aspect-ratio: 4/3; }
.inline-image-row .figure-card img { aspect-ratio: 4/3; }
.inline-image-row h3 { margin-top: 4px; }
.inline-image-row p:last-child { margin-bottom: 0; }
@media (max-width: 899px) {
  .inline-image-row { grid-template-columns: 1fr; }
}

/* FAQ list */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  display: flex;
  align-items: start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  background: rgba(65,216,197,0.18);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.faq-a {
  margin: 0;
  padding-left: 36px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Tables */
.scoreboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.scoreboard-table th,
.scoreboard-table td {
  padding: 13px 16px;
  text-align: left;
  font-size: 14.5px;
}
.scoreboard-table thead th {
  background: rgba(11,42,45,0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.scoreboard-table tbody tr + tr td { border-top: 1px solid var(--soft-border); }
.scoreboard-table tbody tr:hover td { background: rgba(65,216,197,0.04); }
.scoreboard-table td.num { font-weight: 700; color: var(--primary); }

/* Process / step strip */
.step-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #02181D;
  display: grid; place-items: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step-card h3 { font-size: 17px; margin: 0 0 6px; }
.step-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Verdict card (review/compare) */
.verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.verdict-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.verdict-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin: 0 0 10px; font-weight: 700; }
.verdict-card ul { list-style: none; padding: 0; margin: 0; }
.verdict-card li { padding: 6px 0 6px 22px; position: relative; font-size: 14px; color: var(--muted); }
.verdict-card li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(65,216,197,0.18);
}
.verdict-card.warn li::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(249,126,41,0.18); }

/* Pill row (tags, chips) */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill-row .pill {
  background: rgba(65,216,197,0.10);
  color: var(--primary);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Final CTA band */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--surface-2) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 12% 0%, rgba(249,126,41,0.16), transparent 60%),
    radial-gradient(500px circle at 90% 100%, rgba(2,24,29,0.35), transparent 55%);
  pointer-events: none;
}
.final-cta h2 { position: relative; color: #02181D; margin: 0 0 12px; }
.final-cta p { position: relative; color: rgba(2,24,29,0.85); max-width: 580px; margin: 0 auto 22px; }
.final-cta .btn-primary { background: rgba(2,24,29,0.95); color: var(--primary); }
.final-cta .btn-primary:hover { background: #02181D; filter: none; }
.final-cta .btn-secondary { color: #02181D; border-color: #02181D; background: transparent; }
.final-cta .btn-secondary:hover { background: rgba(2,24,29,0.08); filter: none; }

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.footer-col a:hover { color: var(--primary); }
.footer-brand p {
  font-size: 13.5px;
  color: var(--muted-2);
  margin-top: 12px;
  max-width: 320px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--soft-border);
  font-size: 12.5px;
  color: var(--muted-2);
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-bottom .legal-links a { color: var(--muted-2); font-size: 12.5px; }
.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.55;
  margin-bottom: 30px;
}
.footer-disclaimer strong { color: var(--muted); }

/* Reveal-on-scroll utility */
[data-reveal] { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hamburger span { transition: none; }
}

/* Mobile menu trigger */
@media (max-width: 899px) {
  .main-nav { display: none; }
  .header-right .header-cta-ghost { display: none; }
  .hamburger { display: block; }
  .header-cta { display: none; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
  .match-row { grid-template-columns: 1fr; gap: 8px; }
  .match-row .fixture-meta { font-size: 11.5px; }
}
@media (min-width: 900px) {
  .mobile-drawer { display: none !important; }
}

/* Markdown-style article body */
.article-body { color: var(--muted); }
.article-body h2 { margin-top: 36px; }
.article-body h3 { margin-top: 24px; color: var(--text); }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  margin: 22px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--primary);
  background: rgba(65,216,197,0.06);
  border-radius: 0 10px 10px 0;
  color: var(--text);
  font-style: normal;
}
.article-body blockquote p { margin: 0; color: var(--text); }
.article-body code {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 13px;
}

/* TOC */
.toc-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.toc-list h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.toc-list ol { margin: 0; padding-left: 22px; }
.toc-list li { margin-bottom: 6px; font-size: 14px; }
.toc-list a { color: var(--muted); }
.toc-list a:hover { color: var(--primary); }

/* Related-row at page end */
.related-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 20px;
  text-decoration: none;
  color: var(--text);
}
.related-card .tag { font-size: 11px; color: var(--primary); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.related-card h4 { font-size: 15px; margin: 8px 0 4px; color: var(--text); }
.related-card p { font-size: 13px; color: var(--muted-2); margin: 0; line-height: 1.5; }

/* Anchored offset for sticky header */
section[id], h2[id] { scroll-margin-top: 90px; }

/* Print-friendly skip */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: static;
  display: inline-block;
  background: var(--primary);
  color: #02181D;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 8px;
  margin: 12px;
}

/* Match-context strip (positions relative to room) */
.context-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.context-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.context-card .lbl {
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.context-card .val {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.context-card .desc { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* Section spacing on smaller screens */
@media (max-width: 700px) {
  .section { padding: 48px 0; }
  .stat-tile-row { gap: 10px; }
  .final-cta { padding: 34px 22px; }
  .site-header .container { min-height: 64px; }
  .hero-trust { padding: 12px; }
  .hero-trust-num { font-size: 18px; }
}
