/* ============================================
   IPL Live Fantasy — Minimal Authority Blog
   Grass Field Palette · Inter + Noto Sans Devanagari
   ============================================ */

:root {
  /* Palette — Grass Field */
  --primary: #2C7A36;
  --primary-dark: #1F5A26;
  --primary-soft: #E6F2DF;
  --accent: #B05D00;
  --accent-soft: #F6E8D4;
  --background: #F6FBF3;
  --surface: #FFFFFF;
  --surface-2: #E6F2DF;
  --surface-3: #F2F8EE;
  --text: #1F3020;
  --text-soft: #2E3F30;
  --muted: #5C705D;
  --border: #CBE0C4;
  --border-soft: #DDE9D6;
  --shadow: 0 1px 2px rgba(31, 48, 32, 0.06), 0 4px 12px rgba(31, 48, 32, 0.04);
  --shadow-lg: 0 6px 24px rgba(31, 48, 32, 0.08), 0 2px 8px rgba(31, 48, 32, 0.04);

  /* Type */
  --font-body: 'Inter', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Inter', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Spacing */
  --container: 1200px;
  --container-wide: 1320px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 44px; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 30px; line-height: 1.2; }
h3 { font-size: 22px; line-height: 1.3; }
p { margin: 0 0 1em; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 32px, var(--container-wide)); margin-inline: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.brand-name { white-space: nowrap; }
.brand-tag { display:block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.primary-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.primary-nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.primary-nav a:hover { background: var(--surface-2); text-decoration: none; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--primary-dark); text-decoration: none; }
.header-cta-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.header-cta-ghost:hover { background: var(--surface-3); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 32px rgba(31,48,32,0.10);
  transform: translateX(100%);
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
  z-index: 90;
  overflow-y: auto;
  padding: 80px 20px 100px;
  display: none;
  visibility: hidden;
  pointer-events: none;
  contain: layout paint;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  display: block;
  transition: transform 0.28s ease, visibility 0s linear 0s;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-drawer nav a:last-child { border-bottom: 0; }
.mobile-drawer nav a:hover { background: var(--surface-2); text-decoration: none; }
.mobile-drawer-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(31,48,32,0.40);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 85;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(44, 122, 54, 0.25);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--surface-2); text-decoration: none; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: #8E4A00; border-color: #8E4A00; text-decoration: none; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ===== SECTIONS ===== */
section { padding: 64px 0; }
section.tight { padding: 40px 0; }
section.alt { background: var(--surface-3); }
section.tinted { background: var(--primary-soft); }
section.dark-band {
  background: linear-gradient(135deg, #1F5A26, #143C18);
  color: #E6F2DF;
}
section.dark-band h1, section.dark-band h2, section.dark-band h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 68ch;
}
.section-head { margin-bottom: 36px; max-width: 780px; }
.section-head h2 { margin-bottom: 8px; }
.section-head .lede { margin: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--surface-3), var(--background));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(180deg, transparent 62%, var(--accent-soft) 62%);
  padding: 0 4px;
}
.hero .lede { font-size: 20px; margin-bottom: 28px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--muted); }
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item svg { width: 16px; height: 16px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--primary-soft);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating {
  position: absolute;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.hero-floating .pill {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}
.hero-floating.top-right { top: 18px; right: 18px; }
.hero-floating.bottom-left { bottom: 18px; left: 18px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.trust-strip-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip-item strong { color: var(--text); font-weight: 700; }

/* ===== HUB GRID ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hub-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  text-decoration: none;
}
.hub-card-img {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
}
.hub-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hub-card-body { padding: 20px 22px 22px; }
.hub-card-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.hub-card h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.35; }
.hub-card p { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.hub-card-cta { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ===== TONIGHT'S MATCH PREVIEW (hub listing) ===== */
.tonight-preview {
  margin: 8px 0 36px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border, rgba(15,23,42,0.10));
  background: linear-gradient(135deg, rgba(0,128,55,0.06) 0%, rgba(15,23,42,0.02) 100%);
  padding: 6px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
}
.tonight-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: calc(var(--radius-lg, 16px) - 4px);
  overflow: hidden;
}
.tonight-card .hub-card-img { aspect-ratio: 16 / 10; height: 100%; }
.tonight-card .hub-card-body { padding: 22px 26px 24px; }
.tonight-eyebrow { color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.tonight-card h3 { font-size: 22px; line-height: 1.3; color: var(--text, #0f172a); margin-bottom: 10px; }
.tonight-meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.tonight-blurb { font-size: 15px; line-height: 1.55; color: var(--text-soft, #475569); margin-bottom: 14px; }
.tonight-cta { font-size: 14px; font-weight: 700; color: var(--primary); }
.tonight-card:hover { transform: translateY(-2px); transition: transform 180ms ease; }
@media (max-width: 720px) {
  .tonight-card { grid-template-columns: 1fr; }
  .tonight-card .hub-card-img { aspect-ratio: 16 / 9; }
  .tonight-card h3 { font-size: 19px; }
}

/* ===== EDITORIAL LEAD (split feature) ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-split.reverse > :first-child { order: 2; }
.feature-split-img {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.feature-split-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-split-body h2 { margin-bottom: 12px; }
.feature-split-body .lede { margin-bottom: 20px; }
.feature-split-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-soft); }
.feature-split-stat .num { font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; line-height: 1; }
.feature-split-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ===== TOPIC NAVIGATOR (pill list) ===== */
.topic-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.topic-nav a {
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all 0.15s ease;
}
.topic-nav a:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

/* ===== VISUAL FEATURE (collage band) ===== */
.collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.collage-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.collage-cell img { width: 100%; height: 100%; object-fit: cover; }
.collage-cell.large { grid-row: span 2; }
.collage-cell-label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

/* ===== COMPARISON TABLE ===== */
.compare-wrap {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table thead { background: var(--surface-2); }
.compare-table th { font-weight: 700; color: var(--text); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--surface-3); }
.compare-table .yes { color: var(--primary); font-weight: 700; }
.compare-table .no { color: var(--muted); }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; display: block; }

/* ===== LATEST REPORTING (feed) ===== */
.feed {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}
.feed-lead {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.feed-lead:hover { text-decoration: none; }
.feed-lead-img { aspect-ratio: 16 / 9; overflow: hidden; }
.feed-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.feed-lead-body { padding: 24px 26px 26px; }
.feed-lead-body h3 { font-size: 24px; margin-bottom: 10px; }
.feed-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.feed-side { display: flex; flex-direction: column; gap: 14px; }
.feed-side-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
}
.feed-side-item:hover { border-color: var(--primary); text-decoration: none; }
.feed-side-item-img { aspect-ratio: 1; border-radius: 8px; overflow: hidden; }
.feed-side-item-img img { width: 100%; height: 100%; object-fit: cover; }
.feed-side-item h4 { font-size: 15px; line-height: 1.35; margin: 0 0 6px; }
.feed-side-item .meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== TRUST & SAFETY ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-tile {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
}
.trust-tile-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 14px;
  font-weight: 800;
}
.trust-tile h3 { font-size: 17px; margin-bottom: 6px; }
.trust-tile p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
}
.step-num {
  counter-increment: step;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--text-soft);
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: #14261A;
  color: #C8D6C4;
  padding: 56px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 10px; }
.footer-blurb { font-size: 14px; color: #95A697; margin-bottom: 18px; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #C8D6C4; font-size: 14px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #2A3F30;
  font-size: 13px;
  color: #95A697;
}
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #2A3F30;
  display: grid; place-items: center;
  color: #C8D6C4;
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }

