:root {
  --night: #03070b;
  --night-soft: #07111b;
  --night-raised: #0b151d;
  --ink: #f2e9d7;
  --muted: #b5aa98;
  --muted-deep: #948a7b;
  --gold: #c99d4b;
  --gold-light: #f0d79d;
  --crimson: #9e2427;
  --crimson-soft: #3a1115;
  --jade: #315f52;
  --jade-light: #70aa91;
  --line: rgba(201, 157, 75, 0.24);
  --line-soft: rgba(201, 157, 75, 0.13);
  --shell: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  position: relative;
  min-width: 280px;
  margin: 0;
  background:
    radial-gradient(circle at 84% 13%, rgba(158, 36, 39, 0.1), transparent 32rem),
    radial-gradient(circle at 9% 56%, rgba(49, 95, 82, 0.09), transparent 30rem),
    var(--night);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.68;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.14;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 49.8%, rgba(255, 255, 255, 0.04) 50%, transparent 50.2%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.4px);
  background-size: 24px 24px, 233px 233px;
}

body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
button { color: inherit; font: inherit; }
img { max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
h2 {
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding-block: clamp(84px, 9vw, 128px); }
.compact-section { padding-top: clamp(68px, 7vw, 96px); }
.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;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  background: var(--night);
  color: var(--gold-light);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow,
.page-kicker,
.threat-type {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.lede { color: #ded3bd; font-size: clamp(1.08rem, 1.6vw, 1.35rem); line-height: 1.58; }
.text-link,
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.86rem;
}
.text-link:hover,
.source-link:hover { color: #fff3d5; }

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.primary-button { background: var(--gold); color: #0d0b07; }
.primary-button:hover { background: var(--gold-light); border-color: var(--gold-light); }
.secondary-button { border-color: rgba(201, 157, 75, 0.42); color: var(--gold-light); }
.secondary-button:hover { background: rgba(201, 157, 75, 0.1); border-color: var(--gold); }
.button-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px; }

/* Shared navigation */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}
.site-header.solid-header {
  position: relative;
  background: rgba(3, 7, 11, 0.97);
  border-bottom: 1px solid var(--line-soft);
}
.site-nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(240, 215, 157, 0.16);
}
.solid-header .site-nav { border-bottom: 0; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 157, 75, 0.58);
  border-radius: 50%;
  box-shadow: inset 0 0 17px rgba(201, 157, 75, 0.12);
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i::before,
.brand-mark i::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3px;
  height: 11px;
  content: "";
  border-radius: 60% 60% 20% 20%;
  background: var(--gold);
  transform-origin: 50% 0;
}
.brand-mark::before { transform: rotate(0deg) translate(-50%, -2px); }
.brand-mark::after { transform: rotate(90deg) translate(-50%, -2px); }
.brand-mark i::before { transform: rotate(180deg) translate(-50%, -2px); }
.brand-mark i::after { transform: rotate(270deg) translate(-50%, -2px); }
.site-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 29px);
  color: #c7bdac;
  font-size: 0.78rem;
}
.site-nav nav a {
  position: relative;
  padding-block: 10px;
  transition: color 160ms ease;
}
.site-nav nav a:hover { color: var(--gold-light); }
.site-nav nav a[aria-current="page"] { color: var(--gold-light); }
.site-nav nav a[aria-current="page"]::after {
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  content: "";
  background: var(--gold);
}
.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(201, 157, 75, 0.34);
  border-radius: 2px;
  background: rgba(3, 7, 11, 0.5);
  font-size: 0.76rem;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.nav-cta:hover { border-color: var(--gold); background: rgba(201, 157, 75, 0.1); }
.nav-toggle { display: none; border: 0; background: transparent; }

