:root {
  --ink: #0b1d2a;
  --ink-soft: #3d5564;
  --night: #061521;
  --night-2: #0a2232;
  --paper: #f5f3ec;
  --paper-2: #ece9df;
  --white: #fffef9;
  --cyan: #62d8ef;
  --mint: #73dfc5;
  --coral: #ff836f;
  --coral-ink: #9c352c;
  --focus-ring: #6f42c1;
  --amber: #f2bd55;
  --line: rgba(11, 29, 42, .14);
  --shadow: 0 22px 70px rgba(7, 23, 36, .13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
  background: var(--night);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }

button, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

::selection { color: var(--night); background: var(--mint); }

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

.section { padding: 112px 0; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: 14px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--night);
  background: var(--mint);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(6, 21, 33, .76);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 21, 33, .96);
  box-shadow: 0 10px 35px rgba(1, 10, 17, .25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand > span:last-child { display: grid; line-height: 1.1; }
.brand b { font-size: 15px; letter-spacing: .05em; }
.brand small { margin-top: 6px; color: rgba(255, 255, 255, .58); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(98, 216, 239, .25), rgba(255, 131, 111, .14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.brand-mark i { display: block; border-radius: 999px 999px 3px 3px; background: var(--mint); }
.brand-mark i:nth-child(1) { height: 52%; }
.brand-mark i:nth-child(2) { height: 100%; background: var(--cyan); }
.brand-mark i:nth-child(3) { height: 72%; background: var(--coral); }

.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--coral);
  transition: transform .2s ease;
}

.primary-nav a:hover, .primary-nav a:focus-visible { color: #fff; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 99px; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 880px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-media, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-scrim {
  background:
    radial-gradient(circle at 74% 50%, rgba(6, 21, 33, .05) 0 20%, rgba(6, 21, 33, .58) 58%, rgba(6, 21, 33, .96) 100%),
    linear-gradient(90deg, rgba(6, 21, 33, .97) 0%, rgba(6, 21, 33, .87) 37%, rgba(6, 21, 33, .18) 72%, rgba(6, 21, 33, .45) 100%),
    linear-gradient(0deg, rgba(6, 21, 33, .94), transparent 32%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 86px;
  align-items: end;
  padding-top: calc(var(--header-h) + 74px);
  padding-bottom: 72px;
}

.hero-copy { max-width: 760px; }

.eyebrow, .kicker {
  margin: 0 0 18px;
  color: var(--coral-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--mint); }
.inverted .kicker, .light-heading .kicker, .closing-card .kicker { color: var(--coral); }
.eyebrow > span { width: 29px; height: 1px; background: currentColor; }

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(47px, 5.3vw, 77px);
  line-height: 1.12;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #fff 0%, var(--cyan) 48%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.85;
}

.independence-note {
  max-width: 720px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px 18px;
  border: 1px solid rgba(115, 223, 197, .28);
  border-radius: 15px;
  background: rgba(6, 25, 37, .65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.independence-note svg { width: 24px; margin-top: 3px; fill: var(--mint); }
.independence-note p { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.7; }
.independence-note strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 29px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--night); background: var(--coral); box-shadow: 0 14px 34px rgba(255,131,111,.23); }
.button-primary:hover { background: #ff9a88; box-shadow: 0 18px 40px rgba(255,131,111,.32); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.button-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 700;
}
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof span { color: var(--cyan); font-size: 9px; letter-spacing: .12em; }

.hero-status {
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(17,56,76,.78), rgba(4,18,28,.88));
  box-shadow: 0 28px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}

.status-top { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .04em; }
.status-top time { margin-left: auto; color: rgba(255,255,255,.84); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 6px rgba(242,189,85,.1); }
.status-main { display: flex; align-items: center; gap: 15px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.status-code { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; color: var(--night); background: var(--mint); font-size: 23px; font-weight: 950; letter-spacing: -.04em; }
.status-main div { display: grid; }
.status-main b { font-size: 14px; }
.status-main small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: 11px; }
.hero-status dl { display: grid; grid-template-columns: minmax(72px, 1fr) auto; align-items: center; gap: 13px 12px; margin: 18px 0 0; }
.hero-status dt { color: rgba(255,255,255,.52); font-size: 11px; }
.hero-status dd { margin: 0; font-size: 12px; font-weight: 800; }
.hero-status dd.warn { color: var(--coral); }

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.3vw, 57px);
  line-height: 1.18;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.section-heading > p:last-child { margin: 23px 0 0; color: var(--ink-soft); font-size: 17px; }
