:root {
  color-scheme: light;
  --navy-1000: #050b13;
  --navy-950: #08111f;
  --navy-900: #0d1b2a;
  --navy-850: #122235;
  --navy-800: #182b41;
  --paper: #f6f8fa;
  --white: #ffffff;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d8dee8;
  --line-dark: rgba(255, 255, 255, 0.13);
  --teal: #0fceab;
  --teal-dark: #087f70;
  --teal-soft: #d9faf3;
  --violet: #7c3aed;
  --violet-dark: #5b21b6;
  --violet-soft: #ede9fe;
  --lavender: #c4b5fd;
  --amber: #d97706;
  --amber-soft: #fff3d6;
  --red: #ef4444;
  --red-soft: #feecec;
  --green: #15805f;
  --shadow-sm: 0 10px 28px rgba(8, 17, 31, 0.08);
  --shadow-lg: 0 28px 80px rgba(3, 8, 15, 0.28);
  --shell: 1180px;
  --radius: 8px;
  --radius-small: 6px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 17, 31, 0.96);
  color: #f8fafc;
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--shell), calc(100% - 40px));
  min-height: 74px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #f8fafc;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand__wordmark {
  font-size: 19px;
  font-weight: 640;
  line-height: 1;
  white-space: nowrap;
}

.brand__wordmark strong {
  color: var(--teal);
  font-weight: 790;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 680;
}

.primary-nav > a:not(.button) {
  color: #b9c5d5;
  transition: color 150ms ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a[aria-current="page"] {
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.icon-button {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--white);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="tab"]:focus-visible {
  outline: 3px solid rgba(15, 206, 171, 0.4);
  outline-offset: 2px;
}

.button--primary {
  background: var(--teal);
  color: #04140f;
}

.button--primary:link,
.button--primary:visited {
  color: #04140f;
  text-decoration: none;
}

.button--primary:hover {
  background: #2ce0be;
}

.button--violet {
  background: var(--violet);
  color: var(--white);
}

.button--violet:link,
.button--violet:visited,
.button--secondary:link,
.button--secondary:visited,
.button--dark:link,
.button--dark:visited {
  color: var(--white);
  text-decoration: none;
}

.button--violet:hover {
  background: #8b4ff2;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark {
  background: var(--navy-950);
  color: var(--white);
}

.button--outline-dark {
  border-color: #adb7c6;
  background: transparent;
  color: var(--ink);
}

.button--outline-dark:link,
.button--outline-dark:visited {
  color: var(--ink);
  text-decoration: none;
}

.button--small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 12px;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  min-height: calc(100svh - 74px);
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 64px;
  align-items: center;
  width: min(var(--shell), calc(100% - 40px));
  min-height: calc(100svh - 74px);
  margin-inline: auto;
  padding: 52px 0 68px;
}

.hero__copy {
  align-self: center;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 22px;
  font-size: 68px;
  font-weight: 790;
  line-height: 0.98;
}

.hero__copy > p,
.page-hero__copy > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: #bec9d7;
  font-size: 19px;
  line-height: 1.55;
}

.hero__subline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 560px;
  margin-top: 24px;
  color: #8fa0b4;
  font-size: 12px;
  line-height: 1.5;
}

.hero__subline svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.product-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line-dark);
  color: #9faec0;
  font-family: var(--font-mono);
  font-size: 11px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5d72;
}

.window-controls span:first-child {
  background: var(--red);
}

.window-controls span:nth-child(2) {
  background: var(--amber);
}

.window-controls span:last-child {
  background: var(--teal);
}

.product-window__body {
  padding: 18px;
}

.readiness-strip {
  display: grid;
  grid-template-columns: 128px repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.readiness-score {
  display: grid;
  place-content: center;
  min-height: 112px;
  border: 1px solid rgba(15, 206, 171, 0.26);
  border-radius: var(--radius-small);
  background: rgba(15, 206, 171, 0.08);
  text-align: center;
}

.readiness-score strong {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 34px;
  line-height: 1;
}

.readiness-score span,
.metric-cell span {
  margin-top: 8px;
  color: #8999ac;
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.metric-cell {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.025);
}

.metric-cell strong {
  font-size: 23px;
  line-height: 1;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
  gap: 12px;
}

.ops-panel {
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  background: rgba(4, 12, 22, 0.38);
}

.ops-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line-dark);
}

.ops-panel__header h2,
.ops-panel__header h3 {
  margin: 0;
  color: #c9d4e2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 10px;
}

