/* =====================================================================
   Consider11 — Production stylesheet
   Mint Scorecard palette + Blue Trust layout + Poppins / Noto Devanagari
   ===================================================================== */

:root {
  --primary: #087A5B;
  --primary-deep: #055a42;
  --primary-soft: #14a47b;
  --accent: #E28222;
  --accent-soft: #f4a04b;
  --background: #F2FAF6;
  --background-band: #E7F5EE;
  --surface: #FFFFFF;
  --surface-2: #DCF3E8;
  --surface-3: #F7FCF9;
  --ink: #12322B;
  --ink-soft: #1f4842;
  --muted: #55716A;
  --border: #BFE2D4;
  --border-soft: #e2efe8;
  --live: #DC2626;
  --success: #047857;
  --warning: #B45309;
  --shadow-card: 0 1px 2px rgba(8,122,91,0.06), 0 4px 14px rgba(8,122,91,0.07);
  --shadow-lift: 0 6px 24px rgba(8,122,91,0.10);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
  --radius-pill: 999px;
  --maxw: 1240px;
  --gap: 24px;
  --header-h: 72px;
  --font-display: 'Poppins', 'Noto Sans Devanagari', system-ui, sans-serif;
  --font-body: 'Poppins', 'Noto Sans Devanagari', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { overflow-x: clip; }
body { overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .18s var(--easing); }
a:hover { color: var(--primary-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  z-index: 1000;
  transition: top .18s var(--easing);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ===================== UTILITY ===================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 8px;
}
.section-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 28px;
}
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(220,38,38,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 290;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark:hover { color: var(--primary); }
.brand-mark .brand-mark-glyph {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18);
}
.brand-mark .brand-mark-glyph::after {
  content: 'C11';
  font-family: var(--font-display);
}
.brand-mark .brand-mark-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-mark .brand-mark-text small { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

.main-nav {
  display: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--surface-2); color: var(--primary-deep); }
.main-nav a.cta-pill {
  background: var(--accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.main-nav a.cta-pill:hover { background: #c46d12; color: #fff; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.header-cta:hover { background: var(--primary-deep); color: #fff; }
.header-cta-ghost {
  display: none;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.header-cta-ghost:hover { background: var(--surface-2); }

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  position: relative;
  z-index: 300;
}
.hamburger .bar {
  display: block;
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--easing), opacity .18s var(--easing), top .25s var(--easing);
}
.hamburger .bar:nth-child(1) { top: 14px; }
.hamburger .bar:nth-child(2) { top: 21px; }
.hamburger .bar:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 24px rgba(8,122,91,0.10);
  transform: translateX(100%);
  transition: transform .28s var(--easing);
  z-index: 280;
  overflow-y: auto;
  padding: calc(var(--header-h) + 12px) 22px 90px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer nav li { border-bottom: 1px solid var(--border-soft); }
.mobile-drawer nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
}
.mobile-drawer nav a:hover { color: var(--primary); }
.mobile-drawer nav a.cta-pill {
  display: flex;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-pill);
  margin: 14px 0 6px;
}
.mobile-drawer .drawer-foot {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,30,25,0.40);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--easing);
  z-index: 270;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ===================== SCORE STRIP (signature device) ===================== */
