/* Fantoss — editorial fantasy cricket theme (Sandstone Matchday)
   Palette: warm paper bg, terracotta primary, deep teal accent, espresso ink
   Typography: DM Sans + Noto Sans Devanagari fallback */

:root {
  --primary: #B64B28;
  --primary-600: #9A3D20;
  --primary-700: #7E3219;
  --accent: #0B6E69;
  --accent-600: #095955;
  --background: #FFF8F2;
  --surface: #FFFFFF;
  --surface-2: #FCE8D7;
  --surface-3: #F5E5D0;
  --ink: #312019;
  --ink-2: #4A382C;
  --muted: #745D50;
  --border: #EBCDBA;
  --border-2: #DDB89E;
  --teal-soft: #E3F1EF;
  --terracotta-soft: #FCE0D2;

  --max-w: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 6px rgba(49, 32, 25, 0.06);
  --shadow-lift: 0 6px 20px rgba(49, 32, 25, 0.10);
  --header-h: 72px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: 'DM Sans', 'Noto Sans Devanagari', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--background);
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-700); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -0.018em; }
h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; letter-spacing: -0.012em; }
h3 { font-size: clamp(19px, 1.6vw, 22px); }
h4 { font-size: 18px; }

p { margin: 0 0 1em; }

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}

/* Layout primitives */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
@media (max-width: 720px) {
  .section { padding: 44px 0; }
  .section-tight { padding: 28px 0; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  height: var(--header-h);
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-top: -2px;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
  list-style: none;
  padding: 0;
}
.main-nav a {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: none !important;
}
.header-cta:hover { background: var(--primary-700); }
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .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 */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(49,32,25,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer-inner {
  position: absolute;
  top: 0; right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  background: var(--surface);
  padding: 88px 24px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -8px 0 24px rgba(0,0,0,0.10);
}
.mobile-drawer.is-open .mobile-drawer-inner { transform: translateX(0); }
.mobile-drawer nav { display: block; }
.mobile-drawer nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer nav li { margin-bottom: 4px; }
.mobile-drawer nav a {
  display: block;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
}
.mobile-drawer nav a:hover { background: var(--surface-2); text-decoration: none; }
.mobile-drawer .drawer-cta { margin-top: 18px; display: block; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
  min-height: 48px;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-700); border-color: var(--primary-700); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-600); color: #fff; border-color: var(--accent-600); text-decoration: none; }
.btn-soft { background: var(--terracotta-soft); color: var(--primary-700); border-color: var(--border); }
.btn-soft:hover { background: var(--surface-3); text-decoration: none; }
.btn-sm { padding: 9px 14px; font-size: 13px; min-height: 38px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--terracotta-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.card-icon.teal { background: var(--teal-soft); color: var(--accent); }
.card-title { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.card-body { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-2) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 32px 0 40px; }
}
.hero h1 { margin: 0 0 16px; }
.hero-lede { font-size: 18px; color: var(--ink-2); margin: 0 0 22px; max-width: 56ch; line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 540px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(6px);
}
.hero-floating.top { top: 18px; right: 18px; }
.hero-floating.bot { bottom: 18px; left: 18px; }
.hero-floating strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.hero-floating span { color: var(--muted); font-size: 12px; }

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 26px 36px; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-2); }
.trust-strip-inner .item { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip-inner .badge { width: 18px; height: 18px; border-radius: 50%; background: var(--teal-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

/* Card grid (topic matrix) */
.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.topic-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 168px;
}
.topic-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); border-color: var(--border-2); text-decoration: none; }
.topic-tile .num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--terracotta-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.topic-tile h3 { font-size: 17px; margin: 0; color: var(--ink); }
.topic-tile p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Headline feed (compact) */
.headline-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
@media (max-width: 900px) { .headline-feed { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .headline-feed { grid-template-columns: 1fr; } }
.headline-item {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease;
}
.headline-item:last-child { border-right: none; }
.headline-item:hover { background: var(--surface-2); text-decoration: none; }
.headline-item time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.headline-item h3 { font-size: 15px; line-height: 1.35; margin: 0; color: var(--ink); font-weight: 600; }

/* Split annotation (signature device) */
.split-annotation {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) { .split-annotation { grid-template-columns: 1fr; gap: 24px; } }
.split-annotation .photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lift);
}
.split-annotation .photo img { width: 100%; height: 100%; object-fit: cover; }
.annotation-stack { display: grid; gap: 14px; }
.note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.note-card .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.note-card .body { color: var(--ink); font-size: 15px; line-height: 1.5; margin: 0; }
.note-card.teal { border-left-color: var(--accent); }
.note-card.teal .label { color: var(--accent); }

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 15px;
  table-layout: auto;
}
.data-table th, .data-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); word-wrap: break-word; }
.data-table th { background: var(--surface-2); color: var(--ink); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-2); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Steps */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  align-items: start;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Stat tiles */
.stat-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 720px) { .stat-tiles { grid-template-columns: 1fr 1fr; } }
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: left;
}
.stat-tile .num { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1.1; letter-spacing: -0.02em; }
.stat-tile .label { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* Photo essay (3-image strip) */
.photo-essay { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 760px) { .photo-essay { grid-template-columns: 1fr; } }
.photo-essay figure { margin: 0; }
.photo-essay img { border-radius: 14px; border: 1px solid var(--border); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.photo-essay figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
.photo-essay figcaption strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }

/* Offer cards */
.offer-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .offer-strip { grid-template-columns: 1fr; } }
.offer-card {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--terracotta-soft) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 22px;
}
.offer-card h3 { color: var(--primary-700); margin-top: 0; }
.offer-card .meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

