:root {
  color-scheme: dark;
  --bg-deep: #05090e;
  --bg-primary: #07101a;
  --bg-elevated: #0b1621;
  --bg-card: #0d1924;
  --bg-soft: #101f2c;
  --cyan: #00d9f5;
  --cyan-bright: #25e8ff;
  --cyan-muted: #67b7c7;
  --text: #f4f8fb;
  --text-secondary: #a7b6c4;
  --text-muted: #718494;
  --border: rgba(116, 195, 220, 0.15);
  --border-strong: rgba(116, 195, 220, 0.28);
  --threat: #ff6538;
  --warning: #f3a348;
  --confirmed: #39dfc4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shell: min(1220px, calc(100% - 48px));
  --reading: 760px;
  --radius-sm: 7px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 8%, rgba(0, 134, 190, 0.06), transparent 29rem),
    linear-gradient(rgba(116, 195, 220, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 195, 220, 0.022) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
}

body.menu-open { overflow: hidden; }

img, picture { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
p, h1, h2, h3, ul, ol, dl, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

::selection { background: rgba(0, 217, 245, 0.28); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 12px auto auto 12px;
  transform: translateY(-170%);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg-deep);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page:not(.page--home) .site-header,
.site-header.is-scrolled {
  background: rgba(5, 9, 14, 0.91);
  border-color: var(--border);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 202px; }

.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 30px); }

.primary-nav a {
  position: relative;
  padding-block: 11px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--text); }

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.primary-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(37, 232, 255, 0.38);
  border-radius: var(--radius-sm);
  color: var(--cyan-bright);
  background: rgba(0, 217, 245, 0.04);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible,
.primary-nav .nav-cta[aria-current="page"] { border-color: var(--cyan); background: rgba(0, 217, 245, 0.1); color: #bff8ff; }

.menu-toggle { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #91c8d3;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--threat { color: #ff9a78; }
.eyebrow-line { width: 30px; height: 1px; background: currentColor; opacity: 0.9; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 0 5px rgba(0, 217, 245, 0.09); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--cyan); color: #021017; }
.button--primary:hover { background: var(--cyan-bright); }
.button--secondary { border-color: var(--border-strong); background: rgba(11, 22, 33, 0.72); color: var(--text); }
.button--secondary:hover { border-color: rgba(37, 232, 255, 0.45); background: rgba(13, 30, 42, 0.9); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-bright);
  font-weight: 750;
  text-decoration: none;
}
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__media,
.hero__media img,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; }

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.99) 0%, rgba(5, 9, 14, 0.92) 34%, rgba(5, 9, 14, 0.25) 69%, rgba(5, 9, 14, 0.54) 100%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 28%);
}

.hero__content { position: relative; z-index: 2; padding-block: 150px 110px; }
.hero__copy { max-width: 750px; }

.hero h1 {
  max-width: 750px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6.65vw, 6.75rem);
  font-weight: 720;
  letter-spacing: -0.066em;
  line-height: 0.95;
}

.hero__deck {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c0d0dc;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.independence-note {
  max-width: 660px;
  margin: 31px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: #8497a7;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  inset: auto 34px 30px auto;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero__scroll i { display: block; width: 42px; height: 1px; background: var(--border-strong); }

.page-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  padding-block: calc(var(--header-height) + 72px) 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 164, 222, 0.1), transparent 26rem),
    linear-gradient(135deg, #07101a, #05090e 62%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 49.95%, rgba(116, 195, 220, 0.04) 50%, transparent 50.05%);
}

.page-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); align-items: center; gap: clamp(52px, 7vw, 110px); }
.page-hero:not(.page-hero--with-media) .page-hero__grid { grid-template-columns: minmax(0, 850px); }
.page-hero__copy { min-width: 0; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 38px; color: var(--text-muted); font-size: 0.74rem; }
.breadcrumbs a { color: var(--text-secondary); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan-bright); }