.score-strip {
  background: linear-gradient(95deg, var(--primary-deep) 0%, var(--primary) 70%, var(--primary-soft) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
}
.score-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 24px;
  pointer-events: none;
  opacity: .55;
}
.score-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 24px;
  position: relative;
}
.score-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D5F0E2;
  font-weight: 600;
}
.score-strip-label .live-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
.score-strip-marquee {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.score-strip-marquee::-webkit-scrollbar { display: none; }
.score-tile {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-left: 1px solid rgba(255,255,255,0.18);
  font-size: 13.5px;
  white-space: nowrap;
  scroll-snap-align: start;
}
.score-tile:first-child { border-left: 0; }
.score-tile .series {
  font-size: 11px;
  color: #C7E9D7;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.score-tile .team {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.score-tile .team-abbr {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.16);
  display: inline-grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.score-tile .score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--accent-soft);
}
.score-tile .status {
  font-size: 11px;
  color: #C7E9D7;
}
.score-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.score-strip-cta:hover { background: #c46d12; color: #fff; }

/* ===================== HERO ===================== */
.hero {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-band) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(8,122,91,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--ink);
  margin: 14px 0 16px;
}
.hero-copy h1 .accent { color: var(--primary); }
.hero-copy p.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 26px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(8,122,91,0.30);
}
.btn-primary:hover { background: var(--primary-deep); color: #fff; }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: #c46d12; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover { background: var(--surface-2); }
.btn-arrow::after { content: '→'; font-weight: 700; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.hero-meta .meta-cell {
  font-size: 13px;
  color: var(--muted);
}
.hero-meta .meta-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
}
.hero-card-head .label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-card-head .time {
  font-size: 13px; color: var(--muted);
}
.hero-fixtures {
  padding: 12px 18px;
}
.fixture-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.fixture-row:last-child { border-bottom: 0; }
.fixture-team {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink); font-size: 14.5px;
}
.fixture-team.home { justify-content: flex-end; }
.fixture-team .abbr {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 11.5px;
  display: inline-grid; place-items: center;
}
.fixture-team.away .abbr { order: 2; }
.fixture-team.away .name { order: 1; }
.fixture-vs {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-3);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  white-space: nowrap;
}
.fixture-vs strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--font-display);
}
.hero-card-foot {
  background: var(--surface-3);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.hero-card-foot strong { color: var(--primary); font-weight: 600; }

/* ===================== SECTIONS ===================== */
.section {
  padding: 64px 0;
}
.section.tight { padding: 48px 0; }
.section-band {
  background: var(--background-band);
}
.section-surface {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head .section-meta {
  font-size: 13px;
  color: var(--muted);
}
.section-head a.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Trust band */
.trust-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  background: var(--surface);
  border-radius: var(--radius-l);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-item .trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--primary-deep);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.trust-item h4 {
  font-size: 14px;
  margin: 0 0 2px;
  font-weight: 600;
  color: var(--ink);
}
.trust-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Compliance strip */
.compliance-strip {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 auto 32px;
  flex-wrap: wrap;
}
.compliance-strip span {
  display: inline-flex; align-items: center; gap: 6px;
}

/* Hub card grid */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .25s var(--easing);
}
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--primary);
}
.hub-card .hub-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.hub-card .hub-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hub-card .hub-thumb .badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hub-card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hub-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.hub-card .hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
}

/* How-to steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 22px 22px 78px;
  box-shadow: var(--shadow-card);
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px; left: 22px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.step-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--ink);
}
.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Data table */
.data-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.data-table th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { font-weight: 600; color: var(--ink); }
.data-table tr:hover td { background: var(--surface-3); }
.data-table .points {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}
.data-table-scroll { overflow-x: auto; }
.prose .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 540px) {
  .prose .data-table { font-size: 13px; }
  .prose .data-table th, .prose .data-table td { padding: 10px 12px; }
}

/* Card grid (3-col variant) */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.feature-card .feature-icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 16px;
}
.feature-card h3 { margin: 0; font-size: 17px; font-weight: 600; font-family: var(--font-display); }
.feature-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.feature-card ul { padding-left: 18px; margin: 8px 0 0; font-size: 13.5px; color: var(--muted); }
.feature-card ul li { margin-bottom: 4px; }

/* Comparison block */
.comparison-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 24px;
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.comparison-wrap table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-wrap th, .comparison-wrap td {
  padding: 12px 14px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.comparison-wrap th {
  color: var(--primary-deep);
  font-weight: 600;
  background: var(--surface-3);
}
.comparison-wrap tr:last-child td { border-bottom: 0; }
.comparison-wrap .verdict {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Split editorial (image + text) */
.split-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.split-editorial .split-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--surface-2);
}
.split-editorial .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-editorial h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.split-editorial p { margin: 0 0 12px; color: var(--ink-soft); }
.split-editorial .inline-list { padding-left: 0; list-style: none; margin: 14px 0 0; }
.split-editorial .inline-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.split-editorial .inline-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
}