/* Compliance band */
.compliance-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.compliance-band .row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.compliance-band .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.compliance-band p { margin: 0; flex: 1; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* FAQ accordion */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--primary); font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 20px 18px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Hub nav (topic navigator) */
.hub-nav-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 900px) { .hub-nav-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .hub-nav-grid { grid-template-columns: 1fr 1fr; } }
.hub-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.hub-pill:hover { background: var(--surface-2); text-decoration: none; border-color: var(--border-2); }
.hub-pill small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* CTA band (final) */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.86); max-width: 56ch; margin: 0 auto 22px; }
.cta-band .btn-primary { background: #fff; color: var(--primary); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--surface-2); color: var(--primary-700); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Footer */
.site-footer {
  background: #2A1B12;
  color: #D8C8B6;
  padding: 56px 0 28px;
  font-size: 14px;
}
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 16px; font-weight: 600; }
.site-footer a { color: #D8C8B6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; margin-bottom: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand .brand-mark { background: linear-gradient(135deg, #fff 0%, #FCE8D7 100%); color: var(--primary-700); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: #9C8775; font-size: 13px; }
.footer-disclaimer { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; padding: 16px 18px; margin-bottom: 28px; font-size: 13px; color: #BFA793; line-height: 1.55; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #D8C8B6;
  border: 1px solid rgba(255,255,255,0.08);
}
.social-row a:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Mobile sticky CTA */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: 14px;
  z-index: 230;
}
@media (max-width: 720px) {
  .mobile-sticky { display: block; }
}
.mobile-sticky .btn {
  width: 100%;
  box-shadow: 0 6px 18px rgba(49,32,25,0.30);
}
body { padding-bottom: 0; }
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
}

/* Mobile nav display */
@media (max-width: 900px) {
  .main-nav, .header-cta-ghost, .brand-tag { display: none; }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    width: 42px;
    min-width: 42px;
  }
  .header-cta { display: none; }
  .header-inner { gap: 12px; padding: 0 16px; }
}

/* Helpers */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 10px; }
.gap-md { gap: 18px; }
.gap-lg { gap: 28px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Prose */
.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Article hero */
.article-hero {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--background) 100%);
  padding: 56px 0 36px;
}
.article-hero h1 { margin: 0 0 16px; }
.article-meta { color: var(--muted); font-size: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-banner { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); margin-top: 28px; }
.article-banner img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.article-body { padding: 40px 0 60px; }
.article-body img { border-radius: 12px; border: 1px solid var(--border); margin: 24px 0; }

