
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/css/fonts/ibm-plex-mono-400.woff2) format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/css/fonts/ibm-plex-mono-500.woff2) format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/css/fonts/nunito-sans.woff2) format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(/assets/css/fonts/source-serif-4.woff2) format("woff2");
}

:root {
  --ink: #12322b;
  --ink-2: #2a4a44;
  --muted: #55716a;
  --paper: #f2faf6;
  --paper-2: #e8f3ec;
  --surface: #ffffff;
  --tint: #dcf3e8;
  --primary: #087a5b;
  --primary-2: #0a5d46;
  --accent: #e28222;
  --accent-2: #b86413;
  --rule: #bfe2d4;
  --rule-soft: #d6e9df;
  --shadow: rgba(18, 50, 43, 0.10);
  --shadow-strong: rgba(18, 50, 43, 0.20);

  --ff-serif: "Source Serif 4", "Source Serif Pro", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --ff-sans: "Nunito Sans", "Avenir Next", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  --ff-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --max: 1240px;
  --gutter: clamp(16px, 4vw, 36px);
  --sec: clamp(56px, 7vw, 96px);
  --sec-sm: clamp(36px, 5vw, 56px);

  --r-card: 14px;
  --r-pill: 999px;

  --fs-h1-d: clamp(36px, 5.6vw, 60px);
  --fs-h2-d: clamp(26px, 3.4vw, 38px);
  --fs-h3-d: clamp(20px, 2vw, 24px);
  --fs-body: 17.5px;
  --fs-small: 13.5px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: var(--fs-h1-d); line-height: 1.08; letter-spacing: -0.015em; }
h2 { font-size: var(--fs-h2-d); }
h3 { font-size: var(--fs-h3-d); }

p { margin: 0 0 1em; }
small, .small { font-size: var(--fs-small); color: var(--muted); }
em, i { font-style: italic; }

.container {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}
.section {
  padding-block: var(--sec);
  position: relative;

  height: auto;
  max-height: none;
  min-height: 0;
  overflow: visible;
  content-visibility: visible;
  contain-intrinsic-size: none;
}
.section.tight { padding-block: var(--sec-sm); }
main > .section,
main > .section.tight,
main > section.section {
  height: auto;
  max-height: none;
  overflow: visible;
  content-visibility: visible;
  contain-intrinsic-size: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 250, 246, 0.92);
  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;
  gap: 16px;
  height: 68px;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
  min-width: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.brand-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.primary-nav {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.2vw, 22px);
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(12.5px, 1.15vw, 15px);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex: 0 0 auto;
  line-height: 1.2;
}
.primary-nav a[aria-current="page"] { border-bottom-color: var(--primary); }
.primary-nav a:hover { text-decoration: none; border-bottom-color: var(--accent); }