/* Tips stack */
.tips-stack {
  display: grid;
  gap: 14px;
}
.tip-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}
.tip-card .tip-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--primary-deep);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.tip-card h4 { margin: 0 0 2px; font-size: 15px; color: var(--ink); font-weight: 600; }
.tip-card p { margin: 0; font-size: 13px; color: var(--muted); }
.tip-card .tip-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Scroll rail (upcoming matches) */
.scroll-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}
.scroll-rail::-webkit-scrollbar { height: 6px; }
.scroll-rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.rail-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.rail-card .rail-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rail-card .rail-head .badge {
  background: var(--surface-2);
  color: var(--primary-deep);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.rail-card .rail-fixture {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.rail-card .rail-team { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.rail-card .rail-team.away { justify-content: flex-end; text-align: right; }
.rail-card .rail-team .abbr {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--primary-deep);
  display: inline-grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.rail-card .rail-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  background: var(--surface-3);
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  white-space: nowrap;
}
.rail-card .rail-foot {
  font-size: 13px;
  color: var(--muted);
  display: flex; justify-content: space-between; align-items: center;
}
.rail-card .rail-foot .countdown {
  color: var(--accent);
  font-weight: 600;
}

/* Winners band */
.winners-band {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--background-band) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.winners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.winner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.winner-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.winner-card .winner-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.winner-card .winner-meta { font-size: 12.5px; color: var(--muted); }
.winner-card .winner-prize {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

/* App CTA band */
.app-cta-band {
  background: linear-gradient(120deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: .7;
}
.app-cta-band > * { position: relative; }
.app-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #fff;
}
.app-cta-band p { color: #C7E9D7; margin: 0; max-width: 52ch; }
.app-cta-band .store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.app-cta-band .store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--primary-deep);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
}
.app-cta-band .store-btn small { font-size: 11px; font-weight: 500; color: var(--muted); display: block; line-height: 1; }
.app-cta-band .store-btn span { display: block; line-height: 1.2; }

/* Offer card */
.offer-card {
  background: linear-gradient(135deg, var(--accent) 0%, #c46d12 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(196,109,18,0.25);
}
.offer-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -80px; right: -60px;
}
.offer-card h3 { margin: 0; font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
.offer-card p { color: #FFE7C4; margin: 0; max-width: 48ch; }
.offer-card .offer-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px;
  color: #FFE7C4;
}
.offer-card .offer-meta strong { color: #fff; }
.offer-card .offer-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.offer-card .offer-actions a.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.offer-card .offer-actions a.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.offer-card .offer-actions a.btn-accent { background: #fff; color: var(--accent); }
.offer-card .offer-actions a.btn-accent:hover { background: #fff; color: var(--accent); }

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.trust-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.trust-block h4 { margin: 0 0 6px; font-size: 15px; font-weight: 600; font-family: var(--font-display); }
.trust-block p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Responsible banner */
.responsible-banner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
.responsible-banner .rb-icon {
  width: 50px; height: 50px;
  background: var(--surface);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  border: 1px solid var(--border);
}
.responsible-banner h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; font-family: var(--font-display); }
.responsible-banner p { margin: 0; font-size: 14px; color: var(--muted); }

/* News feed */
.news-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.news-card .news-thumb {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  overflow: hidden;
}
.news-card .news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card .news-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.news-card .news-meta .cat {
  color: var(--primary);
  font-weight: 600;
}
.news-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.35;
}
.news-card h3 a { color: var(--ink); }
.news-card h3 a:hover { color: var(--primary); }
.news-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.news-card .news-cta { margin-top: auto; font-size: 13.5px; font-weight: 600; }

/* FAQ accordion */
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 0 18px;
  box-shadow: var(--shadow-card);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  transition: transform .25s var(--easing);
}
.faq details[open] summary::after { content: '−'; }
.faq details .faq-body {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, var(--primary-soft) 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
}
.final-cta > * { position: relative; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
}
.final-cta p { color: #D5F0E2; max-width: 56ch; margin: 0 auto 22px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0E2A24;
  color: #CFE7DD;
  padding: 60px 0 24px;
  margin-top: 64px;
}
.site-footer a { color: #CFE7DD; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-mark small { color: #88a89e; }
.footer-brand p { margin: 16px 0 0; color: #88a89e; font-size: 14px; line-height: 1.6; max-width: 36ch; }
.footer-col h5 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #88a89e;
  margin: 0 0 12px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col li a { font-size: 14px; }
.footer-meta {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: #88a89e;
}
.footer-meta .footer-meta-row {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.footer-meta .footer-meta-row a { color: #CFE7DD; font-size: 13px; }
.footer-bottom {
  margin-top: 22px;
  font-size: 12.5px;
  color: #88a89e;
  line-height: 1.55;
}
.disclaimer {
  font-size: 12px;
  color: #88a89e;
  margin-top: 14px;
  max-width: 80ch;
  line-height: 1.55;
}
.social-list { display: flex; gap: 10px; margin-top: 14px; }
.social-list a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.10);
}
.social-list a:hover { background: rgba(255,255,255,0.16); }

/* ===================== MOBILE STICKY AFFILIATE CTA ===================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 260;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(8,122,91,0.10);
}
.sticky-cta a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.sticky-cta a:hover { background: #c46d12; color: #fff; }
.sticky-cta a small {
  font-size: 11px;
  font-weight: 500;
  color: #FFE7C4;
  letter-spacing: .06em;
}

/* ===================== ARTICLE / PAGE LAYOUTS ===================== */
.page-shell {
  padding: 40px 0 80px;
}
.page-shell .page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 6px 0 14px;
}
.page-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 24px;
  line-height: 1.55;
}
.article-hero {
  aspect-ratio: 16/9;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }

.prose {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 70ch;
  min-width: 0;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--ink);
  scroll-margin-top: 90px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.0vw, 21px);
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
  scroll-margin-top: 90px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote {
  border-left: 4px solid var(--accent);
  background: var(--surface-3);
  margin: 18px 0;
  padding: 16px 20px;
  font-style: normal;
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  color: var(--ink-soft);
}
.prose .inline-figure {
  margin: 22px 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.prose .inline-figure img { width: 100%; height: auto; display: block; }
.prose .inline-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}

/* Anchor TOC strip (mobile) */
.anchor-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 14px;
  scrollbar-width: none;
}
.anchor-strip::-webkit-scrollbar { display: none; }
.anchor-strip a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}
.anchor-strip a:hover { border-color: var(--primary); color: var(--primary); }