.page-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 5.15vw, 5.45rem);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.page-hero__deck { max-width: 720px; margin-bottom: 0; color: #bdcdd8; font-size: clamp(1.02rem, 1.4vw, 1.17rem); line-height: 1.75; }

.page-hero__media {
  position: relative;
  aspect-ratio: 1.22;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero__media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.035); border-radius: inherit; pointer-events: none; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 24px 34px; margin: 38px 0 0; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-meta div { min-width: 115px; }
.hero-meta dt { margin-bottom: 5px; color: var(--text-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.hero-meta dd { margin: 0; color: #d8e5ec; font-size: 0.82rem; font-weight: 700; }

.section { position: relative; padding-block: clamp(88px, 10vw, 144px); border-bottom: 1px solid rgba(116, 195, 220, 0.075); }
.section--tight { padding-block: clamp(58px, 7vw, 90px); }
.section--quiet { background: rgba(11, 22, 33, 0.5); }
.section--notice { background: linear-gradient(90deg, rgba(0, 217, 245, 0.035), transparent 65%); }

.section-marker { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 58px; padding-bottom: 17px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }

.section-heading { margin-bottom: 54px; }
.section-heading h2,
.editorial-statement h2,
.report-copy h2,
.support-callout h2,
.statement-panel h2 { font-size: clamp(2.45rem, 4.3vw, 4.7rem); font-weight: 690; letter-spacing: -0.055em; line-height: 1.02; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); align-items: end; gap: 80px; }
.section-heading--split h2 { max-width: 780px; margin-bottom: 0; }
.section-heading--split > p { max-width: 540px; margin-bottom: 3px; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.75; }

.focus-grid { display: grid; grid-template-columns: minmax(330px, 0.83fr) minmax(0, 1.17fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.focus-copy h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.6vw, 5rem); font-weight: 700; letter-spacing: -0.058em; line-height: 1; }
.focus-copy .lede { color: #ced9e2; font-size: 1.13rem; line-height: 1.75; }
.focus-copy > p:not(.eyebrow):not(.lede) { color: var(--text-secondary); line-height: 1.75; }
.focus-copy .text-link { margin-top: 18px; }
.focus-visual { min-width: 0; }

.media-frame { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--wide { aspect-ratio: 1.78; }
.media-frame--portrait { aspect-ratio: 1.34; }
.media-frame--panoramic { aspect-ratio: 2.3; }

.status-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 14px 0 0; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(9, 20, 30, 0.88); }
.status-list__item { position: relative; padding: 20px 22px 18px 33px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.status-list__item:nth-child(2n) { border-right: 0; }
.status-list__item:nth-last-child(-n+2) { border-bottom: 0; }
.status-list__item::before { content: ""; position: absolute; top: 24px; left: 17px; width: 6px; height: 6px; border-radius: 99px; background: var(--text-muted); }
.status-list__item[data-tone="cyan"]::before { background: var(--cyan); }
.status-list__item[data-tone="warning"]::before { background: var(--warning); }
.status-list dt { color: var(--text-muted); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.status-list dd { margin: 6px 0 0; color: #d7e4eb; font-size: 0.8rem; font-weight: 700; }

.editorial-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.editorial-statement h2 { max-width: 760px; margin-bottom: 0; }
.editorial-copy { padding-top: 47px; }

.prose { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2 { margin: 2.6em 0 0.72em; color: var(--text); font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 680; letter-spacing: -0.04em; line-height: 1.15; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2em 0 0.55em; color: var(--text); font-size: 1.23rem; letter-spacing: -0.02em; line-height: 1.3; }
.prose p { margin-bottom: 1.32em; }
.prose a { color: #70deed; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { color: #e6f0f5; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li { margin-bottom: 0.62em; }

.feature-split { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr); align-items: center; gap: clamp(52px, 8vw, 108px); }
.feature-split--reverse { grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr); margin-top: clamp(70px, 9vw, 124px); }
.feature-split--copy-first > :first-child { order: 0; }

.pillar-stack { display: grid; }
.pillar { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid var(--border); }
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar > span { color: var(--cyan-muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.pillar h3 { margin-bottom: 10px; font-size: 1.42rem; letter-spacing: -0.03em; }
.pillar p { margin: 0; color: var(--text-secondary); line-height: 1.72; }

.process-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.process-card { grid-column: span 3; min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(145deg, rgba(13, 25, 36, 0.98), rgba(7, 16, 26, 0.92)); transition: transform 180ms ease, border-color 180ms ease; }
.process-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.process-card--accent { border-color: rgba(0, 217, 245, 0.3); }
.process-card__index { margin-bottom: 52px; color: var(--cyan-muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.process-card h3 { margin-bottom: 13px; font-size: 1.32rem; letter-spacing: -0.025em; }
.process-card p { margin-bottom: 25px; color: var(--text-secondary); font-size: 0.91rem; line-height: 1.7; }
.process-card__tag { margin-top: auto; color: var(--text-muted); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }

.systems-visual { position: relative; margin-top: 16px; }
.systems-visual .media-frame { border-radius: var(--radius); }
.systems-visual > p { position: absolute; inset: auto 20px 16px auto; margin: 0; padding: 8px 11px; border: 1px solid var(--border); border-radius: 5px; background: rgba(5, 9, 14, 0.82); color: var(--text-muted); font-size: 0.64rem; }

.report-grid { display: grid; grid-template-columns: minmax(340px, 0.93fr) minmax(0, 1.07fr); align-items: center; gap: clamp(54px, 8vw, 110px); }
.report-copy h2 { margin-bottom: 26px; }
.report-copy > p:not(.eyebrow) { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.78; }
.report-copy .button-row { margin-top: 30px; }
.report-copy .text-link { padding: 12px 4px; font-size: 0.86rem; }

.trust-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(54px, 9vw, 130px); }
.trust-grid h2 { margin: 0; font-size: clamp(2.75rem, 5vw, 5.3rem); letter-spacing: -0.06em; line-height: 0.98; }
.trust-list { border-top: 1px solid var(--border); }
.trust-list a { display: grid; grid-template-columns: 140px 1fr auto; gap: 22px; align-items: center; padding: 24px 6px; border-bottom: 1px solid var(--border); text-decoration: none; transition: background-color 160ms ease, padding 160ms ease; }
.trust-list a:hover { padding-inline: 14px; background: rgba(0, 217, 245, 0.035); }
.trust-list span { color: var(--text-muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.trust-list strong { font-size: 1rem; }
.trust-list i { color: var(--cyan); font-style: normal; }

.section--support-callout { padding-bottom: clamp(96px, 12vw, 168px); }
.support-callout { display: grid; grid-template-columns: 1fr auto; gap: 40px 64px; align-items: end; padding: clamp(34px, 5vw, 62px); border: 1px solid rgba(0, 217, 245, 0.24); border-radius: var(--radius-lg); background: radial-gradient(circle at 86% 20%, rgba(0, 217, 245, 0.12), transparent 25rem), linear-gradient(145deg, #0b1a26, #07101a); }
.support-callout h2 { max-width: 760px; margin-bottom: 20px; }
.support-callout > div > p:not(.eyebrow) { max-width: 680px; margin: 0; color: var(--text-secondary); }
.support-callout > div:nth-child(2) { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
.legal-note { grid-column: 1 / -1; margin: 0; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.77rem; }

.independence-banner { padding-block: 20px; border-bottom: 1px solid rgba(255, 101, 56, 0.18); background: rgba(255, 101, 56, 0.035); }
.independence-banner .shell { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline; }
.independence-banner strong { color: #ffb299; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.independence-banner p { margin: 0; color: var(--text-secondary); font-size: 0.82rem; }

.article-shell { padding-block: clamp(76px, 9vw, 124px); }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, var(--reading)); justify-content: center; gap: clamp(48px, 7vw, 92px); }
.article-rail { position: sticky; top: calc(var(--header-height) + 36px); align-self: start; display: grid; gap: 9px; padding-top: 8px; }
.article-rail p { margin-bottom: 12px; color: var(--text-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.article-rail a, .article-rail span { color: var(--text-muted); font-size: 0.77rem; line-height: 1.5; text-decoration: none; }
.article-rail a:hover { color: var(--cyan-bright); }

.prose--article { color: #b9c7d1; font-size: 1.02rem; }
.prose--article > h2 { scroll-margin-top: 110px; }
.prose--article > h2:not(:first-child) { padding-top: 0.35em; }
.answer-block { margin: 0 0 2.4em; padding: 25px 27px; border-left: 2px solid var(--cyan); background: rgba(0, 217, 245, 0.045); color: #d9e5eb; font-size: 1.06rem; line-height: 1.78; }

.definition-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-block: 30px 44px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--border); }
.definition-list section { padding: 24px; background: var(--bg-card); }
.definition-list h3 { margin-top: 0; color: var(--cyan-bright); font-size: 1.06rem; }
.definition-list p { margin: 0; font-size: 0.9rem; line-height: 1.67; }
.definition-list--single { grid-template-columns: 1fr; }

.callout { margin-block: 46px; padding: 30px; border: 1px solid var(--border-strong); border-radius: var(--radius); background: linear-gradient(145deg, rgba(12, 27, 39, 0.95), rgba(7, 16, 26, 0.9)); }
.callout__label { margin-bottom: 12px !important; color: var(--cyan-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.callout h2, .callout h3 { margin-top: 0; }
.callout--bottom-line { border-color: rgba(0, 217, 245, 0.3); }

.steps-list { list-style: none; counter-reset: step; margin: 30px 0 46px; padding: 0 !important; border-top: 1px solid var(--border); }
.steps-list > li { counter-increment: step; display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--border); }
.steps-list > li::before { content: counter(step, decimal-leading-zero); color: var(--cyan-muted); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.1em; }
.steps-list h3 { margin: 0 0 6px; }
.steps-list p { margin: 0; }
.steps-list--compact { margin: 0; }

.accordion-list { margin-block: 30px 48px; border-top: 1px solid var(--border); }
.accordion-list details { border-bottom: 1px solid var(--border); }
.accordion-list summary { padding: 21px 40px 21px 0; color: var(--text); font-weight: 700; cursor: pointer; }
.accordion-list details p { padding: 0 30px 22px 0; }

.check-list, .do-not-list { list-style: none; padding-left: 0 !important; }
.check-list li, .do-not-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--confirmed); font-weight: 900; }
.do-not-list li::before { content: "×"; position: absolute; left: 0; color: var(--threat); font-weight: 900; }

.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-block: 38px 52px; }
.evidence-grid article { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.evidence-grid h3 { margin: 0 0 9px; font-size: 1rem; }
.evidence-grid p { margin: 0; font-size: 0.82rem; line-height: 1.6; }
.status-dot { display: block; width: 7px; height: 7px; margin-bottom: 24px; border-radius: 99px; }
.status-dot--confirmed { background: var(--confirmed); }
.status-dot--reported { background: var(--cyan); }
.status-dot--unknown { background: var(--warning); }

.timeline { position: relative; margin-block: 32px 58px; }
.timeline::before { content: ""; position: absolute; inset: 10px auto 0 104px; width: 1px; background: var(--border-strong); }
.timeline article { position: relative; display: grid; grid-template-columns: 105px 1fr; gap: 32px; padding-bottom: 34px; }
.timeline article::before { content: ""; position: absolute; top: 9px; left: 100px; width: 9px; height: 9px; border: 2px solid var(--cyan); border-radius: 99px; background: var(--bg-deep); }
.timeline time { padding-top: 2px; color: var(--cyan-muted); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.timeline h3 { margin: 0 0 8px; font-size: 1.12rem; }
.timeline p { margin: 0; font-size: 0.92rem; }

.sources-panel { margin-top: 62px; padding-top: 40px; border-top: 1px solid var(--border-strong); }
.sources-panel h2 { margin-top: 0; font-size: 1.8rem; }
.sources-panel ul { padding-left: 1.1em; }
.sources-panel li { margin-bottom: 9px; font-size: 0.9rem; }
.sources-panel > p { color: var(--text-muted); font-size: 0.8rem; }

.updates-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
.featured-update { display: grid; gap: 30px; }
.featured-update__media { display: block; text-decoration: none; }
.featured-update h2 { max-width: 800px; margin-bottom: 16px; font-size: clamp(2rem, 3.7vw, 3.6rem); letter-spacing: -0.05em; line-height: 1.05; }
.featured-update h2 a { text-decoration: none; }
.featured-update > div > p:not(.article-meta) { max-width: 720px; color: var(--text-secondary); }
.article-meta { display: flex; gap: 18px; color: var(--text-muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.editorial-standard { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.editorial-standard h2 { font-size: 1.65rem; letter-spacing: -0.035em; }
.editorial-standard > p:not(.eyebrow) { color: var(--text-secondary); }
.editorial-standard > a { color: var(--cyan-bright); font-weight: 700; }

.commitments-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.commitments-grid article { min-height: 260px; padding: 33px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.commitments-grid span { color: var(--cyan-muted); font-size: 0.68rem; font-weight: 800; }
.commitments-grid h2 { margin: 62px 0 12px; font-size: 1.55rem; letter-spacing: -0.03em; }
.commitments-grid p { margin: 0; color: var(--text-secondary); }

.section--boundary { background: linear-gradient(90deg, rgba(255, 101, 56, 0.035), transparent); }
.boundary-grid { display: grid; grid-template-columns: 0.83fr 1.17fr; gap: clamp(50px, 9vw, 130px); }
.boundary-grid h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 4vw, 4.2rem); letter-spacing: -0.05em; line-height: 1.04; }
.boundary-grid > div > p:not(.eyebrow) { color: var(--text-secondary); }
.boundary-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 101, 56, 0.22); }
.boundary-list li { position: relative; padding: 18px 20px 18px 30px; border-bottom: 1px solid rgba(255, 101, 56, 0.15); color: #d6e1e8; }
.boundary-list li::before { content: ""; position: absolute; top: 27px; left: 5px; width: 8px; height: 1px; background: var(--threat); }

.statement-panel { max-width: 1040px; margin-inline: auto; text-align: center; }
.statement-panel .eyebrow { justify-content: center; }
.statement-panel h2 { margin-bottom: 24px; }
.statement-panel > p:not(.eyebrow) { max-width: 750px; margin: 0 auto 32px; color: var(--text-secondary); font-size: 1.05rem; }
.statement-panel .button-row { justify-content: center; }

.warning-panel { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(52px, 8vw, 110px); padding: clamp(30px, 5vw, 56px); border: 1px solid rgba(255, 101, 56, 0.2); border-radius: var(--radius-lg); background: rgba(255, 101, 56, 0.035); }
.warning-panel h2 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); letter-spacing: -0.05em; line-height: 1.05; }
.warning-panel > div > p:not(.eyebrow) { margin: 0; color: var(--text-secondary); }
.warning-panel .do-not-list { margin: 0; columns: 2; column-gap: 34px; }
.warning-panel .do-not-list li { break-inside: avoid; margin-bottom: 13px; color: #c2d0d9; font-size: 0.88rem; }

.report-steps { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(54px, 9vw, 130px); }
.report-steps h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.05em; line-height: 1.05; }
.report-steps > div > p:not(.eyebrow) { color: var(--text-secondary); }

.section--channels { background: rgba(7, 16, 26, 0.7); }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.channel-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.channel-grid article > span { color: var(--cyan-muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.channel-grid h3 { margin: 50px 0 13px; font-size: 1.25rem; letter-spacing: -0.025em; line-height: 1.3; }
.channel-grid p { color: var(--text-secondary); font-size: 0.88rem; }
.channel-grid a { margin-top: auto; color: var(--cyan-bright); font-size: 0.82rem; font-weight: 750; text-decoration: none; }

.contact-card { padding: 34px; border: 1px solid rgba(0, 217, 245, 0.26); border-radius: var(--radius); background: linear-gradient(145deg, #0b1c28, #08121c); }
.contact-card > span, .method-card > span { color: var(--cyan-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card h2 { margin: 46px 0 10px; font-size: 2.1rem; letter-spacing: -0.045em; }
.contact-card > a { color: var(--cyan-bright); font-weight: 800; word-break: break-word; }
.contact-card p { margin: 26px 0 0; color: var(--text-secondary); font-size: 0.85rem; }

.funding-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(54px, 9vw, 130px); }
.funding-grid h2 { font-size: clamp(2.5rem, 4.3vw, 4.5rem); letter-spacing: -0.055em; line-height: 1.03; }
.funding-grid > div > p:not(.eyebrow) { color: var(--text-secondary); }
.funding-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.funding-list span { min-height: 110px; display: flex; align-items: flex-end; padding: 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); font-weight: 700; }

.contribution-notice { display: grid; grid-template-columns: 60px 1fr; gap: 30px; max-width: 1050px; }
.notice-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(0, 217, 245, 0.3); border-radius: 99px; color: var(--cyan-bright); font-size: 1.1rem; font-weight: 800; }
.contribution-notice h2 { font-size: clamp(2.25rem, 3.8vw, 3.8rem); letter-spacing: -0.05em; line-height: 1.05; }
.contribution-notice p { max-width: 850px; color: var(--text-secondary); }
.contribution-notice strong { color: #e6f2f7; }

.wallet-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.wallet-card { min-height: 225px; display: flex; flex-direction: column; padding: 23px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.wallet-card > span { color: var(--cyan-muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.09em; }
.wallet-card h3 { margin: auto 0 12px; font-size: 1.2rem; }
.wallet-card > p { margin: 0; color: var(--text-muted); font-size: 0.78rem; }
.wallet-card code { display: block; margin-bottom: 16px; overflow-wrap: anywhere; color: #c9dce5; font-size: 0.72rem; }
.copy-button { min-height: 42px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: rgba(0, 217, 245, 0.08); color: var(--cyan-bright); cursor: pointer; }
.support-status-panel { grid-column: 1 / -1; min-height: 245px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--border-strong); border-radius: var(--radius); background: radial-gradient(circle at 88% 12%, rgba(0, 217, 245, 0.08), transparent 32%), linear-gradient(145deg, rgba(13, 25, 36, 0.84), rgba(7, 16, 26, 0.78)); }
.support-status-panel > span { margin-bottom: auto; color: var(--cyan-muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.support-status-panel h3 { max-width: 780px; margin: 38px 0 14px; font-size: clamp(1.75rem, 3vw, 3rem); letter-spacing: -0.04em; line-height: 1.08; }
.support-status-panel p { max-width: 780px; margin: 0; color: var(--text-secondary); }

.support-other { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(52px, 9vw, 130px); }
.support-other h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.05em; line-height: 1.05; }
.support-other .check-list { margin: 0; }
.support-other .check-list li { margin-bottom: 18px; color: #c8d5dc; }
.transparency-strip { display: flex; justify-content: space-between; gap: 50px; align-items: end; padding: 38px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.transparency-strip h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); letter-spacing: -0.045em; }
.transparency-strip p { max-width: 700px; margin: 0; color: var(--text-secondary); }

.at-a-glance { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.at-a-glance ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.at-a-glance li { position: relative; padding: 16px 20px 16px 27px; border-bottom: 1px solid var(--border); color: #ced9e0; }
.at-a-glance li:nth-last-child(-n+3) { border-bottom: 0; }
.at-a-glance li::before { content: ""; position: absolute; top: 25px; left: 3px; width: 7px; height: 7px; border-radius: 99px; background: var(--cyan); }

.transparency-sections { max-width: 1030px; }
.transparency-sections > article { display: grid; grid-template-columns: 80px 1fr; gap: 36px; padding: 44px 0; border-bottom: 1px solid var(--border); }
.transparency-sections > article:first-child { border-top: 1px solid var(--border); }
.transparency-sections > article > span { color: var(--cyan-muted); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.1em; }
.transparency-sections h2 { margin-bottom: 15px; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.04em; }
.transparency-sections p { color: var(--text-secondary); }
.transparency-sections p:last-child { margin-bottom: 0; }
.status-definitions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.status-definitions p { margin: 0; padding: 17px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); }
.status-definitions strong { display: block; color: var(--text); }

.source-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.source-tier { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.source-tier--primary { border-top-color: var(--cyan); }
.source-tier--supplementary { border-top-color: var(--warning); }
.source-tier > span { color: var(--cyan-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.source-tier h2 { margin: 58px 0 16px; font-size: 1.65rem; letter-spacing: -0.035em; }
.source-tier p { color: var(--text-secondary); font-size: 0.9rem; }

.evaluation-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(54px, 9vw, 130px); }
.evaluation-grid h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.05em; line-height: 1.05; }
.evaluation-grid dl { margin: 0; border-top: 1px solid var(--border); }
.evaluation-grid dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.evaluation-grid dt { color: var(--text); font-weight: 750; }
.evaluation-grid dd { margin: 0; color: var(--text-secondary); }
.method-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.method-card .check-list { margin: 45px 0 0; }
.method-card .check-list li { margin-bottom: 15px; color: var(--text-secondary); }

.contact-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.contact-intro h2 { font-size: clamp(2rem, 4vw, 4.2rem); letter-spacing: -0.05em; }
.contact-intro h2 a { color: var(--cyan-bright); text-decoration: none; word-break: break-word; }
.contact-intro p { max-width: 680px; margin: 0; color: var(--text-secondary); }
.contact-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.contact-grid article { grid-column: span 2; min-height: 270px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.contact-grid article:nth-child(4), .contact-grid article:nth-child(5) { grid-column: span 3; }
.contact-grid span { color: var(--cyan-muted); font-size: 0.68rem; font-weight: 800; }
.contact-grid h2 { margin: 52px 0 12px; font-size: 1.35rem; }
.contact-grid p { color: var(--text-secondary); font-size: 0.88rem; }
.contact-grid a { margin-top: auto; color: var(--cyan-bright); font-size: 0.84rem; font-weight: 750; }

.legal-note-panel { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.legal-note-panel h2 { font-size: 1.55rem; }
.legal-note-panel p { color: var(--text-secondary); }
.legal-note-panel p:last-child { margin-bottom: 0; }

.policy { display: grid; grid-template-columns: 190px minmax(0, var(--reading)); justify-content: center; gap: clamp(48px, 7vw, 92px); padding-block: clamp(76px, 9vw, 124px); }
.policy-nav { position: sticky; top: calc(var(--header-height) + 34px); align-self: start; display: grid; gap: 10px; }
.policy-nav a { color: var(--text-muted); font-size: 0.77rem; text-decoration: none; }
.policy-nav a:hover { color: var(--cyan-bright); }
.prose--policy { font-size: 1rem; }
.prose--wide { grid-column: 1 / -1; max-width: 860px; margin-inline: auto; }

.rights-grid { display: grid; grid-template-columns: minmax(0, var(--reading)) 330px; gap: clamp(48px, 7vw, 90px); justify-content: center; }
.independence-quote { max-width: 970px; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.independence-quote > span { color: var(--cyan-muted); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.independence-quote blockquote { margin: 30px 0 0; color: #e1ebf0; font-size: clamp(1.35rem, 2.7vw, 2.4rem); font-weight: 620; letter-spacing: -0.035em; line-height: 1.35; }

.not-found { min-height: 730px; display: grid; align-items: center; padding-block: calc(var(--header-height) + 100px) 110px; background: radial-gradient(circle at 75% 45%, rgba(0, 217, 245, 0.08), transparent 28rem); }
.not-found__grid { display: grid; grid-template-columns: 1fr 0.7fr; gap: clamp(55px, 9vw, 130px); align-items: end; }
.not-found h1 { margin-bottom: 25px; font-size: clamp(3.2rem, 7vw, 7rem); letter-spacing: -0.065em; line-height: 0.95; }
.not-found__grid > div > p:not(.eyebrow) { max-width: 610px; color: var(--text-secondary); font-size: 1.08rem; }
.not-found .button-row { margin-top: 30px; }
.not-found nav { border-top: 1px solid var(--border); }
.not-found nav a { display: grid; gap: 5px; padding: 21px 3px; border-bottom: 1px solid var(--border); text-decoration: none; }
.not-found nav span { color: var(--text-muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.not-found nav strong { font-size: 1rem; }

.site-footer { padding-top: 78px; border-top: 1px solid var(--border); background: #04080c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 0.65fr); gap: clamp(34px, 5vw, 80px); padding-bottom: 70px; }
.brand--footer img { width: 220px; }
.footer-brand > p { max-width: 330px; margin: 27px 0 18px; color: var(--text-secondary); }
.footer-email { color: var(--cyan-bright); font-size: 0.83rem; font-weight: 700; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h2 { margin-bottom: 12px; color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a { color: var(--text-secondary); font-size: 0.82rem; text-decoration: none; }
.footer-column a:hover { color: var(--text); }
.footer-base { display: flex; justify-content: space-between; gap: 40px; padding-block: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.68rem; }
.footer-base p { max-width: 800px; margin: 0; }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.75,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1500px) {
  :root { --shell: min(1320px, calc(100% - 80px)); }
  .hero__copy { max-width: 820px; }
}

@media (max-width: 1100px) {
  .process-card { grid-column: span 6; min-height: 270px; }
  .process-card__index { margin-bottom: 34px; }
  .wallet-grid { grid-template-columns: repeat(3, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 760px); }
  .page-hero__grid, .focus-grid, .editorial-grid, .feature-split, .feature-split--reverse, .report-grid, .trust-grid, .funding-grid, .evaluation-grid, .support-other, .report-steps, .boundary-grid, .warning-panel, .rights-grid { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 62px; }
  .page-hero__media { aspect-ratio: 1.7; }
  .page-hero__copy { max-width: 740px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .feature-split--copy-first > :first-child { order: 0; }
  .editorial-copy { padding-top: 0; }
  .trust-grid { gap: 45px; }
  .support-callout { grid-template-columns: 1fr; }
  .support-callout > div:nth-child(2) { flex-direction: row; flex-wrap: wrap; }
  .article-layout, .policy { grid-template-columns: minmax(0, var(--reading)); }
  .article-rail, .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 9px 18px; padding-bottom: 21px; border-bottom: 1px solid var(--border); }
  .article-rail p { flex-basis: 100%; }
  .updates-layout { grid-template-columns: 1fr; }
  .editorial-standard { max-width: 560px; }
  .warning-panel .do-not-list { columns: 1; }
  .source-tier-grid { grid-template-columns: 1fr; }
  .source-tier h2 { margin-top: 36px; }
  .contact-grid article { grid-column: span 3; }
  .contact-grid article:nth-child(4), .contact-grid article:nth-child(5) { grid-column: span 3; }
  .rights-grid { justify-content: stretch; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .header-inner { min-height: var(--header-height); }
  .brand img { width: 164px; }
  .menu-toggle {
    display: inline-flex;
    min-width: 82px;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(7, 16, 26, 0.8);
    color: var(--text);
    cursor: pointer;
  }
  .menu-toggle__label { font-size: 0.75rem; font-weight: 800; }
  .menu-toggle__icon { width: 17px; height: 14px; display: grid; align-content: center; gap: 5px; }
  .menu-toggle__icon i { display: block; height: 1px; background: var(--cyan-bright); transition: transform 160ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .js .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    align-content: start;
    gap: 0;
    padding: 34px max(22px, calc((100vw - 720px) / 2));
    overflow-y: auto;
    background: rgba(5, 9, 14, 0.99);
    border-top: 1px solid var(--border);
  }
  .js .primary-nav.is-open { display: grid; }
  .primary-nav a { min-height: 54px; display: flex; align-items: center; padding: 0; border-bottom: 1px solid var(--border); font-size: 1.08rem; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta { min-height: 54px; justify-content: center; margin-top: 28px; border-bottom: 1px solid rgba(37, 232, 255, 0.38); }
  .no-js .menu-toggle { display: none; }
  .no-js .header-inner { flex-wrap: wrap; padding-block: 12px; }
  .no-js .primary-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; width: 100%; }
  .hero { min-height: 780px; align-items: end; }
  .hero__media img { object-position: 62% center; }
  .hero__veil { background: linear-gradient(0deg, var(--bg-deep) 3%, rgba(5, 9, 14, 0.92) 54%, rgba(5, 9, 14, 0.3) 100%); }
  .hero__content { padding-block: 170px 60px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5.4rem); }
  .hero__scroll { display: none; }
  .section { padding-block: 82px; }
  .section-marker { align-items: flex-start; flex-direction: column; gap: 7px; }
  .process-grid { gap: 10px; }
  .process-card { grid-column: span 6; min-height: 250px; padding: 24px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-grid article { min-height: 275px; }
  .wallet-grid { grid-template-columns: repeat(2, 1fr); }
  .at-a-glance ul { grid-template-columns: repeat(2, 1fr); }
  .at-a-glance li:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .at-a-glance li:nth-last-child(-n+2) { border-bottom: 0; }
  .contact-intro, .transparency-strip { align-items: flex-start; flex-direction: column; }
  .not-found__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  .hero__content { padding-top: 150px; }
  .hero h1 { letter-spacing: -0.055em; }
  .hero__deck { font-size: 1rem; line-height: 1.62; }
  .hero .button-row .button { width: 100%; }
  .page-hero { min-height: 0; padding-block: calc(var(--header-height) + 52px) 52px; }
  .page-hero__grid { gap: 40px; }
  .page-hero h1 { font-size: clamp(2.55rem, 12vw, 4.2rem); }
  .page-hero__deck { font-size: 0.98rem; line-height: 1.65; }
  .page-hero__media { aspect-ratio: 1.35; }
  .hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .section { padding-block: 68px; }
  .section-heading h2, .editorial-statement h2, .report-copy h2, .support-callout h2, .statement-panel h2, .focus-copy h2 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .media-frame--panoramic { aspect-ratio: 1.45; }
  .status-list { grid-template-columns: 1fr; }
  .status-list__item { border-right: 0; border-bottom: 1px solid var(--border) !important; }
  .status-list__item:last-child { border-bottom: 0 !important; }
  .process-card { grid-column: 1 / -1; min-height: 230px; }
  .systems-visual > p { position: static; padding: 10px 0 0; border: 0; background: none; }
  .trust-list a { grid-template-columns: 1fr auto; gap: 7px 20px; }
  .trust-list span { grid-column: 1 / -1; }
  .support-callout { padding: 28px; }
  .support-callout > div:nth-child(2) .button { width: 100%; }
  .independence-banner .shell { grid-template-columns: 1fr; gap: 5px; }
  .article-layout, .policy { display: block; }
  .article-rail, .policy-nav { margin-bottom: 40px; }
  .prose--article { font-size: 0.98rem; }
  .answer-block { padding: 21px; font-size: 0.99rem; }
  .definition-list { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 5px; }
  .timeline article { grid-template-columns: 1fr; gap: 6px; padding: 0 0 34px 28px; }
  .timeline article::before { left: 0; }
  .timeline time { padding: 0; }
  .commitments-grid { grid-template-columns: 1fr; }
  .commitments-grid article { min-height: 220px; }
  .warning-panel { padding: 26px; }
  .steps-list > li { grid-template-columns: 46px 1fr; gap: 14px; }
  .funding-list { grid-template-columns: 1fr; }
  .funding-list span { min-height: 82px; }
  .contribution-notice { grid-template-columns: 1fr; }
  .wallet-grid { grid-template-columns: 1fr; }
  .wallet-card { min-height: 190px; }
  .at-a-glance ul { grid-template-columns: 1fr; }
  .at-a-glance li { border-bottom: 1px solid var(--border) !important; }
  .at-a-glance li:last-child { border-bottom: 0 !important; }
  .transparency-sections > article { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .status-definitions { grid-template-columns: 1fr; }
  .evaluation-grid dl > div { grid-template-columns: 1fr; gap: 5px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid article, .contact-grid article:nth-child(4), .contact-grid article:nth-child(5) { grid-column: auto; min-height: 240px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; gap: 12px; }
}

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

@media (forced-colors: active) {
  .eyebrow-dot, .status-dot, .status-list__item::before, .timeline article::before { forced-color-adjust: auto; }
  .button, .nav-cta, .media-frame, .page-hero__media { border: 1px solid ButtonText; }
}