.status-live::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(15, 206, 171, 0.12);
  content: "";
}

.alert-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 72px;
  padding: 10px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.alert-row__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-small);
  background: var(--amber-soft);
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 800;
}

.alert-row__icon--ok {
  background: rgba(15, 206, 171, 0.13);
  color: var(--teal);
}

.alert-row strong {
  display: block;
  overflow: hidden;
  color: #f5f7fa;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert-row small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #8191a4;
  font-family: var(--font-mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert-row time {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 10px;
}

.runbook-list {
  padding: 10px 13px 13px;
}

.runbook-step {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 8px 0;
  color: #b7c2d0;
  font-size: 11px;
}

.runbook-step span:first-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(124, 58, 237, 0.18);
  color: var(--lavender);
  font-family: var(--font-mono);
  font-size: 10px;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  min-height: 124px;
}

.trust-band h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.operator-band {
  border-top: 1px solid #cfe2de;
  border-bottom: 1px solid #cfe2de;
  background: #eef5f3;
}

.operator-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 72px;
  align-items: center;
  min-height: 350px;
  padding: 64px 0;
}

.operator-band__copy h2 {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.04;
}

.operator-band__copy p {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.operator-band__link {
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.operator-band__facts {
  border-top: 1px solid #bfd6d1;
}

.operator-band__facts > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #bfd6d1;
}

.operator-band__facts span {
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.operator-band__facts strong {
  font-size: 14px;
  line-height: 1.45;
}

.incident-proof {
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  background: var(--navy-1000);
  color: var(--white);
}

.incident-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 70px;
  align-items: center;
  min-height: 420px;
  padding: 64px 0;
}

.incident-proof__copy h2 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.03;
}

.incident-proof__copy p {
  max-width: 570px;
  margin-bottom: 20px;
  color: #aebac8;
  font-size: 16px;
  line-height: 1.62;
}

.incident-proof .section-label {
  color: var(--teal);
}

.incident-proof__link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.incident-ledger {
  overflow: hidden;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  background: #0c121a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.incident-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #c7d1dc;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.incident-ledger__row {
  display: grid;
  grid-template-columns: 46px 10px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.incident-ledger__row:first-of-type {
  border-top: 0;
}

.incident-ledger__row time {
  color: #8191a4;
  font-family: var(--font-mono);
  font-size: 10px;
}

.incident-ledger__signal {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 206, 171, 0.11);
}

.incident-ledger__signal--warning {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.incident-ledger__signal--critical {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.incident-ledger__row strong,
.incident-ledger__row small {
  display: block;
}

.incident-ledger__row strong {
  color: #f4f7fa;
  font-size: 13px;
}

.incident-ledger__row small {
  margin-top: 3px;
  color: #7f8fa2;
  font-size: 10px;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tool-context > p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 11px;
}

.tool-list span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 70px 0;
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.section--violet {
  background: var(--violet-soft);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}

.section-header--single {
  grid-template-columns: minmax(0, 760px);
}

.section-header h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.03;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section--dark .section-header p {
  color: #a8b6c7;
}

.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section--dark .section-label {
  color: var(--teal);
}

.outcome-list {
  border-top: 1px solid var(--line);
}

.outcome-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 26px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-row__number {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
}

.outcome-row h3 {
  margin: 0;
  font-size: 20px;
}

.outcome-row p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.timeline__item {
  min-height: 230px;
  padding: 26px 24px;
  border-left: 1px solid var(--line-dark);
}

.timeline__item:first-child {
  border-left: 0;
}

.timeline__item time {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 750;
}

.timeline__item h3 {
  margin: 56px 0 10px;
  font-size: 20px;
}

.timeline__item p {
  margin: 0;
  color: #aab7c6;
  font-size: 14px;
}

.product-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.product-split__item {
  min-height: 430px;
  padding: 42px;
}

.product-split__item + .product-split__item {
  border-left: 1px solid var(--line);
}

.product-split__item--dark {
  background: var(--navy-900);
  color: var(--white);
}

.product-split h3 {
  max-width: 430px;
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.08;
}

.product-split p {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
}

.product-split__item--dark p {
  color: #aab7c6;
}

.product-split__item--dark .section-label {
  color: var(--teal);
}

.product-split ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.product-split li,
.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-split__item--dark li {
  color: #c2ccd8;
}

.product-split li::before,
.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--teal-dark);
  border-radius: 3px;
  color: var(--teal-dark);
  content: "";
}