/* Right-rail TOC (desktop) */
.toc-rail {
  display: none;
  position: sticky;
  top: 90px;
  align-self: start;
}
.toc-rail h4 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
  font-weight: 600;
}
.toc-rail ul { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--border); }
.toc-rail li { margin: 0; }
.toc-rail a {
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 13.5px;
  color: var(--muted);
  border-left: 2px solid transparent;
  margin-left: -2px;
}
.toc-rail a:hover { color: var(--primary); }
.toc-rail a.active { color: var(--primary); border-left-color: var(--accent); font-weight: 600; }

/* Article meta strip */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.article-meta .author {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft);
  font-weight: 500;
}
.article-meta .author .av {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--primary-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 11px;
}

/* Related posts grid */
.related-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.related-card .cat { font-size: 11px; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.related-card h4 { margin: 8px 0 6px; font-size: 15px; font-weight: 600; font-family: var(--font-display); }
.related-card p { margin: 0; font-size: 13px; color: var(--muted); }

/* Error pages */
.error-shell {
  min-height: calc(100dvh - var(--header-h));
  display: grid; place-items: center;
  padding: 60px 24px;
  text-align: center;
}
.error-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.error-shell p { color: var(--muted); margin: 0 0 22px; max-width: 48ch; }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 600px) {
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .winners-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .related-posts { grid-template-columns: repeat(2, 1fr); }
  .news-feed { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section.tight { padding: 56px 0; }
  .hero { padding: 72px 0 96px; }
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .winners-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .related-posts { grid-template-columns: repeat(3, 1fr); }
  .news-feed { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .app-cta-band { grid-template-columns: 1.4fr 1fr; padding: 44px 40px; }
  .responsible-banner { grid-template-columns: auto 1fr; }
  .split-editorial { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .split-editorial.reverse { grid-template-columns: 1fr 1.1fr; }
  .split-editorial.reverse .split-text { order: 1; }
  .split-editorial.reverse .split-media { order: 2; }
  .offer-card { grid-template-columns: 1.4fr 1fr; align-items: center; }
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta, .header-cta-ghost { display: inline-flex; }
  .hamburger { display: none; }
  .sticky-cta { display: none !important; }
  .hero-grid { grid-template-columns: 1.1fr 0.95fr; gap: 56px; }
  .page-shell .page-grid { grid-template-columns: 1fr 280px; gap: 56px; }
  .toc-rail { display: block; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .news-feed { grid-template-columns: repeat(3, 1fr); }
  .score-strip-marquee { gap: 36px; }
}

/* Show sticky CTA on mobile only */
@media (max-width: 1023.98px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ===================== SMALL MOBILE OVERFLOW FIX ===================== */
/* Prevents body horizontal scroll at 320–430px and lets grid items
   shrink below their intrinsic min-content width. */
@media (max-width: 430px) {
  .hero-copy { min-width: 0; }
  .hero-copy h1 { overflow-wrap: break-word; word-wrap: break-word; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { min-width: 0; flex: 1 1 100%; max-width: 100%; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-meta .meta-cell { min-width: 0; }
  .trust-band { grid-template-columns: 1fr 1fr; padding: 16px; }
  .trust-item { min-width: 0; }
  .trust-item p { overflow-wrap: anywhere; }
  .fixture-row { gap: 8px; }
  .fixture-row .fixture-team { min-width: 0; }
  .fixture-row .fixture-team .name { overflow-wrap: anywhere; }
  .hero-fixtures { padding: 10px 14px; }
  .score-strip-inner { padding: 12px 16px; gap: 10px; }
  .score-strip-marquee { gap: 20px; }
  .score-tile { gap: 8px; padding: 6px 10px; font-size: 13px; }
  .score-strip-label { font-size: 11px; }
  .score-strip-cta { font-size: 12px; padding: 7px 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .live-dot { animation: none; }
}

/* Print */
@media print {
  .site-header, .sticky-cta, .score-strip, .drawer-backdrop, .mobile-drawer, .anchor-strip { display: none !important; }
}
