/* ==========================================================================
   boltfantasy.com — print-journal editorial rummy desk
   Mint scorecard palette · Nunito Sans · paper-and-ink surfaces
   ========================================================================== */

:root {
  --primary: #087A5B;
  --primary-dark: #06634A;
  --accent: #E28222;
  --accent-dark: #B86415;
  --background: #F2FAF6;
  --surface: #FFFFFF;
  --surface-2: #DCF3E8;
  --surface-3: #EAF6EF;
  --text: #12322B;
  --muted: #55716A;
  --rule: #BFE2D4;
  --rule-strong: #7BB89C;
  --warn: #8C3A12;
  --warn-soft: #FBE9D7;
  --shadow-sm: 0 1px 2px rgba(8,122,91,.06);
  --shadow-md: 0 4px 14px rgba(8,122,91,.08);
  --shadow-lg: 0 12px 30px rgba(8,122,91,.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --max: 1180px;
  --gutter: 22px;
  --space-1: .5rem;
  --space-2: .85rem;
  --space-3: 1.2rem;
  --space-4: 1.8rem;
  --space-5: 2.6rem;
  --space-6: 3.6rem;
  --space-7: 4.8rem;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Nunito Sans','Noto Sans Devanagari',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}

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

a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--primary-dark); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito Sans','Noto Sans Devanagari',sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(32px, 5.2vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.6vw, 36px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }
h4 { font-size: clamp(17px, 1.8vw, 19px); }

p { margin: 0 0 1rem; }
ul,ol { margin: 0 0 1rem; padding-left: 1.3rem; }
li { margin-bottom: .35rem; }

section[id] { scroll-margin-top: 88px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wide { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============================ MASTHEAD ============================ */

.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.masthead .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0;
}
.masthead .stamps { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.masthead .stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
}
.masthead .stamp svg { width: 14px; height: 14px; }
.masthead .meta { font-variant-numeric: tabular-nums; }

/* ============================ HEADER ============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242,250,246,.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
}
.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .name strong { font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -.01em; }
.brand .name span { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.main-nav {
  display: none;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.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); }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .header-cta { display: inline-flex; }
}
@media (max-width: 1023px) {
  .header-cta { display: none; }
  .main-nav { display: none; }
  .site-header .row { gap: 12px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  background: var(--surface);
  border-left: 1px solid var(--rule);
  box-shadow: -16px 0 40px rgba(8,122,91,.14);
  padding: 88px 24px 28px;
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 70;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
}
.mobile-drawer[data-open="true"] { transform: translateX(0); }
.mobile-drawer nav,
.mobile-drawer .drawer-cta,
.mobile-drawer .drawer-meta,
.mobile-drawer .drawer-close { visibility: hidden; }
.mobile-drawer[data-open="true"] nav,
.mobile-drawer[data-open="true"] .drawer-cta,
.mobile-drawer[data-open="true"] .drawer-meta,
.mobile-drawer[data-open="true"] .drawer-close { visibility: visible; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--rule);
}
.mobile-drawer nav a:hover { color: var(--primary); }
.mobile-drawer .drawer-cta { margin-top: 18px; }
.mobile-drawer .drawer-meta { margin-top: 22px; font-size: 12px; color: var(--muted); line-height: 1.55; }
.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  display: grid;
  place-items: center;
}
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(8,122,91,.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 65;
}
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

@media (min-width: 1024px) {
  .mobile-drawer, .scrim { display: none; }
}

/* ============================ BUTTONS ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--surface-2); color: var(--primary-dark); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--surface); }

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

/* ============================ HERO ============================ */

.hero {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .grid { grid-template-columns: 1.05fr .95fr; gap: var(--space-6); padding: var(--space-7) 0; }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary);
  padding: 6px 12px;
  background: var(--surface-2);
  border-radius: 999px;
}
.hero h1 { color: var(--text); margin: .35em 0 .4em; }
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}
.hero .rule-of-day {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--surface-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.hero .rule-of-day .badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
}
.hero .rule-of-day .body strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 4px; }
.hero .rule-of-day .body p { margin: 0; font-size: 14.5px; color: var(--muted); }

