/* ============================================
   powbet — Rummy & Skill-Game Guide
   Stylesheet — Mint Scorecard palette
   Inter + Noto Sans Devanagari (loaded via Google Fonts preconnect)
   ============================================ */

:root {
  --primary: #087A5B;
  --primary-deep: #055641;
  --accent: #E28222;
  --accent-soft: #F4B27A;
  --background: #F2FAF6;
  --surface: #FFFFFF;
  --surface-2: #DCF3E8;
  --surface-3: #E8F6EE;
  --text: #12322B;
  --muted: #55716A;
  --border: #BFE2D4;
  --border-2: #D6EBDF;
  --ink: #0B2018;
  --link: #0B6B4F;
  --link-hover: #094F3B;
  --warn: #B45A12;
  --shadow-card: 0 1px 0 rgba(11, 32, 24, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1200px;
  --container-narrow: 960px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans Devanagari', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--link-hover); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.16; }
h3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.4; }

p { margin: 0 0 1.1em; }

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ===== Chapter numerals (signature device) ===== */
.chapter-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 11vw, 152px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin: 0;
  display: inline-block;
}
.chapter-num .num {
  display: block;
  position: relative;
  padding-bottom: 6px;
}
.chapter-num .num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 84px;
  height: 6px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.85;
}
.chapter-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 250, 246, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.main-nav .nav-link:hover {
  background: var(--surface-2);
  color: var(--primary-deep);
}
.main-nav .nav-link[aria-current="page"] {
  color: var(--primary-deep);
  background: var(--surface-2);
}
.main-nav .nav-cta {
  margin-left: 10px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav .nav-cta:hover { background: #C77014; color: #fff; }

/* Mega menu */
.mega-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 580px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(11, 32, 24, 0.10);
  padding: 22px 24px;
  display: none;
  z-index: 70;
}
.mega-panel[data-open="true"] { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.mega-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}
.mega-panel a:hover { background: var(--surface-2); color: var(--primary-deep); }
.mega-panel a small { display: block; color: var(--muted); font-weight: 500; font-size: 12px; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 80;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 92vw);
  height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--border);
  padding: calc(var(--nav-h) + 12px) 22px 28px;
  overflow-y: auto;
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 32px rgba(11, 32, 24, 0.08);
}
.mobile-drawer[data-open="true"] { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0 0 16px; }
.mobile-drawer li { margin: 0; padding: 0; }
.mobile-drawer a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-2);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-drawer a:hover { background: var(--surface-2); }
.mobile-drawer .drawer-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
}
.mobile-drawer .drawer-section h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.mobile-drawer .drawer-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

/* Drawer backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 32, 24, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 65;
}
.drawer-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }

@media (max-width: 920px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .brand-tag { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #C77014; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--primary-deep);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--primary-deep); }
.btn-soft {
  background: var(--surface);
  color: var(--primary-deep);
  border-color: var(--border);
}
.btn-soft:hover { background: var(--surface-2); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   HERO — utility-scoreboard
   ============================================ */
.hero {
  padding: 56px 0 56px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  margin: 6px 0 18px;
}
.hero h1 strong { color: var(--primary); font-weight: 800; }
.hero .standfirst {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 24px;
  line-height: 1.6;
}
.hero .meta-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero .meta-row span::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}
.hero .meta-row span:first-child::before { content: ""; margin-right: 0; }

/* Scoreboard (meld point-table head) */
.scoreboard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  position: relative;
  overflow: hidden;
}
.scoreboard .scoreboard-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.scoreboard .scoreboard-eyebrow h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.scoreboard .live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}
.scoreboard .live-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(226, 130, 34, 0.2);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(226, 130, 34, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(226, 130, 34, 0.05); }
}
.scoreboard .scoreboard-h {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}
.scoreboard .scoreboard-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.scoreboard table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.scoreboard th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 8px;
  border-bottom: 1px solid var(--border-2);
}
.scoreboard td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-2);
  color: var(--ink);
}
.scoreboard td + td { color: var(--primary-deep); font-weight: 700; text-align: right; }
.scoreboard tr:last-child td { border-bottom: none; }
.scoreboard .foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-2);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.scoreboard .foot strong { color: var(--ink); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-strip-inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--primary-deep);
}
.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.trust-strip-inner span::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ============================================
   SECTION SPACING + HEADERS
   ============================================ */