/* ===== STICKY MOBILE AFFILIATE CTA ===== */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(31,48,32,0.35), 0 2px 8px rgba(31,48,32,0.20);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.sticky-cta:hover { text-decoration: none; background: var(--primary-dark); }
.sticky-cta .sticky-text { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-cta .sticky-text small { font-size: 11px; font-weight: 500; opacity: 0.85; }
.sticky-cta .sticky-action {
  background: #fff;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
}

/* ===== IN-CONTEXT EDITORIAL ===== */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.6em; }
.prose p { font-size: 17px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose figure { margin: 28px 0; }
.prose figure img { border-radius: var(--radius-lg); width: 100%; }
.prose figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--primary);
  background: var(--surface-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  font-style: italic;
  color: var(--text-soft);
}
.prose .callout {
  background: var(--accent-soft);
  border: 1px solid #E6C28A;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.prose .callout strong { color: var(--accent); }
.toc {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.toc ol { padding-left: 22px; margin: 0; }
.toc a { font-size: 15px; }

/* ===== ARTICLE BANNER ===== */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1F5A26, #2C7A36);
  color: #fff;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/img/hero/cricket-stadium-floodlights-night.webp') center/cover;
  opacity: 0.32;
}
.page-banner-inner { position: relative; z-index: 1; padding: 56px 0; max-width: 820px; }
.page-banner h1 { color: #fff; font-size: 44px; margin-bottom: 12px; }
.page-banner p { color: #E6F2DF; font-size: 18px; margin: 0; }

/* ===== UTILITIES ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.divider {
  height: 1px;
  background: var(--border-soft);
  margin: 32px 0;
}
.callout-strip {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 44px; }
  .feed { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 28px; }
  .feature-split.reverse > :first-child { order: 0; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  section { padding: 48px 0; }
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 17px; }
  .hero-floating { display: none; }
  .primary-nav { display: none; }
  .header-cta, .header-cta-ghost { display: none; }
  .hamburger { display: inline-flex; margin-left: auto; }
  .header-inner { gap: 8px; }
  .hub-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feed-side-item { grid-template-columns: 80px 1fr; }
  .compare-table { font-size: 14px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .sticky-cta { display: flex; }
  .page-banner { min-height: 240px; }
  .page-banner h1 { font-size: 32px; }
  .page-banner-inner { padding: 40px 0; }
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  section[id] { scroll-margin-top: 80px; }
  .feature-split-stats { grid-template-columns: 1fr 1fr; }
  .toc { padding: 14px 18px; }
  .prose p { font-size: 16px; }
  /* Hamburger z-index fix */
  .hamburger { position: relative; z-index: 300; }
  .site-header { z-index: 250; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .hero-cta-row .btn { flex: 1 1 auto; }
  .feed-side-item { grid-template-columns: 70px 1fr; }
  .footer-bottom { flex-direction: column; }
}