.hero-frame {
  position: relative;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  aspect-ratio: 4 / 3;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-frame .caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--rule);
}

/* ============================ SECTIONS ============================ */

.section {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--rule);
}
.section.tight { padding: var(--space-5) 0; }
.section:last-child { border-bottom: 0; }
.section h2 { position: relative; padding-top: 6px; }
.section h2 .kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
}

.band-paper { background: var(--surface); }
.band-mint { background: var(--surface-3); }
.band-white { background: var(--background); }

/* ============================ WHY ============================ */

.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 900px) {
  .why { grid-template-columns: 1.3fr 1fr; gap: var(--space-5); }
}
.why .lede p { font-size: 18px; color: var(--text); line-height: 1.7; max-width: 62ch; }
.why .criteria {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.why .criteria li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
}
.why .criteria li strong { color: var(--text); display: block; font-size: 15px; margin-bottom: 2px; }
.why .criteria .num {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ============================ EVIDENCE DESK ============================ */

.evidence-desk {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.evidence-desk .rail {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-3);
  scrollbar-width: thin;
  scrollbar-color: var(--rule-strong) transparent;
}
.evidence-desk .rail::-webkit-scrollbar { height: 4px; }
.evidence-desk .rail::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 4px; }
.evidence-tab {
  flex-shrink: 0;
  padding: 16px 22px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  position: relative;
  font-family: inherit;
}
.evidence-tab:hover { color: var(--text); }
.evidence-tab[aria-selected="true"] {
  color: var(--primary);
  background: var(--surface);
  border-bottom-color: var(--accent);
}