section.block {
  padding: 64px 0;
  border-top: 1px solid var(--border-2);
}
section.block:first-of-type { border-top: none; }
section.block-tight { padding: 44px 0; }
section.block.tone { background: var(--surface-3); }
section.block.surface { background: var(--surface); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}
.section-head h2 { margin: 6px 0 0; }
.section-head .lede { font-size: 17px; color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 760px) {
  section.block { padding: 44px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   FULL-BLEED PHOTO BAND
   ============================================ */
.photo-band {
  position: relative;
  width: 100%;
  min-height: 360px;
  background: var(--primary-deep);
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 86, 65, 0) 30%, rgba(5, 86, 65, 0.86) 100%);
  z-index: 1;
}
.photo-band .photo-band-inner {
  position: relative;
  z-index: 2;
  padding: 32px 24px 44px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.photo-band h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
  max-width: 720px;
}
.photo-band .chapter-num {
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.photo-band .chapter-tag {
  color: var(--accent-soft);
}
.photo-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 640px;
  margin: 0;
}

/* ============================================
   HUB GRID
   ============================================ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hub-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.hub-card .hub-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.hub-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--ink);
}
.hub-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.hub-card .hub-card-arrow {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
}
.hub-card .hub-card-arrow::after {
  content: " →";
  transition: transform 0.2s ease;
  display: inline-block;
}
.hub-card:hover .hub-card-arrow::after { transform: translateX(3px); }

@media (max-width: 920px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ALTERNATING RAILS (pure vs impure runs)
   ============================================ */
.rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-2);
}
.rail:last-child { border-bottom: none; }
.rail-flip .rail-text { order: 2; }
.rail-flip .rail-image { order: 1; }
@media (max-width: 760px) {
  .rail { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
  .rail .rail-text { order: 2; }
  .rail .rail-image { order: 1; }
  .rail-flip .rail-text { order: 2; }
  .rail-flip .rail-image { order: 1; }
}
.rail-text h3 { margin: 0 0 10px; font-size: clamp(22px, 2.4vw, 28px); }
.rail-text p { font-size: 16px; color: var(--text); margin: 0 0 12px; }
.rail-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.rail-image img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.rail-image .rail-image-caption {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border-2);
}

/* ============================================
   LEDGER TABLE (comparison)
   ============================================ */
.ledger {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ledger table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.ledger thead th {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-deep);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.ledger tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--border-2);
  vertical-align: top;
  color: var(--text);
}
.ledger tbody tr:last-child td { border-bottom: none; }
.ledger tbody tr:hover { background: var(--surface-3); }
.ledger .format-name {
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.ledger .format-desc {
  font-size: 13px;
  color: var(--muted);
}
.verdict-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.verdict-chip.s-best { background: rgba(8, 122, 91, 0.12); color: var(--primary-deep); }
.verdict-chip.s-fast { background: rgba(226, 130, 34, 0.12); color: var(--warn); }
.verdict-chip.s-cash { background: rgba(8, 122, 91, 0.18); color: var(--primary-deep); }
.verdict-chip.s-pool { background: rgba(11, 32, 24, 0.08); color: var(--ink); }
.verdict-chip.s-short { background: rgba(226, 130, 34, 0.12); color: var(--warn); }
.verdict-chip.s-casual { background: rgba(8, 122, 91, 0.12); color: var(--primary-deep); }
.verdict-chip.s-pro { background: rgba(11, 32, 24, 0.08); color: var(--ink); }

@media (max-width: 760px) {
  .ledger table, .ledger thead, .ledger tbody, .ledger tr, .ledger td, .ledger th { display: block; }
  .ledger thead { display: none; }
  .ledger tbody tr {
    border-bottom: 1px solid var(--border-2);
    padding: 16px;
  }
  .ledger tbody td {
    padding: 4px 0;
    border-bottom: none;
  }
  .ledger tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }
}

/* ============================================
   MIXED-MEDIA STRATEGY DESK
   ============================================ */