/* Verification checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.checklist .mark { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.checklist .warn { background: #FFF1E6; color: var(--primary-700); }
.checklist strong { display: block; color: var(--ink); margin-bottom: 2px; }
.checklist span { color: var(--muted); font-size: 14px; }

/* Live-style digest */
.digest { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 18px; }
@media (max-width: 760px) { .digest { grid-template-columns: 1fr; } }
.digest-ticker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.ticker-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.ticker-row:last-child { border-bottom: none; }
.ticker-row .meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.ticker-row .row-title { font-weight: 600; color: var(--ink); margin-top: 2px; }
.ticker-row .row-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--teal-soft); color: var(--accent); }
.ticker-row .row-status.upcoming { background: var(--terracotta-soft); color: var(--primary-700); }

/* Editorial colophon */
.colophon { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
@media (max-width: 720px) { .colophon { grid-template-columns: 1fr; } }
.colophon h3 { margin-top: 0; font-size: 16px; }
.colophon ul { list-style: none; padding: 0; margin: 0; }
.colophon li { padding: 6px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--border); }
.colophon li:last-child { border-bottom: none; }

/* Methodology panel */
.methodology {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) { .methodology { grid-template-columns: 1fr; } }
.methodology h3 { margin-top: 0; color: var(--primary-700); }
.methodology p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.methodology .axis { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 14px; }
.methodology .axis:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.methodology .axis-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.methodology .axis-body { color: var(--ink); font-size: 15px; margin-top: 4px; }

/* CTA in body */
.inline-cta {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.inline-cta .copy { flex: 1; min-width: 220px; }
.inline-cta h3 { margin: 0 0 6px; color: var(--primary-700); }
.inline-cta p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* Blog/news cards */
.blog-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 760px) { .blog-row { grid-template-columns: 1fr; } }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.blog-card .thumb { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h3 { font-size: 17px; margin: 0 0 8px; }
.blog-card p { color: var(--muted); font-size: 14px; margin: 0 0 12px; line-height: 1.5; flex: 1; }
.blog-card .read { color: var(--primary); font-weight: 600; font-size: 14px; }

/* Status badges */
.badge { display: inline-block; font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-verified { background: var(--teal-soft); color: var(--accent); }
.badge-pending { background: #FFE9C9; color: #8A5A0F; }
.badge-caution { background: #FFD7CE; color: var(--primary-700); }

/* Form basics */
input, textarea, select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

/* Misc */
hr.rule { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.bg-paper { background: var(--surface); }
.bg-soft { background: var(--surface-2); }
.bg-teal { background: var(--teal-soft); }

/* Accessibility */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Mobile responsive tweaks */
@media (max-width: 720px) {
  .hero-floating { font-size: 12px; padding: 8px 12px; }
  .hero-floating.top { top: 10px; right: 10px; }
  .hero-floating.bot { bottom: 10px; left: 10px; }
  .step { grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 16px; }
  .inline-cta { padding: 18px 18px; }
}

/* Cap hero height on small mobile */
@media (max-width: 480px) {
  .hero { padding: 24px 0 32px !important; }
  .hero-visual { aspect-ratio: 1/1; max-height: 360px; }
  .hero-visual img { height: 100% !important; object-fit: cover !important; }
  .hero-trust { gap: 12px 18px; }
  .hero h1 { font-size: 28px !important; }
  .hero-lede { font-size: 16px !important; }
}

/* Prevent table overflow at all widths */
.table-wrap { max-width: 100%; }
.data-table { table-layout: fixed; word-break: break-word; }
.data-table th, .data-table td { word-break: break-word; overflow-wrap: anywhere; }

/* Prevent any element from exceeding viewport */
img, video, iframe { max-width: 100% !important; }
article, section, div, p, h1, h2, h3, h4, h5, h6 { max-width: 100%; }
html, body { overflow-x: hidden; }