.proof-strip {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip > * {
  min-height: 136px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.proof-strip > *:first-child {
  border-left: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-strip span,
.proof-strip p {
  color: var(--muted);
  font-size: 13px;
}

.proof-strip--dark {
  border-color: var(--line-dark);
}

.proof-strip--dark > * {
  border-color: var(--line-dark);
}

.proof-strip--dark span,
.proof-strip--dark p {
  color: #aab7c6;
}

.price-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.price-band h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.05;
}

.price-band > div > p {
  color: #aab7c6;
  font-size: 17px;
}

.price-table {
  border-top: 1px solid var(--line-dark);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.price-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.price-row span {
  color: #98a7b9;
  font-size: 13px;
}

.price-row b {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 18px;
}

.price-row--conditional {
  opacity: 0.78;
}

.page-hero {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 64px;
  align-items: center;
  min-height: 660px;
  padding: 68px 0 78px;
}

.page-hero--compact .page-hero__inner {
  grid-template-columns: minmax(0, 780px);
  min-height: 470px;
}

.page-hero__aside {
  min-width: 0;
}

.page-hero .section-label {
  color: var(--teal);
}

.operator-board {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.operator-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.operator-board__head .state--ok {
  color: #066a5e;
}

.operator-board__identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 190px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.operator-board__identity img {
  width: 118px;
  height: 148px;
  flex: 0 0 118px;
  border-radius: var(--radius-small);
  object-fit: cover;
  object-position: center 24%;
}

.operator-board__identity span {
  display: block;
  margin-bottom: 5px;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.operator-board__identity h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.operator-board__identity h2 a:hover,
.operator-board__profile-link:hover {
  color: var(--violet);
}

.operator-board__identity p {
  max-width: 300px;
  margin: 9px 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.operator-board__profile-link {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.operator-board__row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 82px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.operator-board__row:first-of-type {
  border-top: 0;
}

.operator-board__row span {
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.operator-board__row strong {
  font-size: 13px;
  line-height: 1.48;
}

.scope-board,
.policy-board,
.grant-board {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.scope-board__head,
.policy-board__head,
.grant-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.scope-board__row,
.grant-board__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 12px 17px;
  border-top: 1px solid var(--line);
}

.scope-board__row:first-of-type,
.grant-board__row:first-of-type {
  border-top: 0;
}

.scope-board__row time,
.grant-board__row time {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
}

.scope-board__row strong,
.grant-board__row strong {
  font-size: 13px;
}

.scope-board__row span,
.grant-board__row span {
  color: var(--muted);
  font-size: 11px;
}

.state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.state--ok {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.state--warning {
  background: var(--amber-soft);
  color: #9a5203;
}

.state--violet {
  background: var(--violet-soft);
  color: var(--violet-dark);
}

.state--critical {
  background: var(--red-soft);
  color: #b42318;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 58px 0 18px;
  font-size: 34px;
  line-height: 1.12;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 21px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose a {
  color: var(--violet-dark);
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-nav {
  position: sticky;
  top: 98px;
  border-left: 2px solid var(--line);
  padding-left: 22px;
}

.side-nav h2 {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.side-nav a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.side-nav a:hover {
  color: var(--violet);
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13px;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table thead th {
  border-top: 0;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.data-table td {
  color: var(--ink-soft);
}

.note-box {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--violet-soft);
}

.note-box--warning {
  border-left-color: var(--amber);
  background: var(--amber-soft);
}

.note-box strong {
  display: block;
  margin-bottom: 5px;
}

.note-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.demo-shell {
  min-height: calc(100svh - 74px);
  background: var(--paper);
}

.demo-app {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: calc(100svh - 74px);
}

.demo-sidebar {
  padding: 24px 16px;
  border-right: 1px solid var(--line-dark);
  background: var(--navy-900);
  color: var(--white);
}

.demo-sidebar__section {
  margin-top: 28px;
}

.demo-sidebar__label {
  display: block;
  margin: 0 9px 9px;
  color: #7f91a7;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-nav {
  display: grid;
  gap: 4px;
}

.demo-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: #aebac8;
  font-size: 12px;
  font-weight: 680;
  text-align: left;
}

.demo-nav button:hover,
.demo-nav button[aria-selected="true"] {
  background: rgba(15, 206, 171, 0.1);
  color: var(--white);
}

.demo-nav button[aria-selected="true"]::before {
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.demo-main {
  min-width: 0;
  padding: 30px;
}

.demo-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.demo-topbar h1 {
  margin: 0 0 6px;
  font-size: 28px;
}

.demo-topbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.demo-mode {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.demo-mode button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.demo-mode button[aria-selected="true"] {
  background: var(--navy-900);
  color: var(--white);
}

.demo-panel[hidden],
.demo-view[hidden] {
  display: none;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 10px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 16px;
}

.app-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.app-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.app-panel__head h2,
.app-panel__head h3 {
  margin: 0;
  font-size: 14px;
}

.app-panel__body {
  padding: 17px;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.app-table th,
.app-table td {
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.app-table thead th {
  border-top: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.table-action {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.table-action:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.activity-list {
  display: grid;
}

.activity-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.activity-item:first-child {
  border-top: 0;
}

.activity-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.activity-dot--violet {
  background: var(--violet);
}

.activity-dot--amber {
  background: var(--amber);
}

.activity-item strong {
  display: block;
  font-size: 12px;
}

.activity-item span {
  color: var(--muted);
  font-size: 10px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.policy-form,
.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #b8c2cf;
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field small {
  color: var(--muted);
  font-size: 11px;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.simulator-result {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
}

.simulator-result h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.simulator-result p {
  color: #aab7c6;
  font-size: 13px;
}

.simulator-result__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.simulator-result__facts div {
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
}

.simulator-result__facts span {
  display: block;
  color: #8595a8;
  font-size: 9px;
  text-transform: uppercase;
}

.simulator-result__facts strong {
  font-family: var(--font-mono);
  font-size: 12px;
}

.form-page {
  background: var(--paper);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 72px;
  align-items: start;
  padding: 72px 0 96px;
}

.form-intro h1 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.03;
}

.form-intro > p {
  color: var(--muted);
  font-size: 17px;
}

.form-expectations {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.form-expectations div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.form-expectations span {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.form-expectations strong {
  font-size: 13px;
}

.support-contact-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.support-contact-list div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.support-contact-list span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.support-contact-list a,
.support-contact-list strong {
  color: var(--ink);
  font-size: 14px;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.form-card__intro {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--violet);
}

.form-consent a:link,
.form-consent a:visited {
  color: #4c1d95;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #f0b9b9;
  border-radius: var(--radius-small);
  background: var(--red-soft);
  color: #8f1d1d;
  font-size: 13px;
}

.success-panel {
  padding: 34px;
  border: 1px solid rgba(15, 206, 171, 0.38);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.success-panel__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: var(--radius-small);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 23px;
  font-weight: 800;
}

.closing-cta {
  background: var(--navy-900);
  color: var(--white);
}

.closing-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 230px;
}

.closing-cta h2 {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.08;
}

.closing-cta p {
  margin: 0;
  color: #a9b6c6;
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--navy-950);
  color: #bcc7d4;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 52px;
}

.site-footer__brand p {
  max-width: 350px;
  margin: 18px 0 0;
  color: #8594a7;
  font-size: 13px;
}

.site-footer h2 {
  margin: 4px 0 16px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) a {
  display: block;
  margin: 10px 0;
  color: #8f9eb0;
  font-size: 12px;
}

.site-footer__grid > div:not(:first-child) a:hover {
  color: var(--teal);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: #6f8094;
  font-size: 10px;
}

.document-page {
  padding: 64px 0 90px;
}

.document-sheet {
  max-width: 900px;
  margin-inline: auto;
  padding: 64px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.document-sheet__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--navy-900);
}

.document-sheet__header h1 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.05;
}

.document-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: right;
}

.document-sheet h2 {
  margin: 42px 0 15px;
  font-size: 24px;
}

.document-sheet h3 {
  margin: 27px 0 10px;
  font-size: 17px;
}

.document-sheet p,
.document-sheet li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.68;
}

.document-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.admin-page {
  min-height: calc(100svh - 74px);
  padding: 48px 0 80px;
  background: var(--paper);
}

.admin-login {
  max-width: 440px;
  margin: 60px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.admin-login h1 {
  margin-bottom: 8px;
  font-size: 28px;
}

.admin-login p {
  color: var(--muted);
  font-size: 13px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.admin-toolbar h1 {
  margin: 0;
  font-size: 30px;
}

.admin-lead {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.admin-lead:first-child {
  border-top: 0;
}

.admin-lead__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-lead__head h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.admin-lead__head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.admin-lead__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.admin-lead__facts div {
  padding: 10px;
  background: var(--paper);
}

.admin-lead__facts span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.admin-lead__facts strong {
  font-size: 11px;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 15px;
  }

  .hero__inner,
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
  }

  .hero__inner {
    padding-top: 72px;
  }

  .product-window {
    width: 100%;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .timeline__item:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .demo-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .form-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--navy-950);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button) {
    min-height: 48px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-dark);
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .readiness-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .readiness-score {
    grid-row: span 1;
  }

  .trust-band__inner,
  .operator-band__inner,
  .price-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0;
  }

  .operator-band__inner {
    min-height: auto;
    padding: 58px 0;
  }

  .incident-proof__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .outcome-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .outcome-row p {
    grid-column: 2;
  }

  .product-split {
    grid-template-columns: 1fr;
  }

  .product-split__item + .product-split__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > *:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip > *:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-nav {
    position: static;
    order: -1;
  }

  .demo-app {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    position: sticky;
    top: 74px;
    z-index: 20;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .demo-sidebar__section {
    margin: 0;
  }

  .demo-sidebar__label {
    display: none;
  }

  .demo-nav {
    display: flex;
    overflow-x: auto;
  }

  .demo-nav button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell,
  .site-header__inner,
  .hero__inner {
    width: min(100% - 28px, var(--shell));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .primary-nav {
    top: 68px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand__wordmark {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding: 54px 0 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1.01;
  }

  .hero__copy > p,
  .page-hero__copy > p {
    font-size: 16px;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .product-window__body {
    padding: 11px;
  }

  .readiness-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-cell,
  .readiness-score {
    min-height: 92px;
  }

  .metric-cell strong {
    font-size: 20px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .incident-proof__inner {
    min-height: auto;
    padding: 58px 0;
  }

  .incident-proof__copy h2 {
    font-size: 36px;
  }

  .incident-ledger__row {
    grid-template-columns: 38px 9px minmax(0, 1fr);
    gap: 10px;
    padding-inline: 12px;
  }

  .section--tight {
    padding: 54px 0;
  }

  .section-header h2,
  .operator-band__copy h2,
  .price-band h2 {
    font-size: 36px;
  }

  .operator-band__facts > div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .operator-board__identity {
    align-items: flex-start;
    padding: 18px;
  }

  .operator-board__identity img {
    width: 86px;
    height: 108px;
    flex-basis: 86px;
  }

  .operator-board__identity h2 {
    font-size: 22px;
  }

  .operator-board__identity p {
    font-size: 11px;
  }

  .outcome-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    min-height: 180px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .timeline__item:first-child {
    border-top: 0;
  }

  .timeline__item h3 {
    margin-top: 34px;
  }

  .product-split__item {
    min-height: auto;
    padding: 28px 22px;
  }

  .product-split h3 {
    font-size: 29px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > * {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip > *:first-child {
    border-top: 0;
  }

  .page-hero__inner {
    min-height: auto;
    padding: 56px 0;
  }

  .scope-board__row,
  .grant-board__row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .scope-board__row > span:last-child,
  .grant-board__row > span:last-child {
    grid-column: 2;
  }

  .content-grid {
    gap: 34px;
  }

  .prose h2 {
    font-size: 29px;
  }

  .demo-main {
    padding: 22px 14px 48px;
  }

  .demo-topbar {
    display: grid;
  }

  .demo-mode {
    width: 100%;
  }

  .demo-mode button {
    flex: 1;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card {
    min-height: 110px;
    padding: 14px;
  }

  .app-panel {
    overflow-x: auto;
  }

  .app-table {
    min-width: 620px;
  }

  .policy-layout {
    display: block;
  }

  .policy-layout > * + * {
    margin-top: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .form-shell {
    padding: 50px 0 68px;
  }

  .form-intro h1 {
    font-size: 40px;
  }

  .form-card {
    padding: 22px 18px;
  }

  .closing-cta__inner {
    display: grid;
    min-height: auto;
    padding: 58px 0;
  }

  .closing-cta h2 {
    font-size: 30px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .site-footer__legal {
    display: grid;
  }

  .document-page {
    padding: 24px 0 54px;
  }

  .document-sheet {
    padding: 34px 22px;
  }

  .document-sheet__header {
    grid-template-columns: 1fr;
  }

  .document-meta {
    text-align: left;
  }

  .document-actions {
    display: grid;
  }

  .admin-summary,
  .admin-lead__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  .site-header,
  .site-footer,
  .closing-cta,
  .document-actions {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .document-page {
    padding: 0;
  }

  .document-sheet {
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .document-sheet h2,
  .document-sheet h3 {
    break-after: avoid;
  }

  .data-table-wrap,
  .note-box {
    break-inside: avoid;
  }
}

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