:root {
  --page: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #ecefec;
  --ink: #111615;
  --ink-soft: #2e3835;
  --muted: #58625e;
  --rule: #d7ddd7;
  --rule-strong: #aeb9b0;
  --institution: #213f3a;
  --institution-dark: #152b27;
  --signal: #8f3b33;
  --signal-soft: #f2e3df;
  --notice: #b2762b;
  --ok: #4d6b58;
  --shadow: 0 24px 70px rgb(17 22 21 / 0.11);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px clamp(18px, 4.8vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.site-header .brand > span {
  margin-top: 0;
  color: var(--ink);
  font-size: 15px;
}

.brand-emblem {
  width: 54px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgb(17 22 21 / 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.site-nav a {
  padding: 10px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-action {
  border: 1px solid var(--institution);
  color: var(--institution);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.92fr);
  gap: clamp(28px, 4.2vw, 68px);
  min-height: min(100svh, 980px);
  padding: 116px clamp(18px, 4.8vw, 72px) 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--surface-soft) 44%, transparent);
  content: "";
}

.hero-copy {
  align-self: center;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(54px, 7.55vw, 100px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-line {
  max-width: 720px;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.72vw, 48px);
  line-height: 1.04;
}

.hero-lead,
.hero-support {
  max-width: 720px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.78vw, 22px);
  line-height: 1.52;
}

.hero-support {
  max-width: 680px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 32px;
  font-size: 17px;
  border: 1px solid var(--institution);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  width: auto;
  margin-top: 0;
  background: var(--institution);
  color: var(--surface);
}

.hero .button.primary {
  min-width: 224px;
}

.hero .button.secondary {
  min-width: 272px;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--institution-dark);
}

.button.secondary {
  width: auto;
  margin-top: 0;
  background: var(--surface);
  color: var(--institution);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--surface-soft);
}

.hero-note,
.cta-note {
  max-width: 680px;
  margin-top: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--ok);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  min-height: 34px;
  padding: 8px 12px 8px 30px;
  border: 1px solid var(--rule);
  background: rgb(255 255 255 / 0.68);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.trust-list li::before {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ok);
  background: var(--surface);
  content: "";
}

.report-preview {
  align-self: center;
  justify-self: end;
  margin: 0;
  width: min(100%, 620px);
}

.report-preview figcaption {
  margin: 0 0 12px 28px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-sheet {
  position: relative;
  padding: clamp(32px, 3.8vw, 50px);
  border: 1px solid var(--rule-strong);
  border-left: 6px solid var(--institution);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.report-sheet::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 82%;
  height: 92%;
  border: 1px solid var(--rule);
  background: var(--surface-soft);
  content: "";
}

.report-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.report-head div,
.report-count {
  display: grid;
  gap: 6px;
}

.label,
.report-count span,
.zone {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-head strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.report-count {
  margin-top: 22px;
}

.report-count strong {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.35vw, 46px);
  font-weight: 500;
  line-height: 1.04;
}

.report-events {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: report-events;
}

.report-events li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border: 1px solid var(--rule);
  background: #fbfcfb;
  counter-increment: report-events;
}

.report-events li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-weight: 800;
  content: counter(report-events, decimal-leading-zero);
}

.report-events strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.35;
}

.report-events p,
.report-conclusion {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.report-conclusion {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--signal);
  background: var(--signal-soft);
  color: var(--ink-soft);
}

.report-table {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--rule);
  background: var(--surface);
}

.report-row {
  display: grid;
  grid-template-columns: minmax(124px, 1fr) minmax(148px, 0.78fr) minmax(148px, 1fr);
  gap: 16px;
  padding: 20px 20px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.35;
}

.report-row > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-row:first-child {
  border-top: 0;
}

.report-row-head {
  background: var(--surface-soft);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-row .risk-pill {
  justify-self: start;
  white-space: nowrap;
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.risk-pill-high {
  background: #f2e3df;
  color: #8f3b33;
}

.risk-pill-medium {
  background: #f5ead9;
  color: #9a6528;
}

.risk-pill-info {
  background: #e7eded;
  color: #3e625c;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4.8vw, 72px);
  border-bottom: 1px solid var(--rule);
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 940px;
}

.section-heading h2,
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.02;
}

.section-heading p:not(.section-kicker),
.responsibility-copy p,
.final-cta p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--rule);
}

.scope-grid article,
.source-grid article,
.integration-list article,
.report-composition article {
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--surface);
}

.scope-grid h3,
.source-grid h3,
.integration-list h3,
.report-composition h3,
.risk-ladder h3,
.process-list h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.scope-grid p,
.source-grid p,
.integration-list p,
.report-composition p,
.risk-ladder p,
.process-list p,
.audience-list li,
.audience-cards p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.card-finding {
  padding-top: 13px;
  border-top: 1px solid var(--rule);
  font-size: 15px;
}

.card-finding strong {
  color: var(--institution);
}

.sources-section {
  background: var(--surface);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--rule);
}

.source-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 20px;
}

.source-grid span {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--rule-strong);
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.source-grid p {
  margin-top: 0;
}

.logic-section {
  background: var(--surface);
}

.risk-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  background: transparent;
}

.risk-ladder article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--signal);
  border-left: 3px solid var(--signal);
  background: var(--surface);
}

.risk-ladder article:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -21px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid var(--rule-strong);
  background: var(--surface);
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
  content: "→";
}