.desk {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.desk-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-2);
}
.desk-image img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; }
.desk-diagram {
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 22px;
  border: 1px solid var(--border);
  font-size: 14px;
}
.desk-diagram h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.desk-diagram ul { margin: 0; padding-left: 18px; }
.desk-diagram li { margin-bottom: 8px; line-height: 1.55; }
.desk-diagram .arrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 760px) {
  .desk { grid-template-columns: 1fr; padding: 18px; }
}

/* ============================================
   ANNOTATED PORTRAIT (reading-drill)
   ============================================ */
.annotated {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.annotated-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.annotated-image img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.annotated-rail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.annotated-rail h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
}
.annotated-rail ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.annotated-rail ol li { margin-bottom: 10px; }
.annotated-rail ol li strong { color: var(--ink); }
@media (max-width: 760px) {
  .annotated { grid-template-columns: 1fr; }
  .annotated-rail { position: static; }
}

/* ============================================
   PROGRESSIVE DISCLOSURE (rules / KYC / FAQ)
   ============================================ */
.disclosure {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.disclosure details {
  border-bottom: 1px solid var(--border-2);
}
.disclosure details:last-of-type { border-bottom: none; }
.disclosure summary {
  cursor: pointer;
  padding: 16px 18px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary:hover { background: var(--surface-2); }
.disclosure summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.disclosure summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
  line-height: 1;
}
.disclosure details[open] summary::after { content: "−"; }
.disclosure .disclosure-body {
  padding: 4px 18px 18px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}
.disclosure .disclosure-body p { margin: 10px 0; }
.disclosure .disclosure-body ul { padding-left: 20px; }
.disclosure .disclosure-body li { margin-bottom: 6px; }

/* ============================================
   NEWSROOM BRIEFS
   ============================================ */
.newsroom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.brief {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.brief .brief-dateline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.brief .brief-source {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.brief h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
}
.brief p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.6;
  flex-grow: 1;
}
.brief .brief-meta {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border-2);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 920px) { .newsroom { grid-template-columns: 1fr; } }

/* ============================================
   COLOPHON
   ============================================ */
.colophon {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.colophon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.colophon h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
}
.colophon ul { list-style: none; padding: 0; margin: 0; }
.colophon li { margin: 0; padding: 0; }
.colophon a {
  display: block;
  padding: 4px 0;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}
.colophon a:hover { color: var(--primary); text-decoration: underline; }

.colophon-bar {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.colophon-bar .colophon-source {
  max-width: 700px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .colophon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .colophon-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STAT TILE / HELPLINE CARD
   ============================================ */
.helpline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
}
.helpline-card .helpline-num {
  font-size: 96px;
  font-weight: 800;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.helpline-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}
.helpline-card .helpline-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 14px;
}
.helpline-card .helpline-list li {
  margin-bottom: 6px;
  color: var(--text);
}
.helpline-card .helpline-list strong { color: var(--ink); }

@media (max-width: 760px) {
  .helpline-card { grid-template-columns: 1fr; padding: 22px; }
  .helpline-card .helpline-num { font-size: 72px; }
}

/* ============================================
   STAT TILES / VERDICT STRIPS
   ============================================ */
.stat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.stat-tile .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stat-tile .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-tile .stat-foot {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 920px) {
  .stat-tiles { grid-template-columns: 1fr 1fr; }
}

/* Score-strip (platform review) */
.score-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 22px;
}
.score-strip .score-cell {
  flex: 1 1 0;
  min-width: 140px;
  padding: 18px 20px;
  border-right: 1px solid var(--border-2);
  text-align: center;
}
.score-strip .score-cell:last-child { border-right: none; }
.score-strip .score-cell .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.score-strip .score-cell .val {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.score-strip .score-cell .foot {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .score-strip { flex-wrap: wrap; }
  .score-strip .score-cell { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border-2); }
}

/* ============================================
   STEPS / NUMBERED LIST
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.step h4 { margin: 0 0 8px; font-size: 17px; color: var(--ink); }
.step p { font-size: 14px; color: var(--text); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ============================================
   GLOSSARY CARD GRID
   ============================================ */