.evidence-panel {
  display: none;
  padding: 28px;
  gap: 22px;
}
.evidence-panel[aria-hidden="false"] { display: grid; }
.evidence-panel .panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 800px) {
  .evidence-panel .panel-grid { grid-template-columns: 1fr 1fr; }
}
.evidence-panel h3 { color: var(--primary); margin-bottom: 6px; }
.evidence-panel p { color: var(--muted); }
.evidence-panel ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.evidence-panel ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.55;
}
.evidence-panel ul li::before {
  content: counter(evi);
  counter-increment: evi;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.evidence-panel ul { counter-reset: evi; }
.evidence-panel .figure {
  background: var(--surface-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.evidence-panel .figure strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 4px; }
.evidence-panel .figure .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--rule);
}
.evidence-panel .figure .row:last-child { border-bottom: 0; }
.evidence-panel .figure .row span:last-child {
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* ============================ MELD PLATE ============================ */

.meld-plate {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 900px) {
  .meld-plate { grid-template-columns: 280px 1fr; gap: var(--space-5); }
}
.meld-plate .frame {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.meld-plate .frame .plate-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.meld-plate .frame h3 { color: var(--primary); }
.meld-diagrams {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .meld-diagrams { grid-template-columns: repeat(3, 1fr); } }
.meld {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.meld .cards {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 14px 0 10px;
}
.meld .card {
  width: 44px;
  height: 60px;
  background: var(--surface);
  border: 1.5px solid var(--text);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--text);
  font-size: 18px;
  box-shadow: 2px 2px 0 var(--surface-2);
}
.meld .card.red { color: #A32B2B; }
.meld h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.meld p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============================ FORMAT PATHWAY ============================ */

.format-pathway {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) {
  .format-pathway { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.format-step {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.format-step .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.format-step h3 { color: var(--primary); font-size: 22px; }
.format-step p { font-size: 14.5px; color: var(--muted); margin: 0 0 10px; }
.format-step .nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
}
.format-step .nums div span:first-child { display: block; font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.format-step .nums div span:last-child { display: block; font-size: 18px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }

/* ============================ TIMELINE ============================ */

.timeline {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  overflow-x: auto;
}
.timeline .stops {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 760px;
  position: relative;
}
.timeline .stops::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28px;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}
.timeline .stop {
  position: relative;
  z-index: 1;
  text-align: center;
}
.timeline .stop .dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}
.timeline .stop .dot.live { background: var(--accent); border-color: var(--accent); color: #fff; }
.timeline .stop h4 { font-size: 14.5px; color: var(--text); margin-bottom: 6px; }
.timeline .stop p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ============================ SCORING LEDGER ============================ */

.ledger {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ledger table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 14.5px;
}
.ledger thead {
  background: var(--surface-3);
}
.ledger th {
  text-align: left;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.ledger th:last-child, .ledger td:last-child { text-align: right; }
.ledger td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  vertical-align: top;
}
.ledger tr:last-child td { border-bottom: 0; }
.ledger td strong { color: var(--text); display: block; font-weight: 700; margin-bottom: 2px; }
.ledger td .badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--surface-2);
  color: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ledger td .badge.live { background: var(--accent); color: #fff; }
.ledger-wrap { overflow-x: auto; }

/* ============================ STRATEGY BOUNDARY ============================ */

.boundary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) { .boundary { grid-template-columns: 1fr 1fr; gap: 22px; } }
.boundary .col {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
}
.boundary .col h3 { display: flex; align-items: center; gap: 10px; }
.boundary .col h3 .dot-c {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.boundary .col.legal h3 .dot-c { background: var(--primary); }
.boundary .col.prob h3 .dot-c { background: var(--accent); }
.boundary .col ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.boundary .col ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14.5px;
  color: var(--muted);
}
.boundary .col ul li:last-child { border-bottom: 0; }
.boundary .col ul li strong { color: var(--text); }

/* ============================ PLATFORM REVIEW ============================ */

.review {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 900px) { .review { grid-template-columns: 1.4fr 1fr; gap: var(--space-5); } }
.review .body p { font-size: 17px; color: var(--text); line-height: 1.75; max-width: 64ch; }
.review .criteria-list {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 6px 22px;
}
.review .criteria-list dl { margin: 14px 0; }
.review .criteria-list dt {
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.review .criteria-list dd {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.review .criteria-list dd .grade {
  display: inline-block;
  background: var(--surface-2);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  margin-left: 6px;
}

/* ============================ COMPARISON LEDGER ============================ */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .compare-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 22px;
  min-width: 0;
}
.compare-card .name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.compare-card h3 { color: var(--primary); font-size: 20px; }
.compare-card .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
  color: var(--muted);
  gap: 10px;
}
.compare-card .stat-row:last-of-type { border-bottom: 0; }
.compare-card .stat-row span:last-child {
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* ============================ AFFILIATE PANEL ============================ */

.route-panel {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 800px) { .route-panel { grid-template-columns: 1fr auto; gap: 28px; } }
.route-panel .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.route-panel h3 { color: var(--text); margin-bottom: 6px; font-size: 22px; }
.route-panel p { font-size: 14.5px; color: var(--muted); margin: 0; max-width: 60ch; }
.route-panel .disclosure {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================ RESPONSIBLE PLAY ============================ */

.control-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .control-map { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .control-map { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; } }
.control-tile {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  min-width: 0;
}
.control-tile .ico {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 10px;
}
.control-tile h4 { font-size: 14.5px; color: var(--text); margin-bottom: 4px; }
.control-tile p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================ UPDATE REGISTER ============================ */

.register {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 6px 22px;
}
.register .entry {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
}
.register .entry:last-child { border-bottom: 0; }
.register .date {
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.register .entry h4 { font-size: 15.5px; color: var(--text); margin-bottom: 4px; }
.register .entry p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.register .entry .tag {
  display: inline-block;
  background: var(--surface-2);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 6px;
}
.register .entry .tag.warn { background: var(--warn-soft); color: var(--warn); }
.register .entry .tag.live { background: var(--accent); color: #fff; }

/* ============================ COLOPHON ============================ */

.colophon {
  background: var(--surface-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 26px;
  font-size: 14px;
  color: var(--muted);
}
.colophon h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.colophon p { margin-bottom: 10px; line-height: 1.7; }
.colophon ul { padding-left: 1.2rem; margin: 0; }
.colophon ul li { font-size: 14px; margin-bottom: 4px; }

/* ============================ FAQ ============================ */

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.faq details[open] { border-color: var(--rule-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 400;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================ ARTICLES / LISTS ============================ */

.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.post-list article {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}
.post-list article .date {
  font-size: 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.post-list article h3 { font-size: 17px; color: var(--text); margin-bottom: 4px; }
.post-list article p { font-size: 14px; color: var(--muted); margin: 0; }
.post-list article a.title { color: inherit; text-decoration: none; }
.post-list article a.title:hover h3 { color: var(--primary); }

/* ============================ EDITORIAL CONTENT (CHILD PAGES) ============================ */

.article-shell {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.article-shell p { font-size: 16px; line-height: 1.78; color: var(--text); margin: 0 0 1.1rem; }
.article-shell p.lede { font-size: 19px; color: var(--text); font-weight: 500; }
.article-shell h2 { color: var(--primary); margin-top: 1.6em; }
.article-shell h3 { color: var(--text); margin-top: 1.3em; }
.article-shell ul, .article-shell ol { font-size: 16px; line-height: 1.75; color: var(--text); }
.article-shell ul li, .article-shell ol li { margin-bottom: .55rem; }
.article-shell blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.4rem 0;
  padding: 6px 0 6px 18px;
  color: var(--muted);
  font-style: italic;
}
.article-shell figure { margin: 1.4rem 0; }
.article-shell figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
}
.article-shell figure figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.toc {
  background: var(--surface-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0;
}
.toc h4 { font-size: 13px; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc ol li { margin-bottom: 4px; font-size: 14px; }
.toc ol li a { color: var(--text); text-decoration: none; }
.toc ol li a:hover { color: var(--primary); }

.callout {
  background: var(--surface-3);
  border: 1px solid var(--rule-strong);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 1.4rem 0;
  font-size: 15px;
  color: var(--text);
}
.callout strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }

.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: start;
}
.step-list li::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.step-list li strong { display: block; color: var(--text); margin-bottom: 2px; font-size: 15px; }
.step-list li span { font-size: 14.5px; color: var(--muted); }

/* ============================ HUB HEADER ============================ */

.hub-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  padding: var(--space-6) 0 var(--space-5);
}
.hub-hero .breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.hub-hero .breadcrumbs a { color: var(--muted); text-decoration: none; }
.hub-hero .breadcrumbs a:hover { color: var(--primary); }
.hub-hero .breadcrumbs span { margin: 0 6px; }
.hub-hero h1 { color: var(--text); max-width: 18ch; }
.hub-hero .lede { font-size: 19px; color: var(--muted); max-width: 62ch; line-height: 1.65; margin-top: 12px; }
.hub-hero .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.hub-hero .meta-row strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }

/* ============================ FOOTER ============================ */

.site-footer {
  background: var(--text);
  color: #D6E5DC;
  padding: var(--space-6) 0 var(--space-4);
  margin-top: 0;
}
.site-footer a { color: #B8D6C8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #fff;
}
.footer-brand .brand-mark .mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
}
.footer-brand p { font-size: 14px; color: #B8D6C8; max-width: 36ch; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 800;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: var(--space-3);
  font-size: 12.5px;
  color: #8FB1A0;
}
.disclaimer-line {
  font-size: 12.5px;
  color: #8FB1A0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 22px;
  padding-top: 18px;
  line-height: 1.7;
  max-width: 80ch;
}

/* ============================ MOBILE STICKY CTA ============================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--rule);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 -4px 20px rgba(8,122,91,.10);
}
.sticky-cta .label {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.2;
  flex: 0 0 auto;
}
.sticky-cta .label strong { display: block; color: var(--text); font-size: 13px; }
.sticky-cta .btn {
  flex: 1 1 auto;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 999px;
  width: 100%;
}
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

body { padding-bottom: 78px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ============================ UTILITIES ============================ */

.rule-line {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--space-3) 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.text-muted { color: var(--muted); }
.text-warn { color: var(--warn); }
.bg-paper { background: var(--surface); }
.bg-mint { background: var(--surface-3); }
.border-paper { border: 1px solid var(--rule); }
.radius { border-radius: var(--radius-md); }
.no-bullet { list-style: none; padding: 0; }

/* Image safety */
img { background: var(--surface-2); }

/* ============================ EXTRA HOMEPAGE BLOCKS ============================ */

/* Masthead */
.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.masthead .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}
.masthead .stamps { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.masthead .stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
  font-size: 12.5px;
}
.masthead .stamp svg { width: 14px; height: 14px; color: var(--primary); }
.masthead .meta { font-variant-numeric: tabular-nums; color: var(--primary); font-weight: 700; font-size: 12.5px; }
.masthead .meta strong { color: var(--accent); }

/* Evidence panel grid (per-tab) */
.evidence-panel .ed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
  align-items: start;
}
@media (min-width: 720px) { .evidence-panel .ed-grid { grid-template-columns: 200px 1fr; gap: 22px; } }
.evidence-panel figure { margin: 0; }
.evidence-panel figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 1/1; object-fit: cover; }
.evidence-panel figcaption { font-size: 12px; color: var(--muted); margin-top: 6px; }
.evidence-panel .ed-list { list-style: none; padding: 0; margin: 0; }
.evidence-panel .ed-list li { padding: 8px 0; border-bottom: 1px dashed var(--rule); font-size: 14.5px; }
.evidence-panel .ed-list li:last-child { border-bottom: 0; }
.evidence-panel .ed-list li a { color: var(--primary); text-decoration: none; font-weight: 700; }
.evidence-panel .ed-list li a:hover { color: var(--accent); }

/* Meld plate */
.meld-plate { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .meld-plate { grid-template-columns: 1fr; gap: 28px; } }
.meld-plate .frame { background: var(--surface); border: 1px solid var(--rule-strong); border-radius: var(--radius-lg); padding: 22px; display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .meld-plate .frame { grid-template-columns: 1fr; gap: 20px; } }
.meld-plate .plate-title { font-size: 12px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; }
.meld-plate .plate-figure { margin: 0; }
.meld-plate .plate-figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 4/3; object-fit: cover; }
.meld-plate .plate-figure figcaption { font-size: 13px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Format pathway */
.format-pathway { background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.format-pathway .steps { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 18px; }
@media (min-width: 800px) { .format-pathway .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.format-pathway .step { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.format-pathway .step .num { width: 32px; height: 32px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.format-pathway .step h3 { color: var(--primary); margin: 0; font-size: 18px; }
.format-pathway .step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.format-pathway .step img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; border: 1px solid var(--rule); }
.format-pathway .step .btn { margin-top: auto; align-self: flex-start; }

/* Timeline block */
.timeline-block { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.timeline { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.timeline .stops { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.timeline .stops::before { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; height: 1px; background: var(--rule-strong); }
.timeline .stop { background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 14px; text-align: center; position: relative; }
.timeline .stop .dot { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 2px solid var(--rule-strong); color: var(--primary); display: grid; place-items: center; margin: 0 auto 8px; font-weight: 800; font-size: 14px; position: relative; z-index: 1; }
.timeline .stop .dot.live { background: var(--accent); border-color: var(--accent); color: #fff; }
.timeline .stop h4 { font-size: 14px; color: var(--text); margin: 0 0 4px; font-weight: 800; }
.timeline .stop p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; }
.timeline-figure { margin: 0; }
.timeline-figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 16/9; object-fit: cover; }
.timeline-figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Scoring ledger */
.scoring-ledger { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.scoring-ledger .ledger { display: grid; gap: 0; border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; background: var(--surface-3); margin-bottom: 18px; }
.scoring-ledger .row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; border-bottom: 1px solid var(--rule); font-size: 14px; }
@media (min-width: 720px) { .scoring-ledger .row { grid-template-columns: 80px 1.4fr 1.2fr 1.4fr; gap: 14px; align-items: center; } }
.scoring-ledger .row:last-child { border-bottom: 0; }
.scoring-ledger .cell { color: var(--text); }
.scoring-ledger .cell.num { color: var(--primary); font-weight: 800; font-size: 12px; letter-spacing: .1em; }
.scoring-ledger .cell.label { font-weight: 700; color: var(--text); }
.scoring-ledger .cell.value { font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.scoring-ledger .cell.note { font-size: 13px; color: var(--muted); }
.scoring-ledger .ledger-figure { margin: 0; }
.scoring-ledger .ledger-figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 4/3; object-fit: cover; }
.scoring-ledger .ledger-figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Strategy boundary */
.strategy-boundary { background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.strategy-boundary .columns { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 12px; }
@media (min-width: 800px) { .strategy-boundary .columns { grid-template-columns: 1fr 1fr; gap: 28px; } }
.strategy-boundary .col { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 22px; }
.strategy-boundary .col h3 { color: var(--primary); margin: 0 0 10px; font-size: 18px; }
.strategy-boundary .col ul { padding-left: 1.1rem; margin: 0; }
.strategy-boundary .col ul li { font-size: 14.5px; color: var(--text); margin-bottom: 8px; line-height: 1.6; }

/* Platform review */
.platform-review { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.platform-review .grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
@media (min-width: 900px) { .platform-review .grid { grid-template-columns: 1.4fr 1fr; gap: 28px; } }
.platform-review .text p { font-size: 15px; color: var(--text); line-height: 1.7; margin: 0 0 12px; }
.platform-review figure { margin: 0; }
.platform-review figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 3/4; object-fit: cover; }
.platform-review figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Comparison ledger */
.comparison-ledger { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.comparison-ledger .table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius-md); background: var(--surface-3); margin-bottom: 18px; }
.comparison-ledger table { width: 100%; min-width: 600px; border-collapse: collapse; font-size: 14px; }
.comparison-ledger th, .comparison-ledger td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
.comparison-ledger thead th { background: var(--surface); color: var(--primary); font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.comparison-ledger tbody th { background: var(--surface); color: var(--text); font-weight: 700; }
.comparison-ledger tr:last-child td, .comparison-ledger tr:last-child th { border-bottom: 0; }
.comparison-ledger .ledger-figure { margin: 0; }
.comparison-ledger .ledger-figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 16/9; object-fit: cover; }
.comparison-ledger .ledger-figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Responsible play */
.responsible-play { background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.responsible-play .controls { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 18px; }
@media (min-width: 800px) { .responsible-play .controls { grid-template-columns: repeat(5, 1fr); gap: 12px; } }
.responsible-play .ctl { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 18px; }
.responsible-play .ctl .badge { width: 32px; height: 32px; border-radius: 8px; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.responsible-play .ctl h3 { color: var(--primary); margin: 0 0 8px; font-size: 16px; }
.responsible-play .ctl p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.responsible-play .ledger-figure { margin: 0; }
.responsible-play .ledger-figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); aspect-ratio: 4/3; object-fit: cover; }
.responsible-play .ledger-figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* Update register */
.update-register { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.update-register .feed { list-style: none; padding: 0; margin: 0; counter-reset: ureg; }
.update-register .feed li { background: var(--surface-3); border: 1px solid var(--rule); border-left: 3px solid var(--accent); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 12px; }
.update-register .feed li:last-child { margin-bottom: 0; }
.update-register .feed .meta { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.update-register .feed .meta time { font-weight: 700; color: var(--text); }
.update-register .feed .meta em { color: var(--accent); font-style: normal; font-weight: 700; }
.update-register .feed h3 { color: var(--primary); margin: 0 0 6px; font-size: 17px; }
.update-register .feed p { font-size: 14.5px; color: var(--text); margin: 0; line-height: 1.6; }
.update-register .feed p a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* Route panel section */
.route-panel-section { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; }
.route-panel-section .route-panel { background: var(--surface-3); }
.route-panel .label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* FAQ details */
.faq { display: grid; gap: 10px; margin-top: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 14px 18px; }
.faq details[open] { border-color: var(--rule-strong); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--text); font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--primary); font-weight: 800; font-size: 18px; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* Post-list */
.post-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-list article { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 18px; }
.post-list article .date { font-size: 12px; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.post-list article h3 { font-size: 17px; color: var(--text); margin-bottom: 4px; }
.post-list article p { font-size: 14px; color: var(--muted); margin: 0; }
.post-list article a.title { color: inherit; text-decoration: none; }
.post-list article a.title:hover h3 { color: var(--primary); }

/* Article / hub shells */
.article-shell { padding: 24px 0; }
.article-shell p { font-size: 16px; line-height: 1.78; color: var(--text); margin: 0 0 1.1rem; }
.article-shell p.lede { font-size: 19px; color: var(--text); font-weight: 500; }
.article-shell h2 { color: var(--primary); margin-top: 1.6em; font-size: 24px; }
.article-shell h3 { color: var(--text); margin-top: 1.3em; font-size: 19px; }
.article-shell ul, .article-shell ol { font-size: 16px; line-height: 1.75; color: var(--text); }
.article-shell ul li, .article-shell ol li { margin-bottom: .55rem; }
.article-shell blockquote { border-left: 4px solid var(--accent); padding: 10px 16px; background: var(--surface-3); border-radius: 0 8px 8px 0; margin: 1.2rem 0; color: var(--text); font-style: italic; }
.article-shell figure { margin: 1.4rem 0; }
.article-shell figure img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); display: block; }
.article-shell figure figcaption { font-size: 13px; color: var(--muted); margin-top: 6px; font-style: italic; }

.toc { background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 18px; }
.toc h4 { font-size: 13px; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc ol li { margin-bottom: 4px; font-size: 14px; }
.toc ol li a { color: var(--text); text-decoration: none; }
.toc ol li a:hover { color: var(--primary); }

.callout { background: var(--surface-3); border: 1px solid var(--rule-strong); border-left: 4px solid var(--accent); border-radius: var(--radius-md); padding: 16px 20px; margin: 1.4rem 0; }
.callout strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.callout p { margin: 0 !important; color: var(--text); }

.step-list { list-style: none; padding: 0; margin: 1rem 0; counter-reset: step; }
.step-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; margin-bottom: 14px; padding: 14px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); }
.step-list li::before { content: counter(step); 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: 13px; }
.step-list li strong { display: block; color: var(--text); margin-bottom: 2px; font-size: 15px; font-weight: 700; }
.step-list li span { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* Hub hero (left-aligned) */
.hub-hero { padding: 32px 0 18px; border-bottom: 1px solid var(--rule); margin-bottom: 28px; }
.hub-hero .breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.hub-hero .breadcrumbs a { color: var(--muted); text-decoration: none; }
.hub-hero .breadcrumbs a:hover { color: var(--primary); }
.hub-hero .breadcrumbs span { margin: 0 6px; }
.hub-hero h1 { color: var(--text); max-width: 18ch; font-size: clamp(28px, 3.5vw, 38px); line-height: 1.15; }
.hub-hero .lede { font-size: 19px; color: var(--muted); max-width: 62ch; line-height: 1.65; margin-top: 12px; }
.hub-hero .meta-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; padding: 14px 16px; background: var(--surface-3); border: 1px solid var(--rule); border-radius: var(--radius-md); }
@media (min-width: 720px) { .hub-hero .meta-row { grid-template-columns: repeat(3, 1fr); } }
.hub-hero .meta-row strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }
.hub-hero .meta-row span { font-size: 13px; color: var(--muted); }

/* hero copy text spacing */
.hero .copy h1 { color: var(--text); margin: .35em 0 .4em; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; }
.hero .copy h1 .accent { color: var(--accent); }
.hero .copy .lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); line-height: 1.65; max-width: 56ch; margin: 0; }

/* 404/500 page */
.error-page { padding: 64px 0; text-align: center; }
.error-page h1 { font-size: clamp(28px, 4vw, 42px); color: var(--text); margin: 0 0 12px; }
.error-page p { color: var(--muted); margin: 0 0 22px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Comparison table alternative - single-col responsive */
@media (max-width: 720px) {
  .comparison-ledger table { font-size: 13px; }
  .comparison-ledger th, .comparison-ledger td { padding: 10px 12px; }
}

/* News article fix */
.news-article .hero-frame { aspect-ratio: 16/9; }
.news-article .post-list { margin-top: 18px; }