/* Overview hero */
.hero {
  position: relative;
  min-height: 760px;
  border-bottom: 1px solid var(--line);
  background: #020406;
}
.hero-art,
.hero-art picture { position: absolute; inset: 0; }
.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 69% center;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 22%, transparent 64%, rgba(2, 4, 6, 0.97)),
    linear-gradient(90deg, rgba(2, 4, 6, 0.99) 0%, rgba(2, 4, 6, 0.96) 34%, rgba(2, 4, 6, 0.67) 51%, rgba(2, 4, 6, 0.08) 72%, transparent 79%);
}
.hero-copy {
  position: absolute;
  inset: auto 0 78px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9beaa;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero h1 { margin-top: 17px; filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.82)); }
.hero h1 > span {
  display: block;
  color: var(--gold-light);
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.hero h1 em {
  margin-top: 22px;
  display: block;
  color: #e7dac0;
  font-family: var(--mono);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1.7;
  text-transform: uppercase;
}
.hero-entry { max-width: 360px; }
.hero-entry p { margin-bottom: 19px; color: #c1b5a1; font-size: 0.94rem; }
.hero-facts {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  padding: 0;
  color: #b8ae9f;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  list-style: none;
  text-transform: uppercase;
}
.hero-facts li + li::before { margin-right: 27px; color: var(--gold); content: "·"; }

/* Overview content */
.impact-strip {
  padding-block: 58px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 17, 27, 0.74);
}
.impact-strip > .shell {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  align-items: end;
  gap: 34px 64px;
}
.impact-intro h2 { margin-top: 8px; font-size: clamp(1.7rem, 2.5vw, 2.65rem); letter-spacing: -0.02em; }
.impact-intro > p:last-child { margin-top: 9px; color: var(--muted); font-size: 0.78rem; }
.impact-grid { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.impact-grid div { padding: 18px 20px; background: var(--night-soft); }
.impact-grid dt { color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1; }
.impact-grid dd { margin: 8px 0 0; color: var(--muted); font-size: 0.7rem; line-height: 1.4; }
.impact-strip .source-link { grid-column: 2; font-size: 0.72rem; }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); align-items: end; gap: 54px; }
.split-heading h2 { margin-top: 12px; }
.split-heading > p { max-width: 520px; color: var(--muted); }
.gateway-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.gateway-card {
  position: relative;
  min-height: 310px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(11, 21, 29, 0.76), rgba(3, 7, 11, 0.92));
  transition: background-color 180ms ease, transform 180ms ease;
}
.gateway-card:nth-child(even) { border-right: 0; }
.gateway-card:nth-last-child(-n+2) { border-bottom: 0; }
.gateway-card:hover { background: rgba(18, 32, 41, 0.96); }
.card-index { color: var(--gold); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; }
.gateway-card h3 { margin-top: 36px; color: var(--gold-light); font-size: clamp(1.75rem, 2.8vw, 2.65rem); }
.gateway-card p { max-width: 500px; margin-top: 14px; color: var(--muted); }
.card-action { position: absolute; inset: auto 42px 36px; color: #d9ccb5; font-size: 0.78rem; }
.card-action i { margin-left: 9px; color: var(--gold); font-style: normal; }
.dark-panel {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(49, 95, 82, 0.09), transparent 42%),
    rgba(5, 13, 20, 0.86);
}
.protection-preview { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(52px, 8vw, 110px); }
.protection-preview h2 { margin-top: 13px; }
.preview-copy > .lede { margin-bottom: 29px; }
.signal-list { margin: 0 0 31px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.signal-list li { padding: 17px 0; display: grid; grid-template-columns: 160px 1fr; gap: 20px; border-bottom: 1px solid var(--line-soft); }
.signal-list strong { color: var(--gold-light); font-size: 0.82rem; }
.signal-list span { color: var(--muted); font-size: 0.84rem; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle-grid article { min-height: 270px; padding: 34px; background: rgba(5, 12, 18, 0.95); }
.principle-grid article > span { color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.principle-grid h3 { margin-top: 35px; color: var(--gold-light); font-size: 1.35rem; }
.principle-grid p { margin-top: 11px; color: var(--muted); font-size: 0.88rem; }
.origin-panel {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(158, 36, 39, 0.16), transparent 25rem),
    #060c12;
}
.origin-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(54px, 8vw, 110px); }
.origin-grid h2 { margin-top: 12px; }
.roadmap-list { margin: 36px 0 0; padding: 0; list-style: none; border-left: 1px solid var(--line); }
.roadmap-list li { position: relative; padding: 0 0 30px 34px; display: grid; gap: 4px; }
.roadmap-list li::before { position: absolute; top: 8px; left: -4px; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(201, 157, 75, 0.6); }
.roadmap-list span { color: var(--gold); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.roadmap-list strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.roadmap-list code,
.roadmap-list small { color: var(--muted); font-family: var(--mono); font-size: 0.7rem; }
.closing { text-align: center; }
.closing h2 { margin-top: 15px; }
.closing > p:not(.eyebrow) { max-width: 690px; margin: 24px auto 0; color: var(--muted); }
.closing .button-row { justify-content: center; }

/* Inner page heroes */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding-block: clamp(95px, 11vw, 150px) clamp(76px, 9vw, 124px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(46px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 42%, rgba(158, 36, 39, 0.16), transparent 25rem),
    linear-gradient(115deg, rgba(49, 95, 82, 0.08), transparent 42%);
}
.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 6.3vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.page-hero h1 em { font-style: italic; }
.page-hero-copy { display: grid; gap: 20px; }
.page-hero-copy > p:not(.lede) { color: var(--muted); }

/* Protection */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.persona-grid article { min-height: 330px; padding: 32px; display: flex; flex-direction: column; background: rgba(5, 12, 18, 0.96); }
.persona-icon { color: var(--gold); font-family: var(--serif); font-size: 1.75rem; }
.persona-grid h3 { margin-top: 28px; color: var(--gold-light); font-size: 1.35rem; }
.persona-grid p { margin-top: 12px; color: var(--muted); font-size: 0.87rem; }
.persona-grid a { margin-top: auto; padding-top: 28px; color: #dfcfb1; font-size: 0.75rem; }
.persona-grid a:hover { color: var(--gold-light); }
.source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.source-grid article { min-height: 275px; padding: 31px; background: rgba(3, 9, 14, 0.92); }
.source-grid article > span { color: var(--gold); font-family: var(--mono); font-size: 0.64rem; }
.source-grid h3 { margin-top: 31px; color: var(--gold-light); font-size: 1.28rem; }
.source-grid p { margin-top: 12px; color: var(--muted); font-size: 0.84rem; }
.detector-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); list-style: none; }
.detector-list li { min-height: 170px; padding: 29px; display: grid; grid-template-columns: 44px 1fr; gap: 18px; background: rgba(4, 10, 15, 0.95); }
.detector-list li > span { color: var(--gold); font-family: var(--mono); font-size: 0.65rem; }
.detector-list strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.17rem; font-weight: 500; }
.detector-list p { margin-top: 8px; color: var(--muted); font-size: 0.83rem; }
.boundary-panel {
  border-block: 1px solid rgba(158, 36, 39, 0.34);
  background:
    radial-gradient(circle at 12% 24%, rgba(158, 36, 39, 0.2), transparent 28rem),
    linear-gradient(120deg, #0b0c11, #080f14);
}
.boundary-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(50px, 8vw, 105px); }
.boundary-grid h2 { margin-top: 13px; }
.boundary-grid > div:first-child > .lede { margin-top: 25px; }
.guardrail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(201, 157, 75, 0.18); }
.guardrail-grid article { min-height: 210px; padding: 27px; background: rgba(6, 12, 17, 0.97); }
.guardrail-grid h3 { color: var(--gold-light); font-size: 1.18rem; }
.guardrail-grid p { margin-top: 11px; color: var(--muted); font-size: 0.83rem; }
.flow-row { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); list-style: none; }
.flow-row li { min-height: 155px; padding: 22px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: rgba(5, 12, 18, 0.92); }
.flow-row li:last-child { border-right: 0; }
.flow-row span { color: var(--gold); font-family: var(--mono); font-size: 0.62rem; }
.flow-row strong { margin-top: auto; color: var(--gold-light); font-family: var(--serif); font-size: 1.12rem; font-weight: 500; }
.flow-row small { color: var(--muted); font-size: 0.66rem; }
.urgent-note {
  margin-top: 24px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  border-left: 3px solid var(--crimson);
  background: rgba(158, 36, 39, 0.08);
}
.urgent-note strong { color: #f0c6c1; }
.urgent-note p { color: var(--muted); font-size: 0.84rem; }
.urgent-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* Threat library */
.method-band { padding-block: 48px; border-block: 1px solid var(--line-soft); background: rgba(7, 17, 27, 0.84); }
.method-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.method-grid h2 { margin-top: 9px; font-size: clamp(1.65rem, 3.3vw, 3rem); letter-spacing: -0.025em; }
.method-grid > div:last-child { display: grid; gap: 12px; color: var(--muted); font-size: 0.86rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-grid article { min-height: 260px; padding: 29px; display: flex; flex-direction: column; background: rgba(5, 12, 18, 0.97); }
.stat-grid strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.15rem); font-weight: 500; line-height: 1; }
.stat-grid span { margin-top: 9px; color: #d8cdb8; font-size: 0.76rem; font-weight: 700; }
.stat-grid p { margin-top: 16px; color: var(--muted); font-size: 0.78rem; }
.stat-grid a { margin-top: auto; padding-top: 22px; color: var(--gold); font-size: 0.68rem; }
.stat-grid a:hover { color: var(--gold-light); }
.library-index,
.comic-index {
  margin-block: 0 8px;
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  border-block: 1px solid var(--line-soft);
}
.library-index > span { margin-right: 10px; color: var(--gold); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; }
.library-index a { padding: 7px 10px; border: 1px solid var(--line-soft); color: #c9bfaf; font-size: 0.69rem; }
.library-index a:hover { border-color: var(--gold); color: var(--gold-light); }
.threat-section { display: grid; gap: 28px; }
.threat-section > .section-heading { margin-bottom: 22px; }
.threat-card {
  scroll-margin-top: 20px;
  border: 1px solid var(--line);
  background: rgba(4, 10, 15, 0.96);
}
.threat-card > header {
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(201, 157, 75, 0.06), transparent 52%);
}
.threat-number { color: var(--gold); font-family: var(--mono); font-size: 0.7rem; }
.threat-card h3 { margin-top: 5px; color: var(--gold-light); font-size: clamp(1.45rem, 2.7vw, 2.35rem); line-height: 1.12; }
.loss-tag { padding: 8px 11px; border: 1px solid rgba(201, 157, 75, 0.32); color: #e2d2b5; font-family: var(--mono); font-size: 0.64rem; font-weight: 400; }
.threat-body { display: grid; grid-template-columns: repeat(2, 1fr); }
.threat-body > div { min-height: 230px; padding: 27px 30px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.threat-body > div:nth-child(even) { border-right: 0; }
.threat-body > div:nth-last-child(-n+2) { border-bottom: 0; }
.threat-body h4 { color: var(--gold); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; }
.threat-body p { margin-top: 12px; color: var(--muted); font-size: 0.84rem; }
.threat-body ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.81rem; }
.threat-body li + li { margin-top: 6px; }
.threat-card > footer { padding: 17px 29px; display: flex; flex-wrap: wrap; gap: 8px 22px; border-top: 1px solid var(--line); background: rgba(7, 17, 27, 0.72); }
.threat-card > footer a { color: #cfc2ab; font-size: 0.68rem; text-decoration: underline; text-decoration-color: rgba(201, 157, 75, 0.34); text-underline-offset: 3px; }
.threat-card > footer a:hover { color: var(--gold-light); text-decoration-color: var(--gold); }
.danger-card { border-color: rgba(158, 36, 39, 0.5); }
.danger-card > header { border-bottom-color: rgba(158, 36, 39, 0.35); background: linear-gradient(90deg, rgba(158, 36, 39, 0.12), transparent 55%); }
.victim-safe { margin: 0; padding: 20px 29px; display: grid; grid-template-columns: 135px 1fr; gap: 25px; border-top: 1px solid rgba(158, 36, 39, 0.34); background: rgba(158, 36, 39, 0.08); }
.victim-safe strong { color: #efc5c0; font-size: 0.8rem; }
.victim-safe p { color: var(--muted); font-size: 0.82rem; }
.global-panel { border-block: 1px solid var(--line); background: #070e14; }
.global-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.global-grid article { min-height: 390px; padding: clamp(27px, 4vw, 42px); display: flex; flex-direction: column; background: linear-gradient(145deg, rgba(9, 20, 28, 0.97), rgba(3, 8, 12, 0.98)); }
.global-grid article > span { color: var(--gold); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; }
.global-grid h3 { margin-top: 24px; color: var(--gold-light); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.global-grid p { margin-top: 13px; color: var(--muted); font-size: 0.84rem; }
.global-grid strong { margin-top: 23px; color: #d9cdb8; font-size: 0.72rem; }
.global-grid strong + p { margin-top: 5px; }
.global-grid a { margin-top: auto; padding-top: 24px; display: block; color: var(--gold); font-size: 0.7rem; }
.global-grid a + a { margin-top: 5px; padding-top: 0; }
.global-grid a:hover { color: var(--gold-light); }
.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); }
.table-wrap:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.exposure-table,
.plan-compare { width: 100%; min-width: 720px; border-collapse: collapse; table-layout: fixed; }
.exposure-table th,
.exposure-table td,
.plan-compare th,
.plan-compare td { padding: 17px 19px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 0.78rem; font-weight: 400; text-align: left; vertical-align: top; }
.exposure-table tr > :last-child,
.plan-compare tr > :last-child { border-right: 0; }
.exposure-table tbody tr:last-child > *,
.plan-compare tbody tr:last-child > * { border-bottom: 0; }
.exposure-table thead,
.plan-compare thead { background: rgba(201, 157, 75, 0.08); }
.exposure-table thead th,
.plan-compare thead th { color: var(--gold-light); font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.reporting-panel { border-block: 1px solid rgba(49, 95, 82, 0.48); background: linear-gradient(120deg, rgba(49, 95, 82, 0.18), rgba(4, 11, 16, 0.96)); }
.reporting-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 8vw, 100px); }
.reporting-grid h2 { margin-top: 13px; }
.reporting-grid > div:first-child > p:last-child { margin-top: 23px; color: var(--muted); }
.report-links { border-top: 1px solid var(--line); }
.report-links a { padding: 17px 0; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line-soft); }
.report-links strong { color: var(--gold-light); font-family: var(--serif); font-weight: 500; }
.report-links span { color: var(--muted); font-size: 0.73rem; text-align: right; }
.report-links a:hover span { color: var(--gold-light); }

/* Comics */
.comic-index { justify-content: center; gap: 1px; }
.comic-index a { min-width: 220px; padding: 14px 20px; border: 1px solid var(--line-soft); color: var(--gold-light); font-family: var(--serif); font-size: 1.05rem; }
.comic-index a span { display: block; color: var(--gold); font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; }
.comic-index a:hover { background: rgba(201, 157, 75, 0.08); border-color: var(--gold); }
.comic-case { scroll-margin-top: 10px; padding-block: clamp(86px, 10vw, 136px); border-bottom: 1px solid var(--line); }
.alternate-case { background: rgba(7, 17, 27, 0.78); }
.comic-heading { margin-bottom: 35px; display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.comic-heading h2 { margin-top: 10px; font-size: clamp(2.5rem, 5vw, 5rem); }
.comic-maxim { max-width: 330px; padding-left: 20px; border-left: 1px solid var(--gold); color: #ddcfb7; font-family: var(--serif); font-size: 1.22rem; font-style: italic; }
.comic-frame { margin-top: 0; margin-bottom: 0; }
.comic-frame > img { width: 100%; height: auto; display: block; border: 1px solid rgba(201, 157, 75, 0.48); background: #020406; box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38); }
.comic-frame figcaption { margin-top: 1px; }
.panel-transcript { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); list-style: none; }
.panel-transcript li { padding: 25px 27px; background: rgba(5, 12, 18, 0.97); }
.panel-transcript span { color: var(--gold); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.panel-transcript p { margin-top: 11px; color: var(--muted); font-size: 0.82rem; }
.case-lessons { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); }
.case-lessons > div { padding: 24px 27px; background: rgba(4, 10, 15, 0.92); }
.case-lessons strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.case-lessons p { margin-top: 8px; color: var(--muted); font-size: 0.81rem; }
.case-lessons > a { grid-column: 1 / -1; padding: 15px 27px; background: rgba(49, 95, 82, 0.13); color: var(--gold-light); font-size: 0.75rem; }
.case-lessons > a:hover { background: rgba(49, 95, 82, 0.22); }
.mini-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.mini-case-grid article { min-height: 235px; padding: 28px; background: rgba(3, 9, 14, 0.95); }
.mini-case-grid span { color: var(--gold); font-family: var(--mono); font-size: 0.61rem; letter-spacing: 0.11em; text-transform: uppercase; }
.mini-case-grid h3 { margin-top: 20px; color: var(--gold-light); font-size: 1.24rem; }
.mini-case-grid p { margin-top: 10px; color: var(--muted); font-size: 0.8rem; }

/* Pricing */
.pricing-hero::before { background: radial-gradient(circle at 72% 45%, rgba(201, 157, 75, 0.13), transparent 25rem), linear-gradient(115deg, rgba(49, 95, 82, 0.08), transparent 42%); }
.price-status { margin-top: 34px; padding: 22px 25px; display: grid; grid-template-columns: 245px 1fr; gap: 30px; border: 1px solid rgba(201, 157, 75, 0.38); background: rgba(201, 157, 75, 0.07); }
.price-status span { color: var(--gold-light); font-family: var(--mono); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.price-status p { color: var(--muted); font-size: 0.82rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-card { min-height: 650px; padding: clamp(28px, 3.5vw, 40px); display: flex; flex-direction: column; background: linear-gradient(160deg, rgba(10, 21, 29, 0.98), rgba(3, 8, 12, 0.99)); }
.core-price { box-shadow: inset 0 3px 0 var(--gold); }
.watch-price { box-shadow: inset 0 3px 0 var(--jade-light); }
.family-price { box-shadow: inset 0 3px 0 var(--crimson); }
.price-card-head > span { color: var(--gold); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; }
.price-card h3 { margin-top: 18px; color: var(--gold-light); font-size: clamp(1.6rem, 2.8vw, 2.35rem); }
.price-card-head > p { min-height: 74px; margin-top: 10px; color: var(--muted); font-size: 0.82rem; }
.price { margin-block: 28px; padding-block: 22px; border-block: 1px solid var(--line-soft); }
.price strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.7rem); font-weight: 500; line-height: 0.9; }
.price span { margin-top: 9px; display: block; color: var(--muted); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card ul { margin: 0; padding: 0; list-style: none; }
.price-card li { padding: 11px 0 11px 22px; position: relative; border-bottom: 1px solid var(--line-soft); color: #c9bfaf; font-size: 0.8rem; }
.price-card li::before { position: absolute; left: 0; color: var(--jade-light); content: "✓"; }
.price-footnote { margin-top: auto; padding-top: 28px; color: var(--muted-deep); font-size: 0.71rem; }
.plan-compare th:first-child { width: 40.6%; }
.plan-compare strong { color: var(--gold-light); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.support-grid article { min-height: 215px; padding: 27px; background: rgba(5, 12, 18, 0.95); }
.support-grid h3 { color: var(--gold-light); font-size: 1.16rem; }
.support-grid p { margin-top: 11px; color: var(--muted); font-size: 0.81rem; }
.dignity-note { margin-top: 22px; padding: 20px 23px; border-left: 3px solid var(--jade); background: rgba(49, 95, 82, 0.1); color: #c9bfaf; font-size: 0.82rem; }
.launch-checklist { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); list-style: none; }
.launch-checklist li { min-height: 145px; padding: 25px; display: grid; grid-template-columns: 40px 1fr; gap: 16px; background: rgba(5, 12, 18, 0.95); }
.launch-checklist li:last-child { grid-column: 1 / -1; }
.launch-checklist span { color: var(--gold); font-family: var(--mono); font-size: 0.65rem; }
.launch-checklist p { color: var(--muted); font-size: 0.81rem; }
.launch-checklist strong { color: var(--gold-light); }

/* Footer and error page */
.site-footer { padding-block: 42px; border-top: 1px solid var(--line); background: #020508; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.site-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: 0.72rem; }
.site-footer nav a:hover { color: var(--gold-light); }
.site-footer > .shell > div:last-child { color: var(--muted-deep); font-family: var(--mono); font-size: 0.61rem; text-align: right; }
.error-page { min-height: 100svh; display: grid; place-items: center; }
.error-main { min-height: 720px; padding-block: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.error-main > div { max-width: 850px; padding-bottom: 50px; }
.error-main h1 { margin-top: 20px; font-size: clamp(3rem, 7vw, 7rem); line-height: 0.95; letter-spacing: -0.055em; }
.error-main > div > p:not(.page-kicker) { max-width: 620px; margin-top: 24px; color: var(--muted); }
.error-main .primary-button { margin-top: 30px; }

@media (max-width: 1100px) {
  .site-nav nav { gap: 18px; }
  html:not(.has-js) .site-nav { grid-template-columns: 1fr; padding-block: 14px; }
  html:not(.has-js) .site-nav nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; row-gap: 1px; }
  .has-js .site-nav { grid-template-columns: auto 1fr auto; }
  .has-js .nav-toggle {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(201, 157, 75, 0.35);
  }
  .has-js .nav-toggle i { width: 18px; height: 1px; display: block; background: var(--gold-light); }
  .has-js .site-nav nav {
    position: absolute;
    inset: calc(100% - 1px) 0 auto;
    display: none;
    padding: 14px 24px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 1px;
    border: 1px solid var(--line);
    background: rgba(3, 7, 11, 0.99);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  }
  .has-js .site-nav nav[data-open="true"] { display: flex; }
  .has-js .site-nav nav a { padding: 11px 8px; border-bottom: 1px solid var(--line-soft); }
  .has-js .site-nav nav a[aria-current="page"]::after { display: none; }
  .impact-strip > .shell { grid-template-columns: 1fr; }
  .impact-strip .source-link { grid-column: 1; }
  .persona-grid,
  .source-grid,
  .support-grid,
  .mini-case-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card-head > p { min-height: 0; }
  .price-footnote { margin-top: 28px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding-block: 80px; }
  .site-nav { min-height: 76px; }
  .hero { min-height: 700px; height: auto; max-height: none; padding-top: clamp(330px, 55svh, 480px); }
  .hero-art img { object-position: 71% center; }
  .hero-vignette { background: linear-gradient(180deg, rgba(2, 4, 6, 0.82), rgba(2, 4, 6, 0.38) 42%, rgba(2, 4, 6, 0.97) 82%), linear-gradient(90deg, rgba(2, 4, 6, 0.94), transparent 82%); }
  .hero-copy { position: relative; inset: auto; display: block; padding-bottom: 30px; }
  .hero-entry { margin-top: 28px; }
  .hero h1 > span { font-size: clamp(3.2rem, 15vw, 6rem); }
  .hero-facts { position: relative; inset: auto; min-height: 0; padding-bottom: 18px; justify-content: flex-start; flex-wrap: wrap; gap: 8px 14px; font-size: 0.57rem; }
  .hero-facts li + li::before { margin-right: 14px; }
  .impact-grid { grid-template-columns: 1fr; }
  .split-heading,
  .protection-preview,
  .origin-grid,
  .page-hero,
  .boundary-grid,
  .method-grid,
  .reporting-grid { grid-template-columns: 1fr; }
  .split-heading { align-items: start; gap: 28px; }
  .page-hero { min-height: auto; padding-block: 88px; gap: 34px; }
  .page-hero h1 { font-size: clamp(3rem, 12vw, 5.4rem); }
  .gateway-grid,
  .principle-grid,
  .persona-grid,
  .source-grid,
  .detector-list,
  .guardrail-grid,
  .global-grid,
  .support-grid,
  .mini-case-grid,
  .launch-checklist { grid-template-columns: 1fr; }
  .gateway-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .gateway-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gateway-card:last-child { border-bottom: 0; }
  .signal-list li { grid-template-columns: 1fr; gap: 6px; }
  .flow-row { grid-template-columns: 1fr; }
  .flow-row li { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-row li:last-child { border-bottom: 0; }
  .flow-row strong { margin-top: 18px; }
  .urgent-note,
  .victim-safe,
  .price-status { grid-template-columns: 1fr; gap: 10px; }
  .threat-card > header { grid-template-columns: 38px 1fr; }
  .loss-tag { grid-column: 2; justify-self: start; white-space: normal; }
  .threat-body { grid-template-columns: 1fr; }
  .threat-body > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .threat-body > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .threat-body > div:last-child { border-bottom: 0; }
  .report-links a { flex-direction: column; gap: 3px; }
  .report-links span { text-align: left; }
  .comic-heading { display: block; }
  .comic-maxim { margin-top: 19px; }
  .panel-transcript,
  .case-lessons { grid-template-columns: 1fr; }
  .case-lessons > a { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > .shell > div:last-child { text-align: center; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  h2 { font-size: clamp(2.35rem, 12.5vw, 3.6rem); }
  .brand { font-size: 1.02rem; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { min-height: 0; }
  .hero h1 > span { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero h1 em { letter-spacing: 0.16em; }
  .hero-entry { max-width: 285px; }
  .hero-facts { min-height: 42px; gap: 10px; font-size: 0.51rem; letter-spacing: 0.06em; }
  .hero-facts li + li::before { margin-right: 10px; }
  .gateway-card { min-height: 330px; padding: 28px 23px; }
  .card-action { inset: auto 23px 28px; }
  .persona-grid article,
  .source-grid article { padding: 26px 23px; }
  .stat-grid { grid-template-columns: 1fr; }
  .threat-card > header { padding: 23px 20px; }
  .threat-body > div { padding: 24px 20px; }
  .threat-card > footer { padding: 16px 20px; }
  .global-grid article { min-height: 0; padding: 28px 22px; }
  .comic-index { display: grid; }
  .comic-index a { min-width: 0; width: 100%; }
  .panel-transcript li,
  .case-lessons > div { padding: 22px 20px; }
  .price-card { padding: 30px 22px; }
  .button-row { flex-direction: column; }
  .primary-button,
  .secondary-button { width: 100%; }
}

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

@media print {
  :root { --night: #fff; --ink: #111; --muted: #333; --gold: #76570f; --gold-light: #5d430b; --line: #bbb; --line-soft: #ddd; }
  body { background: #fff; color: #111; }
  body::before { display: none !important; }
  .page-hero,
  .section { padding-block: 30px; }
  .threat-card,
  .threat-body > div,
  .global-grid article { break-inside: avoid; background: #fff; }
  a { text-decoration: underline; }
}