.wide-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.wide-heading > p:last-child { max-width: 480px; justify-self: end; }
.centered-heading { max-width: 770px; margin: 0 auto 51px; text-align: center; }
.centered-heading > p:last-child { max-width: 650px; margin-inline: auto; }
.sticky-heading { position: sticky; top: calc(var(--header-h) + 36px); align-self: start; }

.answer-section { background: var(--paper); }
.answer-grid { display: grid; grid-template-columns: .77fr 1.23fr; gap: 90px; align-items: start; }
.answer-cards { display: grid; gap: 14px; }
.answer-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,254,249,.62);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.answer-card:hover { transform: translateY(-3px); border-color: rgba(11,29,42,.25); box-shadow: 0 18px 45px rgba(7,23,36,.08); }
.answer-strong { color: #fff; border-color: transparent; background: var(--night-2); box-shadow: var(--shadow); }
.answer-index { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral-ink); font-size: 18px; font-weight: 950; }
.answer-strong .answer-index { color: var(--coral); border-color: rgba(255,255,255,.19); background: rgba(255,255,255,.05); }
.answer-card h3 { margin: 0 0 9px; font-size: 20px; line-height: 1.35; }
.answer-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.answer-strong p { color: rgba(255,255,255,.65); }
.answer-callout { padding: 20px 24px; border-left: 4px solid var(--coral); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #e7e2d5; }
.answer-callout p { margin: 0; }

.ledger-section { background: var(--white); border-block: 1px solid var(--line); }
.ledger-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.filter-chip {
  min-height: 42px;
  padding: 8px 17px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.is-active { color: #fff; border-color: var(--night); background: var(--night); }
.ledger-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 60px rgba(7,23,36,.06); }
.claim-table { width: 100%; min-width: 870px; border-collapse: collapse; background: #fff; }
.claim-table th, .claim-table td { padding: 22px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.claim-table thead th { color: var(--ink-soft); background: #f1eee5; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.claim-table thead th:first-child { border-radius: var(--radius) 0 0; }
.claim-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.claim-table tbody th { width: 150px; font-size: 15px; }
.claim-table tbody td { color: var(--ink-soft); font-size: 14px; }
.claim-table tbody td:nth-child(2) { width: 34%; }
.claim-table tbody td:nth-child(3) { width: 21%; }
.claim-table tbody tr:last-child > * { border-bottom: 0; }
.claim-table tbody tr[hidden] { display: none; }
.claim-table small { display: block; margin-top: 8px; line-height: 1.55; }
.badge { display: inline-flex; padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.badge-coral { color: #8b2d21; background: #ffe0da; }
.badge-amber { color: #694400; background: #fff0c7; }
.badge-mint { color: #0a5a4a; background: #d8f8ef; }
.table-note { margin: 15px 4px 0; color: #647985; font-size: 12px; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.evidence-story { background: #ebe8df; }
.editorial-figure { position: relative; margin: 0; }
.editorial-figure::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(11,29,42,.16); border-radius: var(--radius-lg); }
.editorial-figure img { position: relative; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.editorial-figure figcaption { position: relative; max-width: 86%; margin: 16px 0 0 12px; color: var(--ink-soft); font-size: 12px; }
.story-copy .lead { margin: 24px 0 30px; color: var(--ink-soft); font-size: 17px; }
.story-copy h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.18; letter-spacing: -.04em; }
.evidence-levels { display: grid; gap: 2px; }
.evidence-levels article { display: grid; grid-template-columns: 49px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(11,29,42,.12); }
.evidence-levels article:last-child { border-bottom: 0; }
.evidence-levels span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--night); border: 1px solid rgba(11,29,42,.17); border-radius: 13px; font-size: 12px; font-weight: 950; background: rgba(255,255,255,.34); }
.evidence-levels h3 { margin: 0 0 2px; font-size: 15px; }
.evidence-levels p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.check-section { color: #fff; background: var(--night); }
.inverted h2 { color: #fff; }
.inverted > p:last-child { color: rgba(255,255,255,.6); }
.check-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.checklist { display: grid; gap: 9px; }
.check-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 17px;
  padding: 20px 21px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.check-item:hover { transform: translateX(4px); border-color: rgba(98,216,239,.35); background: rgba(255,255,255,.07); }
.check-item input { position: absolute; opacity: 0; pointer-events: none; }
.check-control { width: 26px; height: 26px; display: grid; place-items: center; margin-top: 2px; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; }
.check-control::after { content: ""; width: 8px; height: 13px; transform: rotate(45deg) scale(0); border-right: 2px solid var(--night); border-bottom: 2px solid var(--night); transition: transform .18s ease; }
.check-item input:focus-visible + .check-control { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 6px var(--focus-ring); }
.check-item input:checked + .check-control { border-color: var(--mint); background: var(--mint); }
.check-item input:checked + .check-control::after { transform: translateY(-2px) rotate(45deg) scale(1); }
.check-item b { display: block; font-size: 15px; }
.check-item small { display: block; margin-top: 4px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.6; }
.check-progress { position: sticky; top: calc(var(--header-h) + 35px); padding: 30px; text-align: center; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: linear-gradient(155deg, rgba(23,66,86,.75), rgba(8,30,44,.85)); }
.progress-ring { --progress: 0; position: relative; width: 150px; height: 150px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: conic-gradient(var(--mint) calc(var(--progress) * 1turn), rgba(255,255,255,.1) 0); transition: background .25s ease; }
.progress-ring[data-progress="1"] { --progress: .1667; }
.progress-ring[data-progress="2"] { --progress: .3333; }
.progress-ring[data-progress="3"] { --progress: .5; }
.progress-ring[data-progress="4"] { --progress: .6667; }
.progress-ring[data-progress="5"] { --progress: .8333; }
.progress-ring[data-progress="6"] { --progress: 1; }
.progress-ring::before { content: ""; position: absolute; inset: 11px; border-radius: inherit; background: var(--night-2); }
.progress-ring > span { position: relative; display: flex; align-items: baseline; gap: 4px; }
.progress-ring b { font-size: 39px; line-height: 1; }
.progress-ring small { color: rgba(255,255,255,.48); }
.check-progress h3 { margin: 0 0 8px; font-size: 20px; }
.check-progress p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.reset-button { margin-top: 19px; padding: 7px 12px; color: rgba(255,255,255,.62); border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 12px; cursor: pointer; }
.reset-button:hover { color: #fff; }

.entity-section { background: var(--paper); }
.entity-map { display: grid; grid-template-columns: 1fr 130px 1fr; gap: 25px; align-items: stretch; }
.entity-card { position: relative; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 17px 55px rgba(7,23,36,.06); }
.entity-card .entity-icon { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 18px; font-size: 15px; font-weight: 950; letter-spacing: -.03em; }
.entity-topic .entity-icon { color: var(--night); background: var(--coral); }
.entity-known .entity-icon { color: var(--night); background: var(--mint); }
.entity-card .label { margin: 0 0 7px; color: var(--ink-soft); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.entity-card h3 { margin: 0 0 17px; font-size: 25px; line-height: 1.25; }
.entity-card > p:not(.label) { color: var(--ink-soft); }
.entity-card ul { display: grid; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.entity-card li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 13px; }
.entity-card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.entity-known li::before { background: var(--mint); }
.source-link { display: inline-flex; align-items: center; gap: 7px; color: #0b6578; font-size: 13px; font-weight: 850; }
.entity-separator { display: grid; place-items: center; align-content: center; gap: 10px; text-align: center; }
.entity-separator span { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral-ink); font-size: 27px; font-weight: 950; background: var(--paper-2); }
.entity-separator small { max-width: 86px; color: var(--ink-soft); font-size: 10px; line-height: 1.4; }

.safety-section { background: #e8e5dc; }
.reverse-mobile { grid-template-columns: 1.04fr .96fr; }
.signal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.signal-grid article { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.42); }
.signal-grid span { display: block; color: var(--coral-ink); font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.signal-grid h3 { margin: 6px 0 7px; font-size: 17px; }
.signal-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.source-strip { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; margin-top: 70px; padding: 27px 31px; border-radius: var(--radius); color: #fff; background: var(--night-2); }
.source-strip p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; }
.source-strip p b { color: #fff; }
.source-strip > div { display: flex; flex-wrap: wrap; gap: 9px; }
.source-strip a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: var(--cyan); font-size: 11px; font-weight: 850; text-decoration: none; }

.decision-section { background: var(--white); }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.decision-grid article { position: relative; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #f3f0e8; }
.decision-grid article::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -85px; border: 1px solid rgba(11,29,42,.08); border-radius: 50%; }
.mini-orbit { width: 43px; height: 43px; display: block; margin-bottom: 42px; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, var(--coral) 0 14%, transparent 15% 43%, var(--cyan) 44% 48%, transparent 49%); }
.decision-grid article:nth-child(2) .mini-orbit { background: radial-gradient(circle, var(--mint) 0 14%, transparent 15% 43%, var(--coral) 44% 48%, transparent 49%); }
.decision-grid article:nth-child(3) .mini-orbit { background: radial-gradient(circle, var(--amber) 0 14%, transparent 15% 43%, var(--mint) 44% 48%, transparent 49%); }
.decision-grid h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.35; }
.decision-grid p { color: var(--ink-soft); font-size: 14px; }
.decision-grid a { display: inline-flex; margin-top: 10px; color: #0b6578; font-size: 13px; font-weight: 900; }

.method-section { color: #fff; background: #0b293a; }
.method-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.light-heading h2 { color: #fff; }
.light-heading > p:last-child { color: rgba(255,255,255,.58); }
.method-steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.method-steps li { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.method-steps li:first-child { padding-top: 0; }
.method-steps li:last-child { border-bottom: 0; }
.method-steps span { width: 55px; height: 55px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; color: var(--mint); font-size: 12px; font-weight: 950; }
.method-steps h3 { margin: 0 0 7px; font-size: 19px; }
.method-steps p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.sources-section { background: var(--paper); }
.source-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.source-list article { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.55); }
.source-list article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--night); background: var(--paper-2); font-size: 11px; font-weight: 950; }
.source-list article:nth-child(3) > span, .source-list article:nth-child(4) > span, .source-list article:nth-child(5) > span { background: #daf6ee; }
.source-list h3 { margin: 0 0 5px; font-size: 15px; }
.source-list p { margin: 0 0 7px; color: var(--ink-soft); font-size: 12px; }
.source-list a { color: #0b6578; font-size: 11px; font-weight: 850; }
.source-foot { margin: 17px 0 0; color: var(--ink-soft); font-size: 12px; }

.transparency-section { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.trust-grid article { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #f3f0e8; }
.trust-grid article > span { display: block; margin-bottom: 24px; color: var(--coral-ink); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.trust-grid h3 { margin: 0 0 9px; font-size: 18px; }
.trust-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.trust-grid a { color: #0b6578; font-weight: 850; overflow-wrap: anywhere; }

.faq-section { background: #e8e5dc; }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 85px; }
.faq-list { display: grid; gap: 9px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.46); }
.faq-list summary { position: relative; padding: 20px 55px 20px 21px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; content: ""; width: 13px; height: 2px; right: 22px; top: 50%; background: var(--ink); transition: transform .2s ease; }
.faq-list summary span::after { inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: 0; padding: 0 21px 21px; color: var(--ink-soft); font-size: 14px; }

.closing-section { padding: 0 0 105px; background: #e8e5dc; }
.closing-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 55px 59px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(125deg, #173f54, #071725 65%); box-shadow: var(--shadow); }
.closing-card h2 { max-width: 720px; margin: 0; font-size: clamp(32px, 4vw, 53px); line-height: 1.15; letter-spacing: -.04em; }
.closing-card p:not(.kicker) { max-width: 700px; margin: 19px 0 0; color: rgba(255,255,255,.62); }
.button-light { color: var(--night); background: var(--mint); min-width: 190px; }
.button-light:hover { background: #95ecd8; }

.site-footer { padding: 74px 0 22px; color: #fff; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 70px; }
.footer-brand p { max-width: 480px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.footer-grid h2 { margin: 0 0 17px; color: rgba(255,255,255,.70); font-size: 11px; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.80); font-size: 13px; text-decoration: none; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 58px; padding-top: 21px; color: rgba(255,255,255,.68); border-top: 1px solid rgba(255,255,255,.16); font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
.nojs-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; padding: 12px 20px; color: #dceaf2; background: #0d2638; font-size: 13px; font-weight: 800; }
.nojs-nav a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }

@media (max-width: 1050px) {
  :root { --header-h: 72px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section { padding: 88px 0; }
  .primary-nav { gap: 19px; }
  .primary-nav a { font-size: 12px; }
  .hero { min-height: 840px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 275px; gap: 45px; }
  .answer-grid, .method-grid { gap: 55px; }
  .split-grid { gap: 55px; }
  .faq-grid { gap: 52px; }
  .entity-card { padding: 29px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 17px 24px 28px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(6,21,33,.98);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: opacity .2s ease, transform .2s ease;
  }
  .primary-nav a { padding: 14px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-header.nav-open .primary-nav { visibility: visible; opacity: 1; transform: none; }
  .site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 990px; align-items: end; }
  .hero-media { object-position: 65% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(6,21,33,.97), rgba(6,21,33,.74) 65%, rgba(6,21,33,.55)), linear-gradient(0deg, rgba(6,21,33,.98), transparent 50%); }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: calc(var(--header-h) + 62px); }
  .hero-copy { max-width: 700px; }
  .hero-status { width: min(100%, 440px); }
  .wide-heading { grid-template-columns: 1fr; gap: 8px; }
  .wide-heading > p:last-child { max-width: 700px; justify-self: start; }
  .answer-grid, .method-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .sticky-heading { position: static; }
  .split-grid { grid-template-columns: 1fr; }
  .check-layout { grid-template-columns: 1fr; }
  .check-progress { position: static; display: grid; grid-template-columns: 130px 1fr; column-gap: 24px; text-align: left; align-items: center; }
  .progress-ring { grid-row: span 3; width: 126px; height: 126px; margin: 0; }
  .check-progress .reset-button { justify-self: start; }
  .entity-map { grid-template-columns: 1fr; }
  .entity-separator { grid-template-columns: 64px 1fr; justify-content: center; justify-items: start; max-width: 230px; margin: 0 auto; }
  .entity-separator small { max-width: 135px; text-align: left; }
  .reverse-mobile .story-copy { order: 2; }
  .reverse-mobile .editorial-figure { order: 1; }
  .decision-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .decision-grid article { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; }
  .decision-grid .mini-orbit { grid-row: span 3; margin: 0; }
  .decision-grid h3, .decision-grid p, .decision-grid a { grid-column: 2; }
  .source-strip { grid-template-columns: 1fr; gap: 19px; }
  .closing-card { grid-template-columns: 1fr; padding: 43px; }
  .closing-card .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; gap: 34px; }
}

@media (max-width: 620px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .brand b { font-size: 13px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 990px; }
  .hero-media { object-position: 70% center; filter: saturate(.88); }
  .hero h1 { font-size: clamp(40px, 12vw, 55px); }
  .hero-lead { font-size: 16px; }
  .hero-grid { padding-bottom: 43px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-proof { gap: 10px 17px; }
  .section-heading h2, .story-copy h2 { font-size: 35px; }
  .answer-card { grid-template-columns: 42px 1fr; padding: 22px 19px; }
  .answer-index { width: 39px; height: 39px; font-size: 14px; }
  .ledger-wrap { margin-right: 0; border-radius: var(--radius-sm); }
  .editorial-figure::before { inset: -9px 9px 9px -9px; border-radius: 25px; }
  .editorial-figure img { border-radius: 25px; }
  .check-item { padding: 17px; }
  .check-progress { grid-template-columns: 94px 1fr; column-gap: 17px; padding: 22px; }
  .progress-ring { width: 94px; height: 94px; }
  .progress-ring b { font-size: 29px; }
  .progress-ring::before { inset: 8px; }
  .entity-card { padding: 25px; }
  .signal-grid { grid-template-columns: 1fr; }
  .source-strip { padding: 23px; }
  .source-list { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .closing-section { padding-bottom: 72px; }
  .closing-card { padding: 31px 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (max-width: 390px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero { min-height: 1030px; }
  .hero h1 { font-size: 39px; }
  .independence-note { grid-template-columns: 22px 1fr; padding: 13px; }
  .hero-status { padding: 18px; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .wide-heading { margin-bottom: 34px; }
  .filter-chip { padding-inline: 13px; }
  .check-progress { grid-template-columns: 1fr; text-align: center; }
  .progress-ring { grid-row: auto; margin: 0 auto 15px; }
  .check-progress .reset-button { justify-self: center; }
  .decision-grid article { display: block; }
  .decision-grid .mini-orbit { margin-bottom: 24px; }
  .decision-grid h3, .decision-grid p, .decision-grid a { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-actions, .ledger-toolbar, .reset-button, .site-footer { display: none !important; }
  .hero { min-height: 0; color: #000; background: #fff; }
  .hero-media, .hero-scrim { display: none; }
  .hero-grid { display: block; padding: 30px 0; }
  .hero-status { color: #000; border-color: #bbb; background: #fff; box-shadow: none; }
  .section { padding: 35px 0; break-inside: avoid; }
  .check-section, .method-section { color: #000; background: #fff; }
  .check-item, .method-steps li { color: #000; border-color: #ccc; }
  .check-item small, .method-steps p, .light-heading > p:last-child { color: #444; }
  a { text-decoration: none; }
}