.risk-ladder span,
.process-list span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.risk-ladder span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--rule-strong);
  background: var(--page);
  color: var(--signal);
  font-size: 15px;
}

.risk-ladder h3 {
  font-size: 27px;
  font-weight: 700;
}

.section-summary {
  max-width: 900px;
  margin-top: 34px;
  padding: 19px 22px;
  border-left: 4px solid var(--institution);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.sources-section .section-summary {
  background: var(--page);
}

.process-section {
  background: var(--institution);
  color: var(--surface);
}

.process-section .section-kicker {
  color: #edc5bd;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 0;
  padding: 0;
  background: rgb(255 255 255 / 0.28);
  list-style: none;
}

.process-list li {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--institution);
}

.process-list span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.35);
  color: #edc5bd;
  font-size: 20px;
}

.process-list h3 {
  color: var(--surface);
  font-size: 27px;
  font-weight: 700;
}

.process-list p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.52;
}

.report-section {
  background: var(--page);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.56fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.event-card {
  padding: clamp(36px, 4.2vw, 56px);
  border: 1px solid var(--rule-strong);
  border-left: 5px solid var(--signal);
  background: var(--surface);
  box-shadow: 0 24px 60px rgb(17 22 21 / 0.1);
}

.event-level {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  background: var(--signal-soft);
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
}

.event-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
}

.event-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.event-card dl div {
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.event-card dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-card dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.42;
}

.event-status-row {
  margin-top: 4px;
  padding: 18px 20px;
  border-top: 0;
  border-left: 4px solid var(--institution);
  background: var(--page);
}

.report-composition {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--rule);
}

.audiences-section {
  background: var(--surface);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 0;
  background: var(--rule);
}

.audience-cards article {
  min-height: 156px;
  padding: clamp(22px, 2.5vw, 32px);
  background: var(--surface);
}

.audience-cards h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--rule);
}

.responsibility-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  background: var(--surface);
}

.responsibility-copy {
  display: grid;
  gap: 22px;
}

.responsibility-lead {
  padding-left: 18px;
  border-left: 4px solid var(--signal);
  font-weight: 700;
}

.responsibility-accent {
  padding: 16px 18px;
  border-left: 4px solid var(--institution);
  background: var(--page);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: clamp(68px, 8.6vw, 124px) clamp(18px, 4.8vw, 72px);
  background: var(--institution-dark);
  color: var(--surface);
}

.final-cta h2 {
  font-size: clamp(40px, 5.4vw, 70px);
}

.final-cta p {
  max-width: 780px;
  margin-top: 18px;
  color: #dce5df;
}

.final-cta .button.secondary {
  border-color: #dce5df;
  background: transparent;
  color: var(--surface);
}

.final-cta .button.primary {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--institution-dark);
}

.final-cta .hero-actions {
  justify-content: start;
  margin-top: 0;
}

.final-cta .button {
  min-height: 74px;
  padding-inline: 42px;
  font-size: 17px;
}

.cta-note {
  grid-column: 1 / -1;
  margin-top: 0;
  border-left-color: #edc5bd;
  color: #dce5df;
}

:focus-visible {
  outline: 3px solid #2454b8;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    position: static;
    border-bottom: 1px solid var(--rule);
    background: var(--page);
  }

  .hero,
  .report-layout,
  .responsibility-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .final-cta .hero-actions {
    justify-content: start;
  }

  .scope-grid,
  .source-grid,
  .risk-ladder,
  .process-list,
  .audience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .risk-ladder article:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 24px;
    padding-left: 24px;
    overflow: hidden;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(100vw - 48px);
    width: 100%;
  }

  .brand-emblem {
    width: 44px;
    height: 50px;
  }

  .site-nav a {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    border: 1px solid var(--rule);
    background: var(--surface);
    overflow-wrap: anywhere;
    text-align: center;
  }

  h1 {
    max-width: 300px;
    font-size: 46px;
  }

  .hero-line {
    max-width: 330px;
    font-size: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }

  .hero-actions .button,
  .final-cta .button {
    min-width: 0;
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-list li {
    width: 100%;
  }

  .hero-copy,
  .section-heading,
  .report-preview {
    max-width: calc(100vw - 48px);
    width: 100%;
  }

  .report-preview {
    justify-self: stretch;
  }

  .report-sheet {
    width: 100%;
    max-width: 100%;
  }

  .report-sheet::after {
    display: none;
  }

  .report-head,
  .report-row,
  .scope-grid,
  .source-grid,
  .risk-ladder,
  .process-list,
  .report-composition,
  .audience-cards,
  .integration-list {
    grid-template-columns: 1fr;
  }

  .risk-ladder {
    gap: 1px;
    background: var(--rule);
  }

  .risk-ladder article {
    min-height: auto;
    border: 0;
  }

  .risk-ladder article::after {
    display: none;
  }

  .report-events li {
    padding-left: 48px;
  }

  .report-row-head {
    display: none;
  }

  .report-row {
    gap: 7px;
  }

  .report-row strong {
    white-space: normal;
  }

  .report-row span:first-child {
    color: var(--ink);
    font-weight: 800;
  }

  .source-grid article {
    grid-template-columns: 1fr;
  }

  .source-grid span {
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .site-nav,
  .hero-copy,
  .section-heading,
  .report-preview {
    max-width: min(342px, calc(100vw - 48px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