.header-cta {
  margin-left: 0;
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-2); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--surface); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-2); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.hamburger {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 10px;
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 70;
  flex: 0 0 auto;
  color: var(--ink);
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.hamburger span { position: relative; }
.hamburger span::before { position: absolute; top: -6px; left: 0; }
.hamburger span::after { position: absolute; top: 6px; left: 0; }

body.nav-open .site-header {
  z-index: 200;
  position: sticky;
}
body.nav-open .hamburger,
.hamburger[aria-expanded="true"] {
  position: relative;
  z-index: 201;
  pointer-events: auto !important;
  background: var(--paper);
  isolation: isolate;
}
body.nav-open .hamburger span,
.hamburger[aria-expanded="true"] span {
  background: transparent;
  pointer-events: none;
}
body.nav-open .hamburger span::before,
.hamburger[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
body.nav-open .hamburger span::after,
.hamburger[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.drawer-close {
  position: absolute;
  top: 12px;
  left: 14px;
  right: auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  border-radius: 10px;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  pointer-events: auto;
  touch-action: manipulation;
  padding: 0;
}
.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.drawer-close::before { transform: rotate(45deg); }
.drawer-close::after { transform: rotate(-45deg); }
.drawer-close .drawer-close-glyph {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.drawer[data-open="true"] .drawer-close {
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  height: auto;
  max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--rule);
  z-index: 150;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform .25s ease, visibility 0s linear .25s;
  padding: 56px 20px 24px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: -10px 0 30px var(--shadow);
  contain: layout paint;
}

.drawer[hidden] {
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(100%, 0, 0) !important;
}
.drawer[data-open="true"] {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .25s ease, visibility 0s linear 0s;
}
.drawer[data-open="false"] a,
.drawer[aria-hidden="true"] a,
.drawer[inert] a,
.drawer[hidden] a {
  visibility: hidden !important;
  pointer-events: none !important;
}
.drawer[data-open="true"] a {
  visibility: visible !important;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

body.nav-open,
html:has(body.nav-open) {
  overflow-x: hidden !important;
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  display: block;
  padding: 12px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 600;
  font-size: 16px;
}
.drawer nav a:hover { text-decoration: none; color: var(--primary); }
.drawer .btn { margin-top: 18px; }

@media (min-width: 960px) and (max-width: 1279px) {
  .brand-tag { display: none; }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn { padding: 9px 14px; font-size: 13px; }
  .site-header .row { gap: 12px; }
  .primary-nav { gap: 12px; }
}

@media (min-width: 960px) {
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
  .drawer {
    display: none;
    visibility: hidden;
    pointer-events: none;
  }
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  padding-block: 56px 32px;
  margin-bottom: 96px;
}
.site-footer .grid {
  display: grid;
  gap: 36px 48px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
@media (max-width: 880px) {
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 520px) {
  .site-footer .grid { grid-template-columns: 1fr; }
}
.site-footer h4,
.site-footer .footer-heading {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: var(--ink); font-size: 14.5px; }
.site-footer a:hover { color: var(--primary); }
.colophon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 24px;
  margin-top: 36px;
  font-size: 12.5px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.sticky-cta .cta-label {
  font-size: 12px;
  color: var(--muted);
  display: none;
}
.sticky-cta .btn { flex: 1 1 0; min-width: 0; padding: 12px 16px; }
@media (min-width: 720px) {
  .sticky-cta { padding: 12px 20px; }
  .sticky-cta .cta-label { display: inline; }
  .sticky-cta .btn { flex: 0 0 auto; }
}
.suppress-sticky .sticky-cta { display: none; }
.suppress-sticky .site-footer { margin-bottom: 32px; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--primary);
}

.standfirst {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 65ch;
}

.rule { height: 1px; background: var(--rule); margin: 28px 0; }
.rule-strong { height: 1px; background: var(--ink); margin: 28px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--tint);
  color: var(--primary-2);
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.tag.warn { background: #f3dfc4; color: #7a3f0a; }
.tag.ok { background: var(--tint); color: var(--primary-2); }

.chip {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.score-strip {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.score-strip .row {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}
.score-strip .row span { display: inline-flex; gap: 6px; align-items: center; }
.score-strip .row em { color: var(--accent); font-style: normal; font-weight: 700; }

.hero-mosaic {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule-soft) 1px, transparent 1px);
  background-size: 100% 28px;
  pointer-events: none;
  opacity: 0.55;
}
.hero-mosaic .container {
  position: relative;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 960px) {
  .hero-mosaic .container { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: stretch; gap: 56px; }
}
.hero-standfirst {
  display: flex; flex-direction: column;
  gap: 18px;
}
.hero-standfirst h1 { margin-bottom: 0; }
.hero-standfirst .meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-collage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #0e5c44;
  border: 1px solid var(--rule);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .pill {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.hero-collage .pill.tl { top: 18px; left: 18px; }
.hero-collage .pill.br { bottom: 18px; right: 18px; border-color: var(--primary); color: var(--primary); }

.trust-strip {
  background: var(--surface);
  border-block: 1px solid var(--rule);
  padding: 18px 0;
}
.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
@media (min-width: 720px) {
  .trust-strip .row { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-strip .item .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.trust-strip .item .lbl {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.trust-strip .item .sub {
  font-size: 12.5px;
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.pillar-card .chip { position: absolute; top: 16px; right: 16px; font-size: 10px; }
.pillar-card h3 { margin: 0; font-size: 22px; }
.pillar-card .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: var(--tint);
  overflow: hidden;
}
.pillar-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pillar-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pillar-card ul li::before { content: "\2022 "; color: var(--primary); font-weight: 700; }

.hand-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 920px) {
  .hand-study { grid-template-columns: 1.4fr 1fr; gap: 32px; }
}
.hand-study .photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hand-study .photo img { width: 100%; height: auto; display: block; }
.hand-study .callouts {
  display: grid;
  gap: 12px;
}
.hand-study .callout {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 14px 16px;
}
.hand-study .callout .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 6px;
}
.hand-study .callout h3,
.hand-study .callout h4 {
  font-family: var(--ff-serif);
  font-size: 17px;
  margin: 0 0 4px;
}

.rules-chapter {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .rules-chapter {
    grid-template-columns: 5fr 4fr 3fr;
    align-items: start;
  }
}
.rules-chapter .col {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 22px;
}
.rules-chapter .col h3 { margin-bottom: 12px; }
.rules-chapter .col .num {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.ledger-wrap {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
}
.ledger-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ledger {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 720px;
}
.ledger th, .ledger td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.ledger th {
  background: var(--tint);
  color: var(--ink);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 600;
}
.ledger tr:last-child td { border-bottom: 0; }
.ledger td:first-child { font-weight: 700; }

@media (max-width: 720px) {
  .ledger-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .ledger-mobile .row {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 12px 14px;
  }
  .ledger-mobile .row .h {
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .ledger-mobile .row .v { font-weight: 600; }
}

.photo-pair {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .photo-pair { grid-template-columns: 1fr 1fr 1fr; }
}
.photo-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.photo-card .img { aspect-ratio: 4/3; background: var(--tint); }
.photo-card .img img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .body { padding: 14px 16px; }
.photo-card h3, .photo-card h4 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.photo-card .body .tag { margin-bottom: 8px; }

.collage-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .collage-grid { grid-template-columns: repeat(3, 1fr); }
}
.collage-tile {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transform: rotate(0deg);
}
.collage-tile:nth-child(2) { transform: rotate(-0.6deg); }
.collage-tile:nth-child(4) { transform: rotate(0.4deg); }
.collage-tile:nth-child(5) { transform: rotate(-0.3deg); }
.collage-tile .img { aspect-ratio: 16/10; }
.collage-tile .img img { width: 100%; height: 100%; object-fit: cover; }
.collage-tile .body { padding: 12px 14px; }
.collage-tile h3, .collage-tile h4 { margin: 0 0 4px; font-size: 15px; font-weight: 700; }
.collage-tile .label {
  position: absolute;
  background: #8a4a0f;
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.sidebar-stream {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .sidebar-stream { grid-template-columns: 200px 1fr; gap: 36px; align-items: start; }
}
.sidebar-stream .rail {
  border-left: 1px solid var(--rule);
  padding-left: 18px;
  position: sticky;
  top: 96px;
}
.sidebar-stream .rail ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  counter-reset: rail;
}
.sidebar-stream .rail li {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  counter-increment: rail;
}
.sidebar-stream .rail li::before {
  content: counter(rail, decimal-leading-zero);
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}
.sidebar-stream .rail li.active { color: var(--ink); }
.sidebar-stream .stream {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sidebar-stream .stream .row {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 20px;
  display: grid;
  gap: 12px;
}
.sidebar-stream .stream .row .head {
  display: flex;
  gap: 16px;
  align-items: center;
}
.sidebar-stream .stream .row .head .num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--tint);
  color: var(--primary-2);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
}
.sidebar-stream .stream .row h3 { margin: 0; font-size: 21px; }
.sidebar-stream .stream .row p:last-child { margin-bottom: 0; }

.evidence-shelf {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .evidence-shelf { grid-template-columns: 1fr 1fr; }
}
.evidence-row {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.evidence-row summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.evidence-row summary::-webkit-details-marker { display: none; }
.evidence-row summary .left {
  display: flex; gap: 16px; align-items: center;
}
.evidence-row summary .num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
}
.evidence-row summary h3, .evidence-row summary h4 { margin: 0; font-size: 17px; font-weight: 700; }
.evidence-row summary .verdict {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.evidence-row[open] { box-shadow: 0 6px 18px var(--shadow); }
.evidence-row .body {
  padding: 0 22px 20px;
  display: grid;
  gap: 12px;
}
.evidence-row .body .item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
}
.evidence-row .body .item .k {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
@media (max-width: 600px) {
  .evidence-row .body .item { grid-template-columns: 1fr; gap: 4px; }
}

.kyc-ledger {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kyc-ledger .step {
  display: grid;
  grid-template-columns: 44px 1fr 120px;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px 18px;
}
.kyc-ledger .step .num {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.06em;
}
.kyc-ledger .step .lbl h3, .kyc-ledger .step .lbl h4 { margin: 0; font-size: 16.5px; font-weight: 700; }
.kyc-ledger .step .lbl .step-lead {
  margin: 2px 0 6px;
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.kyc-ledger .step .lbl p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.kyc-ledger .step .verdict { text-align: right; }
@media (max-width: 600px) {
  .kyc-ledger .step { grid-template-columns: 36px 1fr; }
  .kyc-ledger .step .verdict { grid-column: 1 / -1; text-align: left; }
}

.helpline-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px;
}
.helpline-card .row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
}
.helpline-card .row:first-child { border-top: 0; padding-top: 0; }
.helpline-card .row .num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--tint);
  color: var(--primary-2);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12px;
  display: grid; place-items: center;
}
.helpline-card .row .name { font-weight: 700; font-size: 15px; }
.helpline-card .row .num-display { font-family: var(--ff-mono); font-size: 14px; color: var(--ink-2); }
.helpline-card .row .desc { font-size: 13px; color: var(--muted); margin-top: 2px; }

.news-ticker {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .news-ticker { grid-template-columns: repeat(3, 1fr); }
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.news-card .img { aspect-ratio: 16/9; }
.news-card .img img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card h3 { margin: 0; font-size: 18px; line-height: 1.28; }
.news-card .date {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.news-card .more { margin-top: auto; font-weight: 700; font-size: 13.5px; color: var(--primary); }

.faq-block {
  display: flex; flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 16px 20px;
}
.faq-item h3, .faq-item h4 {
  font-family: var(--ff-serif);
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.faq-item p { margin: 0; font-size: 15px; }
.faq-item .source {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

.framing-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 32px clamp(20px, 4vw, 44px);
}
.framing-band h2 { color: var(--paper); }
.framing-band p { color: rgba(242, 250, 246, 0.86); font-family: var(--ff-serif); font-size: 18px; max-width: 75ch; }
.framing-band .ruler { height: 1px; background: rgba(242, 250, 246, 0.25); margin: 18px 0; }
.framing-band a:not(.btn) {
  color: #b7f0d6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.framing-band a:not(.btn):hover { color: #e8fff4; }
.framing-band .btn-primary {
  background: #b7f0d6;
  color: #12322b;
  border-color: #b7f0d6;
}
.framing-band .btn-primary:hover {
  background: #e8fff4;
  color: #12322b;
  border-color: #e8fff4;
}
.framing-band .btn-ghost {
  background: transparent;
  color: #f2faf6;
  border-color: rgba(242, 250, 246, 0.55);
}
.framing-band .btn-ghost:hover {
  background: rgba(242, 250, 246, 0.12);
  color: #fff;
  border-color: #fff;
}

.page-with-rail {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .page-with-rail { grid-template-columns: minmax(0, 1fr) 280px; gap: 48px; }
}
.page-rail {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px;
  align-self: start;
}
.page-rail h3, .page-rail h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.page-rail ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.page-rail a { font-size: 14px; display: block; padding: 6px 0; border-bottom: 1px dashed var(--rule-soft); }
.page-rail a:last-child { border-bottom: 0; }

.latest-rail {
  display: flex; flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.latest-rail .row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--rule-soft);
}
.latest-rail .row:first-child { border-top: 0; }
.latest-rail .row .date {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.latest-rail .row h3, .latest-rail .row h4 { margin: 0 0 4px; font-size: 16.5px; font-weight: 700; }
.latest-rail .row p { margin: 0; font-size: 13.5px; color: var(--muted); }

@media (min-width: 720px) {
  .latest-rail .row {
    grid-template-columns: 84px minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.colophon-band {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 22px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--muted);
}
.colophon-band .row {
  display: flex;
  gap: 18px 32px;
  flex-wrap: wrap;
  align-items: center;
}
.colophon-band strong { color: var(--ink); font-weight: 600; letter-spacing: 0.04em; }

.article-body {
  max-width: 75ch;
  margin-inline: auto;
}
.article-body p { font-size: 17px; line-height: 1.7; }
.article-body h2 { margin-top: 36px; }
.article-body h3 { margin-top: 28px; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 1em; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 6px 0 6px 18px;
  margin: 18px 0;
  font-family: var(--ff-serif);
  font-size: 19px;
  color: var(--ink-2);
}
.article-body img { border-radius: 10px; margin: 24px 0; border: 1px solid var(--rule); }
.callout-block {
  background: var(--tint);
  border-left: 3px solid var(--primary);
  padding: 16px 18px;
  border-radius: 6px;
  margin: 22px 0;
  font-size: 15px;
}
.callout-block.warn { background: rgba(226, 130, 34, 0.10); border-left-color: var(--accent); }
.callout-block strong { color: var(--ink); }

.sec-head {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
}
.sec-head .num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;

  color: #5f8f82;
  opacity: 1;
}
.sec-head h2 { margin: 0; }
.sec-head .standfirst { margin: 0; }

.breadcrumbs {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-block: 16px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }

.page-hero {
  padding-block: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.page-hero .grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .page-hero .grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; }
}
.page-hero .photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.page-hero .photo img { width: 100%; height: auto; display: block; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .standfirst { max-width: 60ch; }

.next-step {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 32px clamp(20px, 4vw, 44px);
  display: grid;
  gap: 18px;
}
.next-step h2 { color: var(--paper); margin: 0; }
.next-step p { color: rgba(242, 250, 246, 0.86); margin: 0; max-width: 65ch; }
.next-step .row {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.steps {
  display: flex; flex-direction: column; gap: 12px;
  counter-reset: step;
}
.steps .item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.steps .item .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
}
.steps .item h3, .steps .item h4 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.steps .item p { margin: 0; font-size: 14.5px; color: var(--muted); }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: static;
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .page-hero .photo { aspect-ratio: 16 / 11; }
  .hero-mosaic { padding-top: 28px; padding-bottom: 28px; }
  .hero-collage { aspect-ratio: 16 / 13; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .sticky-cta, .site-header, .site-footer, .drawer { display: none !important; }
}