.glossary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gloss {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.gloss .gloss-term {
  font-weight: 800;
  color: var(--primary-deep);
  font-size: 14px;
  margin-bottom: 6px;
}
.gloss .gloss-def {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 920px) { .glossary { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .glossary { grid-template-columns: 1fr; } }

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta {
  display: none;
}
@media (max-width: 900px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
    gap: 8px;
    box-shadow: 0 -6px 18px rgba(11, 32, 24, 0.08);
  }
  .sticky-cta .btn-primary {
    flex: 1 1 0;
    padding: 14px 12px;
    font-size: 14px;
  }
  .sticky-cta .btn-soft {
    flex: 1 1 0;
    padding: 14px 12px;
    font-size: 14px;
  }
  body { padding-bottom: 80px; }
}

/* ============================================
   ARTICLE PROSE (deep-guide pages)
   ============================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}
.prose h2 {
  font-size: 28px;
  margin: 1.6em 0 0.5em;
  color: var(--ink);
}
.prose h3 {
  font-size: 22px;
  margin: 1.4em 0 0.4em;
  color: var(--ink);
}
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 4px solid var(--accent);
  background: var(--surface-2);
  padding: 14px 18px;
  margin: 1.4em 0;
  font-size: 16px;
  color: var(--ink);
}
.prose a { text-decoration: underline; }
.prose .toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 0 0 28px;
}
.prose .toc h2 { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin: 0 0 10px; }
.prose .toc ol { list-style: decimal inside; padding: 0; margin: 0; font-size: 14px; }
.prose .toc li { margin-bottom: 4px; }
.prose .toc a { color: var(--text); text-decoration: none; }
.prose .toc a:hover { color: var(--primary); text-decoration: underline; }

/* Inline image row */
.inline-image {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin: 28px 0;
  align-items: center;
}
.inline-image.flip { grid-template-columns: 1.2fr 1fr; }
.inline-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.inline-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 760px) {
  .inline-image, .inline-image.flip { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   MISC
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.text-center { text-align: center; }
.muted { color: var(--muted); }
.divider {
  height: 1px;
  background: var(--border-2);
  border: none;
  margin: 32px 0;
}

.compliance-note {
  background: var(--surface-2);
  border-left: 4px solid var(--primary);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  margin: 28px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.compliance-note strong { color: var(--primary-deep); }

.callout {
  background: rgba(226, 130, 34, 0.08);
  border: 1px solid rgba(226, 130, 34, 0.25);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  margin: 22px 0;
  color: var(--text);
}

/* ============================================
   PAGE BANNER (article / hub top)
   ============================================ */
.banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 32px;
}
.banner .banner-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.banner .breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.banner .breadcrumbs a { color: var(--primary); text-decoration: none; }
.banner .breadcrumbs a:hover { text-decoration: underline; }
.banner h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--ink);
}
.banner p.lede {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
  line-height: 1.6;
}

/* ============================================
   FOCUS STATES
   ============================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .sticky-cta, .hamburger, .photo-band::after, .scoreboard .live-dot::before { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* Section ID scroll margin to avoid sticky header overlap */
section[id], div[id] {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* ============================================
   ARTICLE SHELL (newsroom evergreen pages)
   ============================================ */
.article-shell .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.article-shell .meta-row span strong { color: var(--ink); }
.article-hero {
  margin: 0;
  padding: 0 24px 24px;
  background: var(--surface);
}
.article-hero img {
  display: block;
  width: 100%;
  max-width: var(--container);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto;
  border: 1px solid var(--border);
}
.article-hero figcaption,
.article-figure figcaption {
  max-width: var(--container-narrow);
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.article-figure {
  margin: 28px 0;
}
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.prose p { font-size: 18px; line-height: 1.7; color: var(--text); margin: 0 0 1.1em; }
.prose h2 { margin-top: 0.4em; }
.prose h3 { margin-top: 1.2em; }
.prose a { color: var(--link); text-underline-offset: 2px; }
@media (max-width: 720px) {
  .article-shell .meta-row { gap: 10px; font-size: 12px; }
  .article-hero { padding: 0 16px 18px; }
}
