:root {
  /* Arsenal editorial system: civic neutrals with a single signal blue. */
  --bg-0: #f4f4f0;
  --bg-1: #fbfbf8;
  --bg-2: #e9edf1;
  --bg-3: #dfe5eb;
  --text-strong: #07111f;
  --text-body: #263342;
  --text-dim: #607080;
  --hairline: #d5dce2;
  --hairline-strong: #aeb9c4;
  --accent: #075cff;
  --accent-strong: #0045c7;
  --accent-ink: #ffffff;
  --accent-dim: rgba(0, 82, 255, 0.1);

  /* Legacy semantic tokens (referenced by inline markup): light meanings */
  --ink: #24292f;
  --muted: #5b6672;
  --navy: #0a1f4d;
  --navy-2: #081838;
  --blue: #0052ff;
  --blue-dark: #0041cc;
  --blue-pale: #e8f0ff;
  --teal: #0052ff;
  --teal-pale: #e8f0ff;
  --gold: #c9982e;
  --gold-pale: #faf3df;
  --red: #b42318;
  --red-pale: #fbeeec;
  --green: #24784f;
  --green-pale: #e9f4ee;
  --paper: #ffffff;
  --warm: #f7f9fc;
  --canvas: #f0f4fa;
  --line: #e1e7f0;
  --line-dark: #c6d2e3;
  --shadow: 0 24px 70px rgba(13, 35, 84, 0.13);
  --shadow-sm: 0 6px 24px rgba(13, 35, 84, 0.08);
  --radius: 0px;
  --radius-lg: 0px;
  --font: "Segoe UI Variable Text", Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
  --brand-display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "Cascadia Mono", ui-monospace, "SF Mono", Consolas, Menlo, monospace;
  --space-section: clamp(4.75rem, 8vw, 8.75rem);
  --transition-fast: 160ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Light "paper" scopes: dialogs and printable documents */
.modal, .document-editor {
  --bg-0: #f4f7fc;
  --bg-1: #f9fbfe;
  --bg-2: #ffffff;
  --bg-3: #eaf0f8;
  --text-strong: #0a0b0c;
  --text-body: #24292f;
  --text-dim: #5b6672;
  --hairline: #e1e7f0;
  --hairline-strong: #c6d2e3;
  --accent: #0052ff;
  --accent-strong: #0041cc;
  --accent-ink: #ffffff;
  --accent-dim: rgba(0, 82, 255, 0.12);

  --ink: #24292f;
  --muted: #5b6672;
  --navy: #0a1f4d;
  --navy-2: #081838;
  --blue: #0052ff;
  --blue-dark: #0041cc;
  --blue-pale: #e8f0ff;
  --teal: #0052ff;
  --teal-pale: #e8f0ff;
  --gold: #c9982e;
  --gold-pale: #faf3df;
  --red: #b42318;
  --red-pale: #fbeeec;
  --green: #24784f;
  --green-pale: #e9f4ee;
  --paper: #ffffff;
  --warm: #f9fbfe;
  --canvas: #f4f7fc;
  --line: #e1e7f0;
  --line-dark: #c6d2e3;
  --shadow: 0 18px 50px rgba(12, 14, 15, 0.14);
  --shadow-sm: 0 3px 14px rgba(12, 14, 15, 0.07);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: clip; color: var(--text-body); background: var(--bg-0); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { color: var(--accent-ink); background: var(--accent); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 14px; color: var(--accent-ink); background: var(--accent); font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }.modal :focus-visible { outline-color: #101315; }

.site-container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

/* ── Top strip ─────────────────────────────────────────────── */
.official-bar { color: var(--text-dim); background: var(--bg-0); border-bottom: 1px solid var(--hairline); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; }
.official-inner { min-height: 36px; display: flex; align-items: center; gap: 10px; }
.flag-mark { width: 7px; height: 7px; display: inline-block; flex: 0 0 auto; color: var(--accent); background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(7, 92, 255, 0.08); font-size: 9px; }
.official-help { margin-left: auto; color: var(--text-dim); }
.plain-link { border: 0; padding: 0; color: var(--text-strong); background: transparent; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }.modal .plain-link { color: #101315; }
.official-bar .plain-link { color: var(--text-dim); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; }
.official-bar .plain-link:hover { color: var(--text-strong); }

/* ── Header ────────────────────────────────────────────────── */
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(10, 11, 12, 0.86); backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1); border-bottom: 1px solid var(--hairline); }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; background: transparent; text-align: left; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; color: var(--accent); background: transparent; border: 1px solid var(--hairline-strong); }
.brand-mark svg { width: 22px; fill: currentColor; }
.brand-mark-small { width: 26px; height: 26px; font-size: 10px; }.brand-copy { display: grid; }.brand-copy strong { color: var(--text-strong); font-size: 15px; line-height: 1.1; font-weight: 650; text-transform: uppercase; letter-spacing: 0.24em; }
.brand-display, [data-brand] { font-family: var(--brand-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; white-space: nowrap; }
.brand-display-inline { font-size: 0.88em; letter-spacing: 0.1em; }.brand-copy small { margin-top: 4px; color: var(--text-dim); font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.16em; }
.primary-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.primary-nav button { min-height: 42px; padding: 8px 12px; border: 0; color: var(--text-dim); background: transparent; border-bottom: 1px solid transparent; font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; transition: color 0.15s ease; }
.primary-nav button:hover { color: var(--text-strong); }
.primary-nav button.active { color: var(--text-strong); border-color: var(--accent); }
.header-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border: 1px solid var(--hairline-strong); border-radius: 0; color: var(--text-strong); background: transparent; font-family: var(--mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.button:hover { border-color: var(--text-strong); background: rgba(255, 255, 255, 0.04); }
.button-primary { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.button-dark { color: var(--bg-0); background: var(--text-strong); border-color: var(--text-strong); }
.button-secondary { color: var(--text-strong); background: transparent; border-color: var(--hairline-strong); }
.button-quiet { border-color: transparent; background: transparent; color: var(--text-dim); }
.button-quiet:hover { color: var(--text-strong); background: transparent; border-color: transparent; }
.button-small { min-height: 34px; padding: 6px 12px; font-size: 10.5px; }
.button-danger { color: var(--red); border-color: var(--red); background: var(--red-pale); }
.button:disabled { opacity: 0.4; cursor: not-allowed; }
.text-link { border: 0; padding: 0; color: var(--accent); background: transparent; font-family: var(--mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }.modal .button { color: #101315; background: #fff; border-color: var(--hairline-strong); }.modal .button:hover { border-color: #101315; background: #fff; }.modal .button-primary { color: #ffffff; background: #0052ff; border-color: #0052ff; }.modal .button-primary:hover { background: #0041cc; border-color: #0041cc; }.modal .button-quiet { border-color: transparent; background: transparent; color: var(--text-dim); }.modal .button-danger { color: #b42318; border-color: #dfa49d; background: #fbeeec; }.modal .text-link { color: #101315; text-decoration: underline; text-underline-offset: 3px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; color: var(--text-strong); background-color: var(--bg-0); border-bottom: 1px solid var(--hairline); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: linear-gradient(var(--hairline) 1px, transparent 1px), linear-gradient(90deg, var(--hairline) 1px, transparent 1px); background-size: 90px 90px; mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, #000 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, #000 0%, transparent 70%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent); opacity: 0.5; }
.hero-grid { position: relative; min-height: 680px; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 70px; padding-block: 90px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--accent); font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }.modal .eyebrow { color: #6b7276; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(46px, 6.2vw, 82px); font-weight: 620; line-height: 0.98; letter-spacing: -0.035em; text-wrap: balance; }
.hero h1 em { color: var(--accent); font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.hero-lead { max-width: 620px; margin: 28px 0 34px; color: var(--text-dim); font-size: 19px; line-height: 1.6; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button-secondary { color: var(--text-strong); background: transparent; border-color: var(--hairline-strong); }
.hero .button-secondary:hover { border-color: var(--text-strong); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; color: var(--text-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 16px; height: 16px; display: grid; place-items: center; color: var(--accent); border: 1px solid var(--hairline-strong); font-size: 9px; font-style: normal; }

/* ── Hero product mock ─────────────────────────────────────── */
.product-window { position: relative; padding: 10px; background: var(--bg-1); border: 1px solid var(--hairline); box-shadow: var(--shadow); }
.window-top { height: 30px; display: flex; align-items: center; gap: 5px; padding: 0 6px; }
.window-top i { width: 7px; height: 7px; background: var(--hairline-strong); border-radius: 50%; }
.window-top span { margin-left: auto; color: var(--text-dim); font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.window-body { overflow: hidden; display: grid; grid-template-columns: 110px 1fr; min-height: 420px; color: var(--text-body); background: var(--bg-2); border: 1px solid var(--hairline); }
.mock-side { padding: 20px 12px; color: var(--text-dim); background: var(--bg-0); border-right: 1px solid var(--hairline); }
.mock-logo { display: flex; align-items: center; gap: 6px; margin-bottom: 28px; color: var(--text-strong); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.mock-logo i { width: 15px; height: 15px; display: block; background: var(--accent); }
.mock-nav { height: 7px; margin: 13px 0; background: var(--bg-3); }
.mock-nav.on { background: var(--accent); }
.mock-main { padding: 22px; background: var(--bg-2); }
.mock-kicker { color: var(--text-dim); font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.14em; }
.mock-heading { width: 70%; height: 14px; margin: 8px 0 18px; background: var(--hairline-strong); }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mock-stat { padding: 10px; background: var(--bg-3); border: 1px solid var(--hairline); }
.mock-stat b { display: block; color: var(--text-strong); font-family: var(--mono); font-size: 19px; line-height: 1; }
.mock-stat small { color: var(--text-dim); font-family: var(--mono); font-size: 7px; letter-spacing: 0.06em; }
.mock-panel { margin-top: 9px; padding: 13px; background: var(--bg-3); border: 1px solid var(--hairline); }
.mock-panel-head { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--text-dim); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.mock-progress { display: grid; gap: 9px; }
.mock-row { display: grid; grid-template-columns: 1fr 1.5fr 28px; align-items: center; gap: 7px; color: var(--text-dim); font-family: var(--mono); font-size: 7px; }
.mock-track { height: 5px; overflow: hidden; background: var(--hairline); }
.mock-track i { display: block; height: 100%; background: var(--accent); }
.mock-draft { position: absolute; right: -25px; bottom: -28px; width: 230px; padding: 15px; color: var(--text-body); background: var(--bg-2); border: 1px solid var(--hairline); border-left: 2px solid var(--accent); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.mock-draft small { display: block; color: var(--accent); font-family: var(--mono); font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.mock-draft strong { display: block; margin: 5px 0 7px; color: var(--text-strong); font-size: 12px; }
.mock-draft p { margin: 0; color: var(--text-dim); font-size: 8px; }

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip { border-bottom: 1px solid var(--hairline); background: var(--bg-1); }
.trust-inner { min-height: 96px; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); align-items: center; gap: 28px; }
.trust-intro strong { display: block; color: var(--text-strong); font-weight: 600; }
.trust-intro span { color: var(--text-dim); font-size: 13px; }
.trust-item { padding-left: 16px; border-left: 1px solid var(--hairline-strong); }
.trust-item strong { display: block; color: var(--text-strong); font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em; }
.trust-item span { color: var(--text-dim); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding-block: 100px; }
.section-tight { padding-block: 64px; }
.section-warm { background: var(--bg-1); border-block: 1px solid var(--hairline); }
.section-navy { color: var(--text-strong); background: var(--bg-0); border-block: 1px solid var(--hairline); }
.section-blue { background: var(--bg-1); border-block: 1px solid var(--hairline); }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2, .page-hero h1 { margin: 0; color: var(--text-strong); font-size: clamp(32px, 4vw, 50px); font-weight: 620; line-height: 1.06; letter-spacing: -0.025em; text-wrap: balance; }
.section-head p { margin: 16px 0 0; color: var(--text-dim); font-size: 17px; }
.section-navy .section-head h2 { color: var(--text-strong); }
.section-navy .section-head p { color: var(--text-dim); }

/* ── Pillars ───────────────────────────────────────────────── */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.pillar-card { position: relative; overflow: hidden; min-height: 350px; display: flex; flex-direction: column; padding: 32px; background: var(--bg-1); border: 0; border-radius: 0; transition: background 0.2s ease; }
.pillar-card:hover { background: var(--bg-2); }
.pillar-card::before { content: attr(data-number); position: absolute; top: 26px; right: 28px; color: var(--text-dim); font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; }
.pillar-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--accent); background: transparent; border: 1px solid var(--hairline-strong); font-size: 19px; font-weight: 600; }
.pillar-card h3 { position: relative; margin: 30px 0 12px; color: var(--text-strong); font-size: 23px; font-weight: 620; letter-spacing: -0.015em; }
.pillar-card p { position: relative; margin: 0 0 20px; color: var(--text-dim); font-size: 15px; }
.pillar-card ul { position: relative; display: grid; gap: 9px; margin: auto 0 24px; padding: 0; list-style: none; color: var(--text-body); font-size: 13.5px; }
.pillar-card li::before { content: "+"; margin-right: 9px; color: var(--accent); font-family: var(--mono); font-weight: 600; }
.pillar-card .text-link { align-self: flex-start; }

/* ── Department showcase ───────────────────────────────────── */
.department-showcase { display: grid; grid-template-columns: 270px 1fr; gap: 36px; }
.department-tabs { display: grid; align-content: start; gap: 8px; }
.department-tabs button { min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border: 1px solid var(--hairline-strong); border-radius: 0; color: var(--text-dim); background: transparent; text-align: left; font-family: var(--mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.15s ease, border-color 0.15s ease; }
.department-tabs button:hover { color: var(--text-strong); border-color: var(--text-dim); }
.department-tabs button[aria-selected="true"] { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.department-panel { padding: 36px; color: var(--text-body); background: var(--bg-1); border: 1px solid var(--hairline); }
.department-panel h3 { margin: 0 0 10px; color: var(--text-strong); font-size: 26px; font-weight: 620; letter-spacing: -0.015em; }
.department-panel > p { margin: 0 0 26px; color: var(--text-dim); }
.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.workflow-item { min-height: 105px; padding: 18px; background: var(--bg-2); border: 1px solid var(--hairline); }
.workflow-item strong { display: block; color: var(--text-strong); font-weight: 600; }
.workflow-item span { display: block; margin-top: 5px; color: var(--text-dim); font-size: 13px; }

/* ── How it works ──────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.how-step { position: relative; padding: 30px 28px 30px 88px; background: var(--bg-1); border: 1px solid var(--hairline); counter-increment: steps; }
.how-step::before { content: "0" counter(steps); position: absolute; top: 28px; left: 28px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: transparent; border: 1px solid var(--accent); font-family: var(--mono); font-size: 13px; font-weight: 600; }
.how-step h3 { margin: 0 0 8px; color: var(--text-strong); font-weight: 620; }
.how-step p { margin: 0; color: var(--text-dim); font-size: 14px; }

/* ── Readiness band ────────────────────────────────────────── */
.readiness-band { display: grid; grid-template-columns: 0.85fr 1.15fr; overflow: hidden; background: var(--bg-1); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.score-visual { min-height: 390px; display: grid; place-items: center; padding: 40px; color: var(--text-strong); background: var(--bg-0); border-right: 1px solid var(--hairline); }
.score-ring { width: 220px; height: 220px; display: grid; place-items: center; border: 10px solid var(--hairline); border-top-color: var(--accent); border-right-color: var(--accent); border-radius: 50%; }
.score-ring span { text-align: center; }
.score-ring strong { display: block; font-family: var(--mono); font-size: 58px; font-weight: 600; line-height: 1; }
.score-ring small { color: var(--text-dim); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.readiness-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.readiness-copy h2 { margin: 0 0 16px; color: var(--text-strong); font-size: 38px; font-weight: 620; line-height: 1.08; letter-spacing: -0.02em; }
.readiness-copy p { margin: 0 0 24px; color: var(--text-dim); font-size: 16px; }
.check-list { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; }
.check-list li::before { content: "+"; margin-right: 10px; color: var(--accent); font-family: var(--mono); font-weight: 600; }.modal .check-list li::before { color: var(--teal); }

/* ── Comparison ────────────────────────────────────────────── */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-card { padding: 36px; background: var(--bg-1); border: 1px solid var(--hairline); }
.comparison-card.featured { color: var(--text-strong); background: var(--bg-1); border: 1px solid var(--accent); }
.comparison-card .eyebrow { margin-bottom: 14px; }
.comparison-card h3 { margin: 0 0 12px; color: var(--text-strong); font-size: 27px; font-weight: 620; letter-spacing: -0.015em; }
.comparison-card.featured h3 { color: var(--text-strong); }
.comparison-card p { color: var(--text-dim); }
.comparison-card.featured p { color: var(--text-dim); }

/* ── CTA band ──────────────────────────────────────────────── */
.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 56px; color: var(--text-strong); background: var(--bg-0); border: 1px solid var(--hairline); border-left: 2px solid var(--accent); }
.cta-band h2 { max-width: 760px; margin: 0; font-size: clamp(30px, 4vw, 46px); font-weight: 620; line-height: 1.08; letter-spacing: -0.025em; }
.cta-band p { margin: 14px 0 0; color: var(--text-dim); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── Page hero ─────────────────────────────────────────────── */
.page-hero { padding: 80px 0 64px; background: var(--bg-1); border-bottom: 1px solid var(--hairline); }
.page-hero-inner { max-width: 860px; }
.page-hero p { max-width: 730px; margin: 18px 0 0; color: var(--text-dim); font-size: 18px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.breadcrumb { margin-bottom: 18px; color: var(--text-dim); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Audience / solutions ──────────────────────────────────── */
.audience-grid { display: grid; gap: 22px; }
.audience-card { display: grid; grid-template-columns: 280px 1fr; gap: 44px; padding: 40px; background: var(--bg-1); border: 1px solid var(--hairline); }
.audience-card h2 { margin: 0; color: var(--text-strong); font-size: 29px; font-weight: 620; letter-spacing: -0.015em; }
.audience-card > div:first-child p { color: var(--text-dim); }
.use-case-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.use-case { padding: 18px; background: var(--bg-2); border: 1px solid var(--hairline); border-top: 2px solid var(--accent); }
.use-case strong { display: block; color: var(--text-strong); font-weight: 600; }
.use-case span { display: block; margin-top: 6px; color: var(--text-dim); font-size: 13px; }

/* ── Filters and fields ────────────────────────────────────── */
.filter-bar { display: grid; grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(160px, 220px)); gap: 10px; margin-bottom: 22px; }
.search-field, .field { display: grid; gap: 7px; }
.search-field { position: relative; }
.search-field > span { position: absolute; top: 13px; left: 14px; color: var(--text-dim); }
.search-field input { padding-left: 40px; }
.field label, .field > span { color: var(--text-body); font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
input, select, textarea { width: 100%; min-height: 46px; padding: 10px 14px; color: var(--text-strong); background: var(--bg-2); border: 1px solid var(--hairline-strong); border-radius: 0; }
input::placeholder, textarea::placeholder { color: var(--text-dim); }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 2px solid var(--accent-dim); }.modal input, .modal select, .modal textarea { color: #101315; background: #fff; }.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: #101315; outline: 2px solid rgba(16, 19, 21, 0.12); }
.field-help { color: var(--text-dim); font-family: var(--font); font-size: 12px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.field-error { color: var(--red); font-size: 12px; font-weight: 600; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { min-height: 34px; padding: 6px 14px; border: 1px solid var(--hairline-strong); border-radius: 0; color: var(--text-dim); background: transparent; font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; transition: color 0.15s ease, border-color 0.15s ease; }
.chip:hover { color: var(--text-strong); border-color: var(--text-dim); }
.chip.on, .chip[aria-pressed="true"] { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }.modal .chip.on { color: #ffffff; background: #0052ff; border-color: #0052ff; }
.result-count { margin: 0 0 16px; color: var(--text-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }

/* ── Resource cards ────────────────────────────────────────── */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-card { position: relative; min-height: 285px; display: flex; flex-direction: column; padding: 24px; background: var(--bg-1); border: 1px solid var(--hairline); border-radius: 0; text-align: left; transition: border-color 0.15s ease, background 0.15s ease; }
.resource-card:hover { border-color: var(--hairline-strong); background: var(--bg-2); box-shadow: none; }
.resource-card .resource-type { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.resource-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: transparent; border: 1px solid var(--hairline-strong); font-weight: 650; }.modal .resource-icon { color: #101315; }
.badge { display: inline-flex; align-items: center; min-height: 22px; padding: 3px 8px; border-radius: 0; color: var(--text-dim); background: var(--bg-3); font-family: var(--mono); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; }.modal .badge { color: #38414d; background: #eaf0f8; }
.badge-free { color: var(--green); background: var(--green-pale); }
.badge-risk { color: var(--gold); background: var(--gold-pale); }
.badge-draft { color: var(--accent); background: var(--accent-dim); }.modal .badge-free { color: #24784f; background: #e9f4ee; }.modal .badge-risk { color: #8a6410; background: #faf3df; }.modal .badge-draft { color: #2f6591; background: #eef3f7; }
.resource-card h3 { margin: 0 0 8px; color: var(--text-strong); font-size: 18px; font-weight: 620; line-height: 1.3; letter-spacing: -0.01em; }
.resource-card p { margin: 0 0 20px; color: var(--text-dim); font-size: 13.5px; }
.resource-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hairline); color: var(--text-dim); font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; }
.resource-arrow { position: absolute; right: 22px; bottom: 20px; color: var(--accent); font-family: var(--mono); font-weight: 600; }
.empty-state { grid-column: 1/-1; padding: 55px 30px; text-align: center; background: transparent; border: 1px dashed var(--hairline-strong); }
.empty-state h3 { margin: 0 0 7px; color: var(--text-strong); }
.empty-state p { margin: 0; color: var(--text-dim); }

/* ── Assessment ────────────────────────────────────────────── */
.assessment-shell { max-width: 920px; margin-inline: auto; }
.assessment-intro { display: grid; grid-template-columns: 1fr 270px; gap: 40px; padding: 44px; background: var(--bg-2); border: 1px solid var(--hairline); }
.assessment-intro h2 { margin: 0 0 14px; color: var(--text-strong); font-size: 34px; font-weight: 620; letter-spacing: -0.02em; }
.assessment-intro p { color: var(--text-dim); }
.dimension-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 24px 0; padding: 0; list-style: none; font-size: 13px; }
.dimension-list li::before { content: ": "; margin-right: 9px; color: var(--accent); font-family: var(--mono); }
.assessment-side { padding: 24px; background: var(--bg-3); border: 1px solid var(--hairline); }
.assessment-side strong { display: block; color: var(--text-strong); font-family: var(--mono); font-size: 28px; }
.assessment-side span { color: var(--text-dim); font-size: 13px; }
.assessment-side hr { margin: 18px 0; border: 0; border-top: 1px solid var(--hairline-strong); }
.assessment-progress { margin-bottom: 26px; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--text-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }
.progress-track { height: 6px; overflow: hidden; background: var(--bg-3); }.modal .progress-track { background: #e1e7f0; }
.progress-track > span { display: block; height: 100%; background: var(--accent); transition: width 0.2s ease; }.modal .progress-track > span { background: #101315; }
.question-card { padding: 44px; background: var(--bg-2); border: 1px solid var(--hairline); }
.question-dimension { color: var(--accent); font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.question-card h2 { margin: 14px 0 26px; color: var(--text-strong); font-size: 27px; font-weight: 620; line-height: 1.25; letter-spacing: -0.015em; }
.answer-list { display: grid; gap: 9px; }
.answer-option { position: relative; display: flex; align-items: flex-start; gap: 13px; padding: 16px; border: 1px solid var(--hairline-strong); cursor: pointer; transition: background 0.12s ease, border-color 0.12s ease; }
.answer-option:hover { border-color: var(--text-dim); background: var(--bg-3); }
.answer-option:has(input:checked) { border-color: var(--accent); background: var(--accent-dim); box-shadow: none; }
.answer-option input { width: 19px; min-height: 19px; margin-top: 1px; accent-color: var(--accent); }
.answer-option strong { display: block; color: var(--text-strong); font-weight: 600; }
.answer-option span span { display: block; margin-top: 2px; color: var(--text-dim); font-size: 13px; }
.question-actions { display: flex; justify-content: space-between; margin-top: 26px; }

/* ── Results ───────────────────────────────────────────────── */
.score-hero { display: grid; grid-template-columns: 230px 1fr; gap: 36px; align-items: center; padding: 42px; color: var(--text-strong); background: var(--bg-0); border: 1px solid var(--hairline); }
.score-number { width: 180px; height: 180px; display: grid; place-items: center; margin: auto; border: 9px solid rgba(255, 255, 255, 0.12); border-top-color: var(--accent); border-right-color: var(--accent); border-radius: 50%; text-align: center; }
.score-number strong { display: block; font-family: var(--mono); font-size: 52px; font-weight: 600; line-height: 1; }
.score-number small { color: rgba(255, 255, 255, 0.55); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.score-hero h2 { margin: 0 0 8px; font-size: 33px; font-weight: 620; letter-spacing: -0.02em; }
.score-hero p { margin: 0; color: rgba(255, 255, 255, 0.6); }
.dimension-scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0 28px; }
.dimension-score { padding: 18px; background: var(--bg-2); border: 1px solid var(--hairline); }
.dimension-score-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 10px; color: var(--text-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.dimension-score-head strong { color: var(--text-strong); }
.dimension-score .progress-track { height: 5px; }
.recommendations { display: grid; gap: 10px; }
.recommendation { display: grid; grid-template-columns: 43px 1fr; gap: 16px; padding: 18px; background: var(--bg-2); border: 1px solid var(--hairline); }
.recommendation > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--accent); background: transparent; border: 1px solid var(--accent); font-family: var(--mono); font-weight: 600; }
.recommendation h3 { margin: 0 0 4px; color: var(--text-strong); font-size: 16px; font-weight: 620; }
.recommendation p { margin: 0; color: var(--text-dim); font-size: 13px; }
.report-gate { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; margin-top: 20px; padding: 26px; background: var(--gold-pale); border: 1px solid var(--gold); }
.report-gate h3 { margin: 0 0 4px; color: var(--text-strong); font-weight: 620; }
.report-gate p { margin: 0; color: var(--text-dim); font-size: 13px; }
.report-gate .field { min-width: 300px; }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card { position: relative; padding: 32px; background: var(--bg-1); border: 1px solid var(--hairline); }
.price-card.popular { border: 1px solid var(--accent); box-shadow: none; }
.popular-label { position: absolute; top: -12px; left: 24px; padding: 4px 10px; color: var(--accent-ink); background: var(--accent); font-family: var(--mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.price-card h2 { margin: 0; color: var(--text-strong); font-size: 21px; font-weight: 620; }
.price-card > p { min-height: 68px; color: var(--text-dim); font-size: 14px; }
.price { margin: 22px 0 5px; color: var(--text-strong); }
.price strong { font-family: var(--mono); font-size: 38px; font-weight: 600; letter-spacing: -0.03em; }
.price span { color: var(--text-dim); font-size: 13px; }
.billing-note { display: block; min-height: 39px; color: var(--text-dim); font-size: 12px; }
.price-card .button { width: 100%; margin: 20px 0; }
.feature-list { display: grid; gap: 11px; padding: 22px 0 0; border-top: 1px solid var(--hairline); list-style: none; font-size: 13px; }
.feature-list li::before { content: "+"; margin-right: 9px; color: var(--accent); font-family: var(--mono); font-weight: 600; }
.procurement-note { margin-top: 24px; padding: 18px; color: var(--gold); background: var(--gold-pale); border: 1px solid var(--gold); border-left: 2px solid var(--gold); font-size: 13px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { padding: 26px; background: var(--bg-1); border: 1px solid var(--hairline); }
.service-card strong { display: block; color: var(--text-strong); font-size: 17px; font-weight: 620; }
.service-card .service-price { display: block; margin: 8px 0 11px; color: var(--accent); font-family: var(--mono); font-size: 14px; font-weight: 600; }
.service-card p { margin: 0; color: var(--text-dim); font-size: 13px; }

/* ── Trust and security ────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-card { padding: 26px; background: var(--bg-2); border: 1px solid var(--hairline); }
.trust-card .trust-icon { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 18px; color: var(--accent); background: transparent; border: 1px solid var(--hairline-strong); font-family: var(--mono); font-weight: 600; }
.trust-card h3 { margin: 0 0 8px; color: var(--text-strong); font-weight: 620; }
.trust-card p { margin: 0; color: var(--text-dim); font-size: 13px; }
.roadmap-table { width: 100%; border-collapse: collapse; background: var(--bg-1); border: 1px solid var(--hairline); }
.roadmap-table th, .roadmap-table td { padding: 16px; border-bottom: 1px solid var(--hairline); text-align: left; vertical-align: top; }
.roadmap-table th { color: var(--text-dim); background: var(--bg-2); font-family: var(--mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.status-pill { display: inline-flex; padding: 4px 8px; color: var(--green); background: var(--green-pale); font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.status-planned { color: var(--gold); background: var(--gold-pale); }
.demo-honesty { margin-top: 22px; padding: 20px; color: var(--text-dim); background: var(--bg-2); border: 1px solid var(--hairline); font-size: 13px; }
.demo-honesty strong { color: var(--text-strong); }
.modal .demo-honesty { color: #38414d; background: #f4f7fc; border-color: #e1e7f0; }
.modal .demo-honesty strong { color: #101315; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.contact-copy h2 { margin: 0 0 14px; color: var(--text-strong); font-size: 34px; font-weight: 620; letter-spacing: -0.02em; }
.contact-copy > p { color: var(--text-dim); }
.contact-points { display: grid; gap: 16px; margin-top: 30px; }
.contact-point { display: grid; grid-template-columns: 38px 1fr; gap: 14px; }
.contact-point > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: transparent; border: 1px solid var(--hairline-strong); font-family: var(--mono); font-weight: 600; }
.contact-point strong { display: block; color: var(--text-strong); font-weight: 600; }
.contact-point small { color: var(--text-dim); }
.form-card { padding: 36px; background: var(--bg-1); border: 1px solid var(--hairline); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field-full { grid-column: 1/-1; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.privacy-note { color: var(--text-dim); font-size: 11px; }
.success-panel { padding: 38px; text-align: center; background: var(--green-pale); border: 1px solid var(--green); }
.success-panel > span { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 16px; color: var(--green); background: transparent; border: 1px solid var(--green); border-radius: 50%; font-size: 22px; font-weight: 700; }
.success-panel h3 { margin: 0 0 7px; color: var(--text-strong); font-size: 23px; font-weight: 620; }
.success-panel p { margin: 0; color: var(--text-dim); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { padding-top: 70px; color: var(--text-dim); background: var(--bg-0); border-top: 1px solid var(--hairline); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 11px; color: var(--text-strong); font-size: 16px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.22em; }
.footer-brand .brand-mark-small { color: var(--accent); }
.footer-grid p { max-width: 360px; color: var(--text-dim); font-size: 14px; }
.footer-grid .footer-note { font-size: 11px; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; }
.footer-grid > div > strong { margin-bottom: 6px; color: var(--text-dim); font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.footer-grid button { width: fit-content; padding: 0; border: 0; color: var(--text-body); background: transparent; text-align: left; font-size: 13px; }
.footer-grid button:hover { color: var(--text-strong); text-decoration: underline; text-underline-offset: 3px; }
.status-line { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--text-dim); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.status-line i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.footer-bottom { min-height: 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--hairline); color: var(--text-dim); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; }
.org-switcher { min-height: 62px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 0; color: #ffffff; background: rgba(255, 255, 255, 0.12); text-align: left; }
.org-switcher:hover { border-color: rgba(255, 255, 255, 0.55); }
.org-avatar, .user-avatar { width: 32px; height: 32px; display: grid; place-items: center; color: #0052ff; background: #ffffff; border-radius: 0; font-family: var(--mono); font-size: 10px; font-weight: 700; }
.org-switcher strong, .user-card strong { display: block; font-size: 12px; }
.org-switcher small, .user-card small { display: block; color: rgba(255, 255, 255, 0.78); font-size: 9px; }
.user-card { min-height: 58px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 10px; margin-top: 10px; padding: 10px 7px 2px; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.3); color: #ffffff; background: transparent; text-align: left; }
.user-avatar { color: #0052ff; background: #ffffff; border-radius: 0; }
.app-page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.app-page-head h1 { margin: 0; color: var(--text-strong); font-size: 25px; font-weight: 650; line-height: 1.2; letter-spacing: -0.02em; }
.app-page-head p { margin: 6px 0 0; color: var(--text-dim); font-size: 13px; }
.app-page-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-notice { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 10px 14px; color: var(--text-dim); background: var(--bg-2); border: 1px solid var(--hairline); font-size: 11px; }
.demo-notice span { width: 18px; height: 18px; display: grid; place-items: center; flex: 0 0 18px; color: var(--accent-ink); background: var(--accent); font-family: var(--mono); font-weight: 700; }.modal .demo-notice span { color: #ffffff; background: #0052ff; }
.app-grid { display: grid; gap: 14px; }
.app-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.app-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.app-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dashboard-primary-grid { margin-top: 14px; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }
.dashboard-secondary-grid { margin-top: 14px; }
.app-card { padding: 20px; background: #fff; border: 1px solid var(--hairline); border-radius: 0; }
.metric-foot { display: block; margin-top: 8px; color: var(--text-dim); font-size: 10px; }
.metric-foot.up { color: var(--green); }
.ack-list { display: grid; gap: 15px; }
.ack-item { display: grid; grid-template-columns: 1fr 150px 55px; align-items: center; gap: 12px; }
.ack-item strong { display: block; color: var(--text-strong); font-size: 12px; font-weight: 600; }
.ack-item small { color: var(--text-dim); font-size: 10px; }
.ack-item .progress-track { height: 5px; }
.ack-item > span:last-child { color: var(--text-dim); text-align: right; font-family: var(--mono); font-size: 10px; }
.activity-list { display: grid; }
.activity-item { display: grid; grid-template-columns: 30px 1fr auto; gap: 11px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.activity-item:last-child { border-bottom: 0; }
.activity-icon { width: 28px; height: 28px; display: grid; place-items: center; color: var(--text-strong); background: transparent; border: 1px solid var(--hairline-strong); font-family: var(--mono); font-size: 10px; font-weight: 600; }
.activity-item strong { display: block; color: var(--text-strong); font-size: 11px; font-weight: 600; }
.activity-item p { margin: 2px 0 0; color: var(--text-dim); font-size: 10px; }
.activity-item time { color: var(--text-dim); font-family: var(--mono); font-size: 9px; }
.suggested-card { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 13px; border: 1px solid var(--hairline); }
.suggested-card + .suggested-card { margin-top: 8px; }
.suggested-card .resource-icon { width: 42px; height: 42px; }
.suggested-card strong { display: block; color: var(--text-strong); font-size: 11px; font-weight: 600; }
.suggested-card small { color: var(--text-dim); font-size: 9px; }

.app-resource-grid { grid-template-columns: repeat(3, 1fr); }
.app-resource-grid .resource-card { min-height: 230px; }
.app-resource-grid .resource-card h3 { font-size: 15px; }
.app-resource-grid .resource-card p { font-size: 11px; }
.app-resource-grid .resource-meta { font-size: 9px; }

.staff-summary { display: grid; grid-template-columns: 190px 1fr; gap: 28px; align-items: center; }
.readiness-summary-compact { grid-template-columns: 125px minmax(0, 1fr); gap: 15px; }
.staff-ring { width: 150px; height: 150px; display: grid; place-items: center; margin: auto; border: 9px solid var(--bg-3); border-top-color: #101315; border-right-color: #101315; border-bottom-color: #101315; border-radius: 50%; text-align: center; }
.staff-ring strong { display: block; color: var(--text-strong); font-family: var(--mono); font-size: 30px; font-weight: 600; line-height: 1; }
.staff-ring small { color: var(--text-dim); font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.summary-stat { padding: 14px; background: var(--canvas); border: 1px solid var(--hairline); }
.summary-stat strong { display: block; color: var(--text-strong); font-family: var(--mono); font-size: 19px; font-weight: 600; }
.summary-stat span { color: var(--text-dim); font-size: 10px; }
.staff-person { display: flex; align-items: center; gap: 9px; }
.staff-person .user-avatar { width: 28px; height: 28px; font-size: 8px; color: #ffffff; background: #0052ff; }
.status-dot { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; }
.status-dot::before { content: ""; width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.status-dot.pending { color: #8a6410; }
.status-dot.pending::before { background: var(--gold); }

.roadmap-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.roadmap-column { padding: 20px; background: #fff; border: 1px solid var(--hairline); border-top: 2px solid #101315; }
.roadmap-column h3 { margin: 0 0 5px; color: var(--text-strong); font-size: 14px; font-weight: 650; }
.roadmap-column > span { color: var(--text-dim); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }
.roadmap-column ul { display: grid; gap: 10px; margin: 17px 0 0; padding: 0; list-style: none; }
.roadmap-column li { position: relative; padding-left: 17px; color: var(--text-body); font-size: 11px; }
.roadmap-column li::before { content: ""; position: absolute; top: 7px; left: 0; width: 5px; height: 5px; background: var(--teal); }

.settings-layout { display: grid; grid-template-columns: 190px 1fr; gap: 20px; }
.settings-nav { display: grid; align-content: start; gap: 4px; }
.settings-nav button { min-height: 38px; padding: 8px 11px; border: 0; border-left: 2px solid transparent; border-radius: 0; color: var(--text-dim); background: transparent; text-align: left; font-size: 11px; font-weight: 600; }
.settings-nav button.active { color: var(--text-strong); background: #fff; border-left-color: #101315; }
.settings-panel { padding: 24px; background: #fff; border: 1px solid var(--hairline); }
.settings-panel h2 { margin: 0 0 5px; color: var(--text-strong); font-size: 17px; font-weight: 650; }
.settings-panel > p { margin: 0 0 20px; color: var(--text-dim); font-size: 11px; }
.integration-card { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; padding: 16px; border: 1px solid var(--hairline); }
.integration-logo { width: 42px; height: 42px; display: grid; place-items: center; color: #ffffff; background: #0052ff; font-family: var(--mono); font-weight: 700; }
.integration-card strong { display: block; color: var(--text-strong); font-size: 12px; font-weight: 600; }
.integration-card small { color: var(--text-dim); font-size: 10px; }

.legal-banner { position: sticky; z-index: 2; top: 65px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; padding: 12px 14px; color: #6b5310; background: #faf3df; border: 1px solid #e5d2a0; border-left: 3px solid #c9982e; font-size: 11px; }
.legal-banner strong { display: block; }
.legal-banner span:first-child { font-size: 15px; }
.editor-layout { display: grid; grid-template-columns: 1fr 260px; gap: 15px; }
.document-editor { padding: 46px 58px; background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.document-editor [contenteditable="true"] { outline: 0; }
.document-editor [contenteditable="true"]:focus { box-shadow: inset 0 0 0 2px #101315; }
.doc-title { margin: 0; color: var(--text-strong); font-family: var(--serif); font-size: 31px; line-height: 1.2; }
.doc-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin: 18px 0 25px; padding: 12px; color: var(--text-dim); background: var(--canvas); border: 1px solid var(--hairline); font-family: var(--mono); font-size: 9.5px; }
.document-editor h2 { margin: 26px 0 8px; color: var(--text-strong); font-size: 17px; font-weight: 650; }
.document-editor h3 { margin: 18px 0 6px; color: var(--text-strong); font-size: 13px; font-weight: 650; }
.document-editor p, .document-editor li { color: var(--text-body); font-size: 12px; line-height: 1.7; }
.document-editor ol, .document-editor ul { padding-left: 22px; }
.editor-side { display: grid; align-content: start; gap: 12px; }
.version-item { display: grid; grid-template-columns: 9px 1fr; gap: 9px; padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.version-item > i { width: 8px; height: 8px; margin-top: 4px; background: #101315; border-radius: 0; }
.version-item strong { display: block; color: var(--text-strong); font-size: 10px; font-weight: 600; }
.version-item small { color: var(--text-dim); font-size: 8px; }
.customize-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--text-dim); font-family: var(--mono); font-size: 10px; }
.customize-steps span { width: 24px; height: 24px; display: grid; place-items: center; color: #ffffff; background: #0052ff; font-weight: 700; }
.customize-steps i { width: 35px; height: 1px; background: var(--hairline-strong); }

/* ── Dialogs and feedback ──────────────────────────────────── */
.modal-backdrop { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 25px; background: rgba(5, 6, 7, 0.78); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.modal { width: min(760px, 100%); max-height: calc(100vh - 50px); overflow-y: auto; background: #fff; border: 1px solid #c6d2e3; border-radius: 0; box-shadow: 0 40px 120px rgba(13, 35, 84, 0.25); }
.modal-wide { width: min(990px, 100%); }
.modal-head { position: sticky; z-index: 3; top: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px 26px; background: #fff; border-bottom: 1px solid var(--hairline); }
.modal-head h2 { margin: 0; color: var(--text-strong); font-size: 20px; font-weight: 650; letter-spacing: -0.01em; }
.modal-head p { margin: 4px 0 0; color: var(--text-dim); font-size: 11px; }
.modal-close { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--hairline); border-radius: 0; background: #fff; font-size: 20px; }
.modal-close:hover { border-color: #101315; }
.modal-body { padding: 26px; }
.modal-actions { position: sticky; bottom: 0; display: flex; justify-content: flex-end; gap: 8px; padding: 16px 26px; background: #fff; border-top: 1px solid var(--hairline); }
.detail-summary { padding: 18px; background: var(--canvas); border: 1px solid var(--hairline); border-left: 2px solid #101315; color: var(--text-body); font-size: 13px; }
.detail-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 17px; }
.detail-section { padding: 12px; background: #fff; border: 1px solid var(--hairline); }
.detail-section strong { display: block; color: var(--text-strong); font-size: 11px; font-weight: 600; }
.detail-section span { color: var(--text-dim); font-size: 9px; }
.toast-region { position: fixed; z-index: 300; right: 20px; bottom: 20px; display: grid; gap: 8px; }
.toast { min-width: 290px; max-width: 390px; display: grid; grid-template-columns: 28px 1fr; gap: 11px; padding: 14px; color: #0a0b0c; background: #ffffff; border: 1px solid #c6d2e3; border-left: 2px solid #0052ff; box-shadow: 0 24px 70px rgba(13, 35, 84, 0.2); animation: toast-in 0.2s ease both; }
.toast > span { width: 26px; height: 26px; display: grid; place-items: center; color: #ffffff; background: #0052ff; font-family: var(--mono); font-size: 11px; font-weight: 700; }
.toast strong { display: block; font-size: 12px; }
.toast small { display: block; margin-top: 2px; color: #5b6672; font-size: 9px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }
.loading-panel { padding: 50px; text-align: center; }
.loading-spinner { width: 44px; height: 44px; margin: 0 auto 16px; border: 3px solid var(--hairline); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
.modal .loading-spinner { border-color: #e1e7f0; border-top-color: #0052ff; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-panel h3 { margin: 0 0 5px; color: var(--text-strong); }
.loading-panel p { margin: 0; color: var(--text-dim); font-size: 12px; }

/* ── Authentication modal ─────────────────────────────────────── */
.auth-modal {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.auth-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.auth-form input {
  padding: 8px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 3px;
  background: var(--bg-1);
  color: var(--text-strong);
  font-size: 14px;
  font-family: var(--font);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(213, 233, 66, 0.1);
}

.auth-form button[type="submit"] {
  width: 100%;
}

.auth-toggle {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.auth-toggle .plain-link {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
}

.auth-toggle .plain-link:hover {
  color: var(--accent-strong);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 12px 20px; background: var(--bg-1); border-bottom: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
  .primary-nav.open { display: grid; }
  .primary-nav button { text-align: left; }
  .nav-toggle { min-height: 42px; display: inline-flex; align-items: center; margin-left: auto; padding: 8px 14px; border: 1px solid var(--hairline-strong); border-radius: 0; color: var(--text-strong); background: transparent; font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
  .header-actions { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 40px; }
  .hero h1 { font-size: 54px; }
  .app-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .app-resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .site-container { width: min(100% - 32px, 1240px); }
  .official-help, .header-actions .button-quiet { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 64px 90px; }
  .hero-copy { max-width: 700px; }
  .product-window { max-width: 600px; margin-inline: auto; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); padding-block: 22px; }
  .trust-intro { grid-column: 1/-1; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid, .pricing-grid, .trust-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .department-showcase, .readiness-band, .assessment-intro, .contact-grid, .editor-layout { grid-template-columns: 1fr; }
  .score-visual { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .department-tabs { grid-template-columns: repeat(4, 1fr); }
  .department-tabs button { justify-content: center; text-align: center; }
  .how-grid, .roadmap-columns { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 1fr; gap: 15px; }
  .use-case-list { grid-template-columns: repeat(3, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .settings-layout { grid-template-columns: 1fr; }
  .settings-nav { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 620px) {
  .official-inner { min-height: 40px; }
  .header-inner { min-height: 64px; gap: 9px; }
  .brand-copy small { display: none; }
  .header-actions .button-primary { min-height: 40px; padding: 8px 12px; font-size: 10.5px; }
  .nav-toggle { padding: 8px 10px; }
  .hero-grid { gap: 50px; padding-top: 52px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .product-window { transform: none; }
  .mock-draft { right: -5px; }
  .trust-inner { grid-template-columns: 1fr; gap: 14px; }
  .trust-intro { grid-column: auto; }
  .section { padding-block: 68px; }
  .section-head h2, .page-hero h1 { font-size: 34px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .resource-grid, .pricing-grid, .trust-grid, .service-grid, .comparison-grid, .dimension-scores { grid-template-columns: 1fr; }
  .department-tabs { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid, .use-case-list { grid-template-columns: 1fr; }
  .readiness-copy, .score-visual, .question-card { padding: 26px; }
  .score-ring { width: 175px; height: 175px; }
  .score-hero { grid-template-columns: 1fr; text-align: center; }
  .assessment-intro { padding: 24px; }
  .assessment-side { display: none; }
  .filter-bar { grid-template-columns: 1fr; }
  .report-gate { grid-template-columns: 1fr; }
  .report-gate .field { min-width: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding-block: 14px; }
  .app-page-head { flex-direction: column; }
  .app-page-head > div { min-width: 0; }
  .app-page-actions { width: 100%; flex-direction: column; }
  .app-page-actions .button { width: 100%; min-width: 0; }
  .app-card { min-width: 0; }
  .app-grid-4, .app-grid-3, .app-grid-2, .app-resource-grid, .dashboard-primary-grid { grid-template-columns: minmax(0, 1fr); }
  .staff-summary { grid-template-columns: 1fr; }
  .readiness-summary-compact { grid-template-columns: minmax(0, 1fr); }
  .settings-nav { grid-template-columns: repeat(2, 1fr); }
  .editor-layout { margin-inline: -7px; }
  .document-editor { padding: 25px 20px; }
  .modal-backdrop { padding: 0; align-items: end; }
  .modal { max-height: 95vh; border-radius: 0; }
  .detail-sections { grid-template-columns: 1fr; }
  .toast-region { right: 10px; left: 10px; bottom: 10px; }
  .toast { min-width: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  body { color: #101315; background: #fff; }.app-page-head, .demo-notice, .legal-banner, .editor-side, .site-header, .official-bar, .site-footer { display: none !important; }.editor-layout { display: block; background: #fff; }
  .document-editor { border: 0; box-shadow: none; }
}

/* ── Brand typography (Michroma display, matching the Arsenal logo) ── */
h1, h2, h3 { font-family: var(--display); font-weight: 400; }.brand-copy strong, .footer-brand strong { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; }
.hero h1 em { font-family: var(--display); font-style: normal; }
/* Policy and SOP documents keep readable document type */
.document-editor h1, .document-editor h2, .document-editor h3 { font-family: var(--font); font-weight: 700; }

/* ── Cinematic public-site direction ───────────────────────── */
.site-container { width: min(1440px, calc(100% - 72px)); }
.site-header { background: rgba(5, 6, 7, 0.92); }
.header-inner { min-height: 82px; }
.primary-nav { gap: 12px; }
.primary-nav button { padding-inline: 8px; color: #c3c6c7; font-family: var(--font); font-size: 13px; font-weight: 540; text-transform: none; letter-spacing: -0.01em; }
.header-actions .button { min-height: 40px; padding-inline: 16px; font-size: 10.5px; }

.hero-cinematic { min-height: min(920px, calc(100vh - 118px)); isolation: isolate; background: #050607; }
.hero-cinematic::before, .hero-cinematic::after { display: none; }
.hero-media { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 58%; filter: saturate(0.78) contrast(1.06); }
.hero-scrim { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(2, 4, 7, 0.96) 0%, rgba(2, 4, 7, 0.79) 34%, rgba(2, 4, 7, 0.23) 68%, rgba(2, 4, 7, 0.18) 100%), linear-gradient(0deg, rgba(2, 4, 7, 0.88) 0%, transparent 42%, rgba(2, 4, 7, 0.28) 100%); }
.hero-frame { min-height: inherit; display: grid; grid-template-rows: auto 1fr auto; padding-block: 26px 28px; }
.hero-coordinates { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; padding-bottom: 18px; color: rgba(255, 255, 255, 0.66); border-bottom: 1px solid rgba(255, 255, 255, 0.28); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; }
.hero-coordinates span:nth-child(2) { text-align: center; }
.hero-cinematic .hero-copy { align-self: end; max-width: 1040px; padding-block: 84px 58px; }
.hero-cinematic .eyebrow { margin-bottom: 30px; color: #fff; }
.hero-cinematic h1 { max-width: 1030px; font-size: clamp(62px, 7.5vw, 112px); font-weight: 480; line-height: 0.91; letter-spacing: -0.055em; }
.hero-cinematic h1 em { color: #fff; font-family: inherit; font-style: normal; font-weight: inherit; }
.hero-cinematic .hero-lead { max-width: 680px; margin: 30px 0 34px; color: rgba(255, 255, 255, 0.78); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.45; }
.hero-cinematic .button-secondary { border-color: rgba(255, 255, 255, 0.48); background: rgba(0, 0, 0, 0.22); backdrop-filter: blur(8px); }
.hero-signal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-left: auto; width: min(900px, 78%); border-top: 1px solid rgba(255, 255, 255, 0.34); border-bottom: 1px solid rgba(255, 255, 255, 0.18); background: rgba(1, 3, 5, 0.4); backdrop-filter: blur(12px); }
.hero-signal > div { min-height: 96px; display: grid; grid-template-columns: 34px 1fr; align-content: center; padding: 18px 24px; border-left: 1px solid rgba(255, 255, 255, 0.18); }
.hero-signal span { grid-row: 1 / 3; color: var(--accent); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
.hero-signal strong { color: #fff; font-size: 15px; font-weight: 580; }
.hero-signal small { color: rgba(255, 255, 255, 0.57); font-size: 11px; }

.trust-inner { min-height: 112px; }
.trust-intro strong { font-size: 17px; }
.trust-item strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

.section-index { display: block; color: var(--text-dim); font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; }
.editorial-intro { padding-block: 150px; }
.editorial-grid { display: grid; grid-template-columns: 150px minmax(0, 1.6fr) minmax(260px, 0.65fr); gap: 46px; align-items: start; }
.editorial-grid .section-head { max-width: none; margin: 0; }
.editorial-grid .section-head h2 { font-size: clamp(44px, 5vw, 76px); font-weight: 470; line-height: 1.02; letter-spacing: -0.045em; }
.editorial-lead { margin: 55px 0 0; color: var(--text-dim); font-size: 17px; line-height: 1.7; }

.product-story { overflow: hidden; padding-block: 136px; background: #090a0b; border-block: 1px solid var(--hairline); }
.product-story-head { display: grid; grid-template-columns: 150px minmax(0, 1.35fr) minmax(260px, 0.65fr); gap: 46px; align-items: end; margin-bottom: 60px; }
.product-story-head .eyebrow { margin-bottom: 18px; }
.product-story-head h2, .capability-heading h2 { margin: 0; color: var(--text-strong); font-size: clamp(38px, 4.5vw, 64px); font-weight: 480; line-height: 1.02; letter-spacing: -0.04em; }
.product-story-head > p { margin: 0; color: var(--text-dim); font-size: 16px; line-height: 1.65; }
.product-stage { display: grid; grid-template-columns: 52px minmax(0, 1fr); border: 1px solid var(--hairline-strong); background: #050607; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5); }
.stage-rail { display: flex; flex-direction: column; align-items: center; justify-content: space-around; padding-block: 28px; border-right: 1px solid var(--hairline-strong); }
.stage-rail span { color: var(--text-dim); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.16em; writing-mode: vertical-rl; transform: rotate(180deg); }
.product-stage .product-window { max-width: 1120px; width: calc(100% - 120px); margin: 56px auto 74px; box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6); }
.product-stage .window-body { min-height: 520px; grid-template-columns: 160px 1fr; }
.product-stage .mock-main { padding: 36px; }
.product-stage .mock-stat { padding: 18px; }
.product-stage .mock-stat b { font-size: 30px; }
.product-stage .mock-panel { padding: 20px; }
.product-stage .mock-row { min-height: 32px; grid-template-columns: 1fr 1.8fr 42px; font-size: 9px; }
.product-stage .mock-draft { right: -58px; bottom: -38px; width: 290px; padding: 22px; }
.product-stage .mock-draft strong { font-size: 15px; }
.platform-actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.platform-actions > span { color: var(--text-dim); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

.capabilities-section { padding-block: 140px; color: #262a2c; background: #e9e9e5; }
.capability-heading { display: grid; grid-template-columns: 150px 1fr; gap: 46px; align-items: end; margin-bottom: 58px; }
.capability-heading .section-index { color: #686d70; }
.capability-heading h2 { max-width: 900px; color: #101315; }
.mission-grid { border-color: #c6c8c5; background: #c6c8c5; }
.mission-grid .pillar-card { min-height: 510px; padding: 38px; color: #373c3f; background: #f4f4f0; }
.mission-grid .pillar-card:hover { background: #fff; }
.mission-grid .pillar-card::before { color: #6e7477; }
.mission-grid .pillar-icon { color: #101315; border-color: #9ea2a1; }
.mission-grid .pillar-card h3 { color: #101315; font-size: 30px; font-weight: 560; }
.mission-grid .pillar-card p { color: #596064; font-size: 15px; }
.mission-grid .pillar-card ul { color: #313639; }
.mission-grid .text-link { color: #101315; }

.department-section { padding-block: 140px; }
.department-section .department-showcase { margin-top: 16px; }
.readiness-section { padding-block: 140px; }
.readiness-section .readiness-band { grid-template-columns: 1fr 1fr; }
.readiness-section .score-visual { min-height: 540px; background: #050607; }
.readiness-section .readiness-copy { padding: 72px; }
.readiness-section .section-index { margin-bottom: 48px; }
.hybrid-section { padding-block: 140px; }
.hybrid-section .comparison-card { min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.final-cta { min-height: 420px; padding: 72px; }
.final-cta .section-index { margin-bottom: 42px; }

@media (max-width: 1100px) {
  .site-container { width: min(100% - 48px, 1200px); }
  .header-inner { gap: 18px; }
  .primary-nav { gap: 2px; }
  .primary-nav button { padding-inline: 5px; font-size: 12px; }
  .header-actions .button-quiet { display: none; }
  .hero-signal { width: 100%; }
  .editorial-grid, .product-story-head { grid-template-columns: 110px minmax(0, 1fr); }
  .editorial-lead, .product-story-head > p { grid-column: 2; margin-top: 0; }
  .product-stage .product-window { width: calc(100% - 80px); }
}

@media (max-width: 850px) {
  .site-container { width: min(100% - 32px, 760px); }
  .hero-cinematic { min-height: 800px; }
  .hero-media { object-position: 66% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(2, 4, 7, 0.93), rgba(2, 4, 7, 0.42)), linear-gradient(0deg, rgba(2, 4, 7, 0.93), transparent 54%); }
  .hero-cinematic .hero-copy { padding-block: 80px 44px; }
  .hero-cinematic h1 { font-size: clamp(52px, 12vw, 82px); }
  .hero-signal { grid-template-columns: 1fr; }
  .hero-signal > div { min-height: 72px; }
  .hero-signal > div + div { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .editorial-intro, .product-story, .capabilities-section, .department-section, .readiness-section, .hybrid-section { padding-block: 96px; }
  .editorial-grid, .product-story-head, .capability-heading { grid-template-columns: 1fr; gap: 24px; }
  .editorial-lead, .product-story-head > p { grid-column: auto; }
  .product-stage { grid-template-columns: 1fr; }
  .stage-rail { display: none; }
  .product-stage .product-window { width: calc(100% - 40px); margin: 30px auto 60px; }
  .product-stage .window-body { min-height: 420px; grid-template-columns: 110px 1fr; }
  .product-stage .mock-main { padding: 22px; }
  .product-stage .mock-draft { right: -10px; }
  .readiness-section .readiness-band { grid-template-columns: 1fr; }
  .readiness-section .score-visual { min-height: 380px; }
  .readiness-section .readiness-copy { padding: 48px; }
}

@media (max-width: 620px) {
  .site-container { width: min(100% - 24px, 560px); }
  .official-inner > span:not(.flag-mark) { overflow: hidden; max-width: 58vw; text-overflow: ellipsis; white-space: nowrap; }
  .hero-cinematic { min-height: 760px; }
  .hero-coordinates { grid-template-columns: 1fr auto; }
  .hero-coordinates span:nth-child(2) { display: none; }
  .hero-cinematic .hero-copy { align-self: center; padding-block: 62px 34px; }
  .hero-cinematic h1 { font-size: clamp(48px, 15vw, 68px); line-height: 0.94; }
  .hero-cinematic .hero-lead { font-size: 16px; }
  .hero-cinematic .hero-actions { display: grid; }
  .hero-signal { display: none; }
  .trust-inner { min-height: 0; padding-block: 30px; }
  .editorial-intro, .product-story, .capabilities-section, .department-section, .readiness-section, .hybrid-section { padding-block: 72px; }
  .editorial-grid .section-head h2, .product-story-head h2, .capability-heading h2 { font-size: 40px; }
  .product-stage .product-window { width: calc(100% - 24px); margin-bottom: 42px; }
  .product-stage .window-body { grid-template-columns: 74px 1fr; min-height: 330px; }
  .product-stage .mock-main { padding: 14px; }
  .product-stage .mock-side { padding-inline: 8px; }
  .product-stage .mock-stats { grid-template-columns: 1fr; }
  .product-stage .mock-stat:nth-child(n+2), .product-stage .mock-panel:nth-of-type(2) { display: none; }
  .product-stage .mock-draft { position: static; width: auto; margin: 0; transform: none; }
  .platform-actions { align-items: flex-start; flex-direction: column; }
  .mission-grid .pillar-card { min-height: 420px; padding: 28px; }
  .readiness-section .readiness-copy { padding: 32px 24px; }
  .final-cta { min-height: 0; padding: 44px 26px; }
}

/* ── Supplied Arsenal identity ─────────────────────────────── */
.brand-lockup {
  width: 228px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  /* Show the full designed logo (shield + ARSENAL wordmark), cropping the
     transparent padding baked into the source PNG. background-size auto 270%
     scales the content band to fill the box height at any breakpoint, so the
     wordmark stays legible without per-size mask math. */
  background-image: url("arsenal-logo.png");
  background-repeat: no-repeat;
  background-position: 50% 48%;
  background-size: auto 270%;
}
.brand-lockup img { display: none; }
.brand:hover .brand-lockup { opacity: 0.88; }
.brand-symbol-crop {
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
}
.brand-symbol-crop img {
  position: absolute;
  top: -31px;
  left: -13px;
  width: 218px;
  max-width: none;
}
.brand-symbol-small { width: 30px; height: 30px; }
.brand-symbol-small img { top: -27px; left: -12px; width: 190px; }
.footer-brand .brand-symbol-crop { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08); }

@media (max-width: 850px) {
  .brand-lockup { width: 194px; height: 34px; }
}

@media (max-width: 620px) {
  .brand-lockup { width: 171px; height: 30px; }
}

@media (max-width: 430px) {
  .brand-lockup { width: 148px; height: 26px; }
  .header-actions .button-primary { display: none; }
}

/* ── Light Arsenal direction ───────────────────────────────── */
body, .site-header, .official-bar, .site-footer { color: var(--text-body); background: #ffffff; }
.site-header { background: rgba(255, 255, 255, 0.92); }
.official-bar { border-bottom-color: var(--hairline); }
.primary-nav button { color: var(--text-body); }
.primary-nav button:hover, .primary-nav button.active { color: var(--accent-strong); }
.button { color: var(--text-strong); background: #ffffff; border-color: var(--hairline-strong); }
.button:hover { background: #f2f6fb; border-color: var(--accent); }
.button-primary { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.button-primary:hover { color: #ffffff; background: var(--accent-strong); border-color: var(--accent-strong); }

h1, h2, h3, .hero h1, .page-hero h1, .section-head h2, .pillar-card h3, .department-panel h3, .readiness-copy h2, .cta-band h2, .contact-copy h2 {
  font-family: var(--brand-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.eyebrow, .button, .primary-nav button, .footer-grid > div > strong, .official-bar, .hero-coordinates, .section-index { font-family: var(--brand-display); }

.hero-cinematic, .product-story, .product-stage, .readiness-section .score-visual { color: var(--text-body); background: #f7f9fc; }
.hero-media { opacity: 0.1; filter: grayscale(1) contrast(0.8); }
.hero-scrim { background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)); }
.hero-coordinates { color: var(--text-dim); border-bottom-color: var(--hairline-strong); }
.hero-cinematic .eyebrow, .hero-cinematic h1, .hero-cinematic h1 em, .hero-cinematic .hero-lead { color: var(--text-strong); }
.hero-cinematic .button-secondary { background: #ffffff; border-color: var(--hairline-strong); }
.hero-signal { background: rgba(255, 255, 255, 0.82); border-color: var(--hairline-strong); }
.hero-signal > div { border-left-color: var(--hairline); }
.hero-signal strong { color: var(--text-strong); }
.hero-signal small { color: var(--text-dim); }
.product-stage { box-shadow: var(--shadow); }
.product-story { border-color: var(--hairline); }
.capabilities-section, .mission-grid .pillar-card, .mission-grid .pillar-card:hover { background: #ffffff; }
.capabilities-section { color: var(--text-body); }
.mission-grid { background: var(--hairline); border-color: var(--hairline); }
.readiness-section .score-visual { border-color: var(--hairline); }

/* Workspace sidebar keeps the solid Arsenal-blue treatment defined above. */
.footer-brand, .footer-grid, .footer-bottom { color: var(--text-body); }

/* Arsenal public-site system: one editorial language across every public route. */
body { background: var(--bg-0); }

h1, h2, h3,
.hero h1, .page-hero h1, .section-head h2, .pillar-card h3,
.department-panel h3, .readiness-copy h2, .cta-band h2, .contact-copy h2 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.eyebrow, .official-bar, .primary-nav button, .button, .footer-grid > div > strong,
.hero-coordinates, .section-index { font-family: var(--mono); }

.official-bar {
  color: rgba(255, 255, 255, 0.66);
  background: #07111f;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.official-bar .plain-link { color: rgba(255, 255, 255, 0.72); }
.official-bar .plain-link:hover { color: #ffffff; }
.flag-mark { color: #63a0ff; }

.site-header {
  background: rgba(251, 251, 248, 0.96);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(7, 17, 31, 0.03);
}
.header-inner { min-height: 76px; }
.primary-nav button { position: relative; color: #465565; }
.primary-nav button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}
.primary-nav button:hover, .primary-nav button.active { color: var(--text-strong); }
.primary-nav button:hover::after, .primary-nav button.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  padding-inline: 20px;
  color: var(--text-strong);
  background: transparent;
  border-color: var(--hairline-strong);
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.button:hover { color: var(--text-strong); background: #ffffff; border-color: var(--text-strong); }
.button:active { transform: translateY(1px); }
.button:disabled { cursor: not-allowed; opacity: 0.48; }
.button-primary { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.button-primary:hover { color: #ffffff; background: var(--accent-strong); border-color: var(--accent-strong); }
.button-quiet { border-color: transparent; }

.hero-cinematic {
  min-height: min(900px, calc(100vh - 112px));
  color: #ffffff;
  background: #07111f;
}
.hero-media {
  opacity: 1;
  filter: saturate(0.76) contrast(1.08) brightness(0.9);
  transform: scale(1.015);
  animation: hero-settle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.97) 0%, rgba(4, 10, 18, 0.82) 40%, rgba(4, 10, 18, 0.24) 74%, rgba(4, 10, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 10, 18, 0.92) 0%, transparent 48%, rgba(4, 10, 18, 0.36) 100%);
}
.hero-coordinates { color: rgba(255, 255, 255, 0.68); border-bottom-color: rgba(255, 255, 255, 0.28); }
.hero-cinematic .eyebrow, .hero-cinematic h1, .hero-cinematic h1 em { color: #ffffff; }
.hero-cinematic .hero-lead { color: rgba(255, 255, 255, 0.78); }
.hero-cinematic h1 { font-family: var(--display); font-weight: 620; }
.hero-cinematic .button-secondary { color: #ffffff; background: rgba(7, 17, 31, 0.3); border-color: rgba(255, 255, 255, 0.55); }
.hero-cinematic .button-secondary:hover { color: #07111f; background: #ffffff; border-color: #ffffff; }
.hero-signal { background: rgba(4, 10, 18, 0.52); border-color: rgba(255, 255, 255, 0.26); }
.hero-signal > div { border-left-color: rgba(255, 255, 255, 0.18); }
.hero-signal strong { color: #ffffff; }
.hero-signal small { color: rgba(255, 255, 255, 0.62); }

.trust-strip { background: #fbfbf8; }
.trust-inner { min-height: 116px; }
.trust-intro strong { font-family: var(--display); font-size: 18px; letter-spacing: -0.02em; }
.trust-item strong { color: var(--text-strong); }

.section { padding-block: var(--space-section); }
.section-tight { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section-warm { background: #e9ecee; }
.section-blue { background: #e7effd; }
.section-head h2, .page-hero h1 { font-weight: 650; }

.editorial-intro { background: #fbfbf8; }
.editorial-grid .section-head h2 { color: var(--text-strong); font-weight: 620; }

.field-story {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(290px, 0.68fr);
  margin: clamp(4.5rem, 8vw, 7.5rem) 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: #07111f;
  border: 1px solid #07111f;
}
.field-story-media { position: relative; overflow: hidden; min-height: 500px; background: #111b28; }
.field-story-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.field-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}
.field-story:hover .field-story-media img { transform: scale(1.012); filter: saturate(0.9) contrast(1.04); }
.field-coordinate {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 32px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(4, 10, 18, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}
.field-story figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 4vw, 3.75rem); }
.field-story figcaption .eyebrow { color: #78a9ff; }
.field-story figcaption strong {
  display: block;
  margin: 22px 0 14px;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.field-story figcaption p { margin: 0 0 28px; font-size: 14px; line-height: 1.7; }
.field-story .text-link { align-self: flex-start; color: #ffffff; }
.text-link { transition: color var(--transition-fast), transform var(--transition-fast); }
.text-link:hover { transform: translateX(3px); }
.mission-grid .pillar-card:hover { box-shadow: inset 0 2px 0 var(--accent); }

.product-story {
  color: rgba(255, 255, 255, 0.78);
  background: #07111f;
  border-color: rgba(255, 255, 255, 0.12);
}
.product-story .section-index, .product-story .eyebrow, .product-story-head > p { color: rgba(255, 255, 255, 0.62); }
.product-story-head h2 { color: #ffffff; }
.product-stage { background: #0b1726; border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42); }
.product-stage .product-window { border-color: rgba(255, 255, 255, 0.2); }
.stage-rail { border-right-color: rgba(255, 255, 255, 0.18); }
.stage-rail span, .platform-actions > span { color: rgba(255, 255, 255, 0.58); }

.capabilities-section { color: var(--text-body); background: #e9ecee; }
.capability-heading h2 { color: var(--text-strong); }
.mission-grid { background: #cbd2d8; border-color: #cbd2d8; }
.mission-grid .pillar-card { color: var(--text-body); background: #f7f7f3; }
.mission-grid .pillar-card:hover { background: #ffffff; }
.mission-grid .pillar-card h3, .mission-grid .text-link { color: var(--text-strong); }
.mission-grid .pillar-card p { color: var(--text-dim); }

.section-navy, .department-section {
  color: rgba(255, 255, 255, 0.76);
  background: #0a1422;
  border-color: rgba(255, 255, 255, 0.12);
}
.section-navy .section-index, .section-navy .eyebrow, .section-navy .section-head p,
.department-section .product-story-head > p { color: rgba(255, 255, 255, 0.58); }
.section-navy .section-head h2, .department-section .product-story-head h2 { color: #ffffff; }
.department-section .department-tabs button { color: rgba(255, 255, 255, 0.64); border-color: rgba(255, 255, 255, 0.22); }
.department-section .department-tabs button:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.6); }
.department-section .department-tabs button[aria-selected="true"] { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.department-section .department-panel { color: rgba(255, 255, 255, 0.76); background: #0e1b2b; border-color: rgba(255, 255, 255, 0.18); }
.department-section .department-panel h3 { color: #ffffff; }
.department-section .department-panel > p { color: rgba(255, 255, 255, 0.62); }
.department-section .workflow-item { background: #122235; border-color: rgba(255, 255, 255, 0.12); }
.department-section .workflow-item strong { color: #ffffff; }
.department-section .workflow-item span { color: rgba(255, 255, 255, 0.58); }

.readiness-section { background: #f4f4f0; }
.readiness-section .score-visual { color: #ffffff; background: #07111f; border-color: #07111f; }
.readiness-section .readiness-copy { background: #ffffff; }
.hybrid-section { background: #fbfbf8; }
.comparison-card { background: transparent; }
.comparison-card.featured { background: #ffffff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.5rem, 10vw, 9rem);
  color: #ffffff;
  background-color: #07111f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0 18%, rgba(255, 255, 255, 0.12) 18% 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #ffffff; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.98; }
.page-hero p { color: rgba(255, 255, 255, 0.68); }
.page-hero .eyebrow { color: #78a9ff; }
.page-hero .button-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}
.page-hero .button-secondary:hover {
  color: #07111f;
  background: #ffffff;
  border-color: #ffffff;
}
.breadcrumb { color: rgba(255, 255, 255, 0.54); }

.price-card, .resource-card, .trust-card, .form-card, .audience-card, .policy-option,
.assessment-card, .result-card, .roadmap-column { border-radius: 0; box-shadow: none; }
.price-card:hover, .resource-card:hover, .trust-card:hover { border-color: var(--accent); }
.form-card { border-top: 3px solid var(--accent); }
input, select, textarea { background: #ffffff; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 2px solid rgba(7, 92, 255, 0.18); outline-offset: 0; }

.cta-band { background: #07111f; border-color: rgba(255, 255, 255, 0.16); border-left-color: var(--accent); }
.cta-band h2 { color: #ffffff; }
.cta-band .button-secondary { color: #ffffff; border-color: rgba(255, 255, 255, 0.5); }
.cta-band .button-secondary:hover { color: #07111f; background: #ffffff; }

/* ── Public homepage refresh ──────────────────────────────── */
#public-shell .button {
  border-radius: 9px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
  text-transform: none;
  letter-spacing: -0.01em;
}
#public-shell .nav-toggle { border-radius: 9px; }
.brand-lockup { width: 205px; height: 36px; }
h1, h2, h3,
.hero h1, .section-head h2, .capability-heading h2, .product-story-head h2,
.workflow-path h3, .cta-band h2 { letter-spacing: -0.028em; }

#main-content[data-route="home"] .home-page { overflow: clip; background: #f7f9fc; }
#main-content[data-route="home"] .hero-cinematic {
  min-height: min(720px, calc(100vh - 102px));
  border-bottom: 0;
}
#main-content[data-route="home"] .hero-frame {
  grid-template-rows: 1fr auto;
  padding-block: 0 24px;
}
#main-content[data-route="home"] .hero-cinematic .hero-copy {
  align-self: center;
  max-width: 900px;
  padding-block: 86px 54px;
}
#main-content[data-route="home"] .hero-cinematic .eyebrow {
  margin-bottom: 22px;
  color: #8bb6ff;
}
#main-content[data-route="home"] .hero-cinematic h1 {
  max-width: 900px;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
#main-content[data-route="home"] .hero-cinematic .hero-lead {
  max-width: 760px;
  margin: 24px 0 28px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}
#main-content[data-route="home"] .hero-proof {
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  font-size: 12px;
}
#main-content[data-route="home"] .hero-proof i {
  width: 24px;
  height: 24px;
  color: #9fc2ff;
  border-color: rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 8px;
}
#main-content[data-route="home"] .hero-signal {
  width: min(980px, 82%);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  background: rgba(5, 14, 27, 0.68);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}
#main-content[data-route="home"] .hero-signal > div {
  min-height: 84px;
  padding: 15px 20px;
  border-left-color: rgba(255, 255, 255, 0.14);
}
#main-content[data-route="home"] .hero-signal strong { font-size: 14px; }
#main-content[data-route="home"] .hero-signal small { font-size: 10px; line-height: 1.35; }

#main-content[data-route="home"] .trust-strip { background: #ffffff; }
#main-content[data-route="home"] .trust-inner { min-height: 104px; }
#main-content[data-route="home"] .trust-intro strong {
  max-width: 290px;
  font-size: 17px;
  line-height: 1.25;
}
#main-content[data-route="home"] .trust-intro span { display: block; margin-top: 4px; font-size: 12px; }
#main-content[data-route="home"] .trust-item strong {
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
}
#main-content[data-route="home"] .trust-item span { font-family: var(--font); font-size: 11px; letter-spacing: 0; }

#main-content[data-route="home"] .editorial-intro {
  padding-block: clamp(76px, 8vw, 106px);
  background:
    radial-gradient(circle at 86% 14%, rgba(7, 92, 255, 0.08), transparent 28%),
    #f8fafc;
}
#main-content[data-route="home"] .editorial-grid {
  grid-template-columns: 120px minmax(0, 1.5fr) minmax(260px, 0.65fr);
  gap: 34px;
}
#main-content[data-route="home"] .editorial-grid .section-head h2 {
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
#main-content[data-route="home"] .editorial-lead {
  margin-top: 42px;
  font-size: 16px;
  line-height: 1.7;
}
#main-content[data-route="home"] .field-story {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  margin-top: clamp(48px, 5vw, 68px);
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
}
#main-content[data-route="home"] .field-story-media { min-height: 440px; }
#main-content[data-route="home"] .field-story-media::after { border-radius: 12px; }
#main-content[data-route="home"] .field-story figcaption {
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 132, 255, 0.24), transparent 38%),
    #071528;
}

#main-content[data-route="home"] .capabilities-section {
  padding-block: clamp(78px, 8vw, 108px);
  background:
    linear-gradient(rgba(7, 92, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 92, 255, 0.035) 1px, transparent 1px),
    #eef3f9;
  background-size: 64px 64px;
}
#main-content[data-route="home"] .capability-heading {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  margin-bottom: 44px;
}
#main-content[data-route="home"] .capability-heading h2 {
  max-width: 920px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
}
#main-content[data-route="home"] .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
#main-content[data-route="home"] .feature-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8e0e9;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.055);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
#main-content[data-route="home"] .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 92, 255, 0.48);
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.1);
}
#main-content[data-route="home"] .feature-card::before {
  content: attr(data-number);
  position: absolute;
  top: 26px;
  right: 28px;
  color: #8491a1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
}
#main-content[data-route="home"] .feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #075cff;
  background: #eaf1ff;
  border: 1px solid #c6d9ff;
  border-radius: 13px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}
#main-content[data-route="home"] .feature-card h3 {
  margin: 26px 0 12px;
  color: #0a1728;
  font-size: 25px;
  line-height: 1.08;
}
#main-content[data-route="home"] .feature-card p {
  margin: 0 0 26px;
  color: #5b6978;
  font-size: 14px;
  line-height: 1.65;
}
#main-content[data-route="home"] .feature-card .text-link { margin-top: auto; align-self: flex-start; }
#main-content[data-route="home"] .feature-card-accent {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 92% 8%, rgba(63, 130, 255, 0.36), transparent 34%),
    linear-gradient(145deg, #071528, #0d2647);
  border-color: #173a68;
  box-shadow: 0 18px 54px rgba(7, 21, 40, 0.2);
}
#main-content[data-route="home"] .feature-card-accent::before { color: rgba(255, 255, 255, 0.48); }
#main-content[data-route="home"] .feature-card-accent .feature-icon {
  color: #ffffff;
  background: #075cff;
  border-color: #4384ff;
}
#main-content[data-route="home"] .feature-card-accent h3,
#main-content[data-route="home"] .feature-card-accent .text-link { color: #ffffff; }
#main-content[data-route="home"] .feature-card-accent p { color: rgba(255, 255, 255, 0.68); }

#main-content[data-route="home"] .product-story { padding-block: clamp(82px, 8vw, 108px); }
#main-content[data-route="home"] .product-story-head {
  grid-template-columns: 120px minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 34px;
  margin-bottom: 46px;
}
#main-content[data-route="home"] .product-story-head h2 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
}
#main-content[data-route="home"] .product-stage {
  display: block;
  overflow: visible;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 8%, rgba(57, 124, 255, 0.2), transparent 28%),
    #0b1726;
}
#main-content[data-route="home"] .stage-rail { display: none; }
#main-content[data-route="home"] .product-stage .product-window {
  max-width: 1190px;
  width: calc(100% - 92px);
  margin: 46px auto 68px;
  padding: 9px;
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}
#main-content[data-route="home"] .product-stage .window-top { height: 36px; }
#main-content[data-route="home"] .product-stage .window-body {
  min-height: 500px;
  grid-template-columns: 180px minmax(0, 1fr);
  border-radius: 0 0 12px 12px;
}
#main-content[data-route="home"] .mock-side { padding: 24px 15px; }
#main-content[data-route="home"] .mock-nav-label {
  min-height: 31px;
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 6px 9px;
  color: #667689;
  border-left: 2px solid transparent;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
}
#main-content[data-route="home"] .mock-nav-label.on {
  color: #0d356d;
  background: #e8f0ff;
  border-left-color: #075cff;
}
#main-content[data-route="home"] .product-stage .mock-main { padding: 30px; }
#main-content[data-route="home"] .mock-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 7px 0 20px;
}
#main-content[data-route="home"] .mock-title-row strong {
  color: #0b1726;
  font-size: 23px;
  letter-spacing: -0.025em;
}
#main-content[data-route="home"] .mock-title-row span {
  color: #728092;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#main-content[data-route="home"] .product-stage .mock-stats { gap: 10px; }
#main-content[data-route="home"] .product-stage .mock-stat {
  padding: 15px;
  background: #f5f8fc;
  border-radius: 9px;
}
#main-content[data-route="home"] .product-stage .mock-stat b { font-size: 27px; }
#main-content[data-route="home"] .mock-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
#main-content[data-route="home"] .product-stage .mock-panel {
  margin-top: 11px;
  padding: 16px;
  background: #f7f9fc;
  border-radius: 10px;
}
#main-content[data-route="home"] .mock-action-list { display: grid; gap: 7px; }
#main-content[data-route="home"] .mock-action {
  min-height: 48px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
}
#main-content[data-route="home"] .mock-action > div { min-width: 0; }
#main-content[data-route="home"] .mock-action strong,
#main-content[data-route="home"] .mock-action small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#main-content[data-route="home"] .mock-action strong { color: #1c2a3a; font-size: 9px; }
#main-content[data-route="home"] .mock-action small { margin-top: 2px; color: #788596; font-size: 7.5px; }
#main-content[data-route="home"] .mock-action > b { color: #285d9e; font-family: var(--mono); font-size: 7.5px; }
#main-content[data-route="home"] .mock-action-dot {
  width: 9px;
  height: 9px;
  justify-self: center;
  background: #4e8eff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e8f0ff;
}
#main-content[data-route="home"] .mock-action-dot.critical { background: #c5352b; box-shadow: 0 0 0 4px #fbe9e7; }
#main-content[data-route="home"] .mock-action-dot.warning { background: #c38a18; box-shadow: 0 0 0 4px #fbf1d8; }
#main-content[data-route="home"] .mock-route-badge {
  min-width: 24px;
  padding: 4px 3px;
  color: #075cff;
  background: #e8f0ff;
  border-radius: 5px;
  text-align: center;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 750;
}
#main-content[data-route="home"] .product-stage .mock-draft {
  right: -30px;
  bottom: -32px;
  width: 300px;
  padding: 18px;
  border-radius: 13px;
  transform: rotate(-1deg);
}
#main-content[data-route="home"] .platform-actions { justify-content: space-between; }

#main-content[data-route="home"] .workflow-section {
  padding-block: clamp(78px, 8vw, 104px);
  background: #fbfcfe;
}
#main-content[data-route="home"] .workflow-heading {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
}
#main-content[data-route="home"] .workflow-heading .section-head {
  max-width: 850px;
  margin-bottom: 42px;
}
#main-content[data-route="home"] .workflow-heading .section-head h2 {
  font-size: clamp(38px, 4.4vw, 58px);
}
#main-content[data-route="home"] .workflow-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-left: 154px;
}
#main-content[data-route="home"] .workflow-path {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  background: #ffffff;
  border: 1px solid #d9e1ea;
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(7, 17, 31, 0.07);
}
#main-content[data-route="home"] .path-label {
  align-self: flex-start;
  padding: 6px 9px;
  color: #075cff;
  background: #eaf1ff;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#main-content[data-route="home"] .workflow-path h3 {
  max-width: 480px;
  margin: 26px 0 26px;
  color: #0b1726;
  font-size: 33px;
  line-height: 1.05;
}
#main-content[data-route="home"] .workflow-path ol {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
#main-content[data-route="home"] .workflow-path li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #465565;
  border-top: 1px solid #e3e8ee;
  font-size: 13px;
}
#main-content[data-route="home"] .workflow-path li span {
  color: #075cff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}
#main-content[data-route="home"] .workflow-path .text-link { margin-top: auto; align-self: flex-start; }
#main-content[data-route="home"] .workflow-path-blue {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 95% 5%, rgba(54, 123, 255, 0.34), transparent 36%),
    linear-gradient(145deg, #08162a, #0d2a50);
  border-color: #1d426f;
}
#main-content[data-route="home"] .workflow-path-blue .path-label { color: #ffffff; background: #075cff; }
#main-content[data-route="home"] .workflow-path-blue h3,
#main-content[data-route="home"] .workflow-path-blue .text-link { color: #ffffff; }
#main-content[data-route="home"] .workflow-path-blue li {
  color: rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.14);
}
#main-content[data-route="home"] .workflow-path-blue li span { color: #8bb6ff; }

#main-content[data-route="home"] .home-final {
  padding-block: clamp(68px, 7vw, 94px);
  background:
    radial-gradient(circle at 12% 50%, rgba(7, 92, 255, 0.1), transparent 28%),
    #eef3f9;
}
#main-content[data-route="home"] .final-cta {
  min-height: 350px;
  padding: clamp(42px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(67, 132, 255, 0.35), transparent 34%),
    linear-gradient(135deg, #071528, #0c2a50);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.2);
}
#main-content[data-route="home"] .final-cta .section-index { color: #8bb6ff; }
#main-content[data-route="home"] .final-cta p { max-width: 760px; color: rgba(255, 255, 255, 0.66); }

@media (max-width: 1100px) {
  #main-content[data-route="home"] .editorial-grid,
  #main-content[data-route="home"] .product-story-head {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  #main-content[data-route="home"] .editorial-lead,
  #main-content[data-route="home"] .product-story-head > p { grid-column: 2; }
  #main-content[data-route="home"] .workflow-paths { margin-left: 134px; }
}

@media (max-width: 850px) {
  .brand-lockup { width: 184px; height: 32px; }
  #main-content[data-route="home"] .hero-cinematic { min-height: 680px; }
  #main-content[data-route="home"] .hero-cinematic .hero-copy { padding-block: 74px 46px; }
  #main-content[data-route="home"] .hero-signal { display: none; }
  #main-content[data-route="home"] .editorial-grid,
  #main-content[data-route="home"] .capability-heading,
  #main-content[data-route="home"] .product-story-head,
  #main-content[data-route="home"] .workflow-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #main-content[data-route="home"] .editorial-lead,
  #main-content[data-route="home"] .product-story-head > p { grid-column: auto; margin-top: 0; }
  #main-content[data-route="home"] .field-story { grid-template-columns: 1fr; }
  #main-content[data-route="home"] .field-story-media { min-height: 0; aspect-ratio: 3 / 2; }
  #main-content[data-route="home"] .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #main-content[data-route="home"] .product-stage .product-window { width: calc(100% - 34px); margin-block: 28px 48px; }
  #main-content[data-route="home"] .product-stage .window-body { grid-template-columns: 130px minmax(0, 1fr); }
  #main-content[data-route="home"] .product-stage .mock-main { padding: 20px; }
  #main-content[data-route="home"] .mock-dashboard-grid { grid-template-columns: 1fr; }
  #main-content[data-route="home"] .product-stage .mock-draft { position: static; width: auto; margin-top: 0; transform: none; }
  #main-content[data-route="home"] .workflow-paths { grid-template-columns: 1fr; margin-left: 0; }
  #main-content[data-route="home"] .workflow-path { min-height: 0; }
}

@media (max-width: 620px) {
  .official-bar { display: none; }
  .brand-lockup { width: 158px; height: 28px; }
  #main-content[data-route="home"] .hero-cinematic { min-height: 650px; }
  #main-content[data-route="home"] .hero-cinematic h1 { font-size: clamp(46px, 14vw, 62px); }
  #main-content[data-route="home"] .hero-cinematic .hero-copy { padding-block: 62px 38px; }
  #main-content[data-route="home"] .hero-proof { display: grid; gap: 10px; }
  #main-content[data-route="home"] .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-block: 20px;
  }
  #main-content[data-route="home"] .trust-intro { grid-column: 1 / -1; padding-bottom: 16px; }
  #main-content[data-route="home"] .trust-item { min-height: 68px; padding: 12px 10px; border-top: 1px solid var(--hairline); border-left: 0; }
  #main-content[data-route="home"] .trust-item:nth-child(odd) { border-left: 1px solid var(--hairline); }
  #main-content[data-route="home"] .editorial-grid .section-head h2,
  #main-content[data-route="home"] .capability-heading h2,
  #main-content[data-route="home"] .product-story-head h2,
  #main-content[data-route="home"] .workflow-heading .section-head h2 { font-size: 38px; }
  #main-content[data-route="home"] .field-story { margin-top: 38px; border-radius: 16px; }
  #main-content[data-route="home"] .feature-grid { grid-template-columns: 1fr; }
  #main-content[data-route="home"] .feature-card { min-height: 0; padding: 26px; }
  #main-content[data-route="home"] .product-stage { border-radius: 16px; }
  #main-content[data-route="home"] .product-stage .product-window { width: calc(100% - 20px); margin-block: 10px 30px; }
  #main-content[data-route="home"] .product-stage .window-body { min-height: 0; grid-template-columns: 1fr; }
  #main-content[data-route="home"] .product-stage .mock-side { display: none; }
  #main-content[data-route="home"] .product-stage .mock-main { padding: 15px; }
  #main-content[data-route="home"] .mock-title-row strong { font-size: 18px; }
  #main-content[data-route="home"] .mock-title-row span { display: none; }
  #main-content[data-route="home"] .product-stage .mock-stat { padding: 10px; }
  #main-content[data-route="home"] .product-stage .mock-stat b { font-size: 20px; }
  #main-content[data-route="home"] .mock-dashboard-grid .mock-panel:last-child { display: none; }
  #main-content[data-route="home"] .platform-actions { align-items: stretch; }
  #main-content[data-route="home"] .workflow-path { padding: 28px 24px; border-radius: 16px; }
  #main-content[data-route="home"] .workflow-path h3 { font-size: 29px; }
  #main-content[data-route="home"] .final-cta { padding: 38px 24px; border-radius: 16px; }
}

.site-footer { color: rgba(255, 255, 255, 0.64); background: #050b13; border-top-color: rgba(255, 255, 255, 0.12); }
.site-footer strong, .site-footer .brand-display, .site-footer button { color: #ffffff; }
.site-footer button:hover { color: #78a9ff; }
.footer-grid, .footer-bottom { color: rgba(255, 255, 255, 0.64); }
.footer-bottom { border-top-color: rgba(255, 255, 255, 0.12); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-settle {
  from { opacity: 0.72; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (max-width: 850px) {
  .site-header { background: #fbfbf8; }
  .primary-nav { background: #fbfbf8; border-color: var(--hairline); }
  .primary-nav button { color: var(--text-body); }
  .primary-nav button::after { right: 16px; left: 16px; }
  .hero-scrim { background: linear-gradient(90deg, rgba(4, 10, 18, 0.96), rgba(4, 10, 18, 0.46)), linear-gradient(0deg, rgba(4, 10, 18, 0.94), transparent 56%); }
  .page-hero { background-size: 52px 52px; }
  .field-story { grid-template-columns: 1fr; }
  .field-story-media { min-height: 0; aspect-ratio: 3 / 2; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 68px; }
  .hero-cinematic { min-height: 720px; }
  .hero-cinematic h1 { font-size: clamp(3.25rem, 15vw, 4.5rem); }
  .page-hero { padding-block: 5rem; }
  .page-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .trust-item { padding-block: 12px; }
  .button { width: 100%; }
  .header-actions .button { width: auto; }
  .field-story { margin-top: 3.5rem; }
  .field-story-media::after { inset: 10px; }
  .field-coordinate { top: 20px; left: 20px; }
  .field-story figcaption { padding: 28px 24px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media { animation: none; transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .field-story-media img, .text-link { transition: none; }
  .field-story:hover .field-story-media img, .text-link:hover { transform: none; }
}

@media (forced-colors: active) {
  .hero-scrim { background: Canvas; opacity: 0.92; }
  .primary-nav button::after, .page-hero::after { background: Highlight; }
}

/* ── E-signature capture and signature blocks ─────────────── */
.esign-method-tabs { display: flex; gap: 8px; margin: 16px 0 10px; }
.esign-pad-wrap { display: grid; gap: 6px; justify-items: end; }
.esign-pad { width: 100%; height: 150px; background: #fff; border: 1px dashed var(--line); border-radius: 8px; touch-action: none; cursor: crosshair; }
.esign-typed-preview { display: block; margin-top: 8px; padding: 10px 14px; font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 26px; color: var(--navy); background: #fff; border: 1px dashed var(--line); border-radius: 8px; }
.esign-consent { display: flex; gap: 8px; align-items: flex-start; margin: 14px 0 0; font-size: 12px; color: var(--muted); }
.esign-consent input { margin-top: 2px; }
.esign-error { margin: 10px 0 0; padding: 8px 12px; font-size: 12px; color: var(--red); background: var(--red-pale); border: 1px solid var(--red); }
.signature-chip { padding: 3px 8px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 999px; white-space: nowrap; }
.signature-chip.ok { color: #0c6b46; background: #dff5e9; }
.signature-chip.warn { color: var(--red); background: var(--red-pale); }
.signature-blocks { margin-top: 28px; padding-top: 14px; border-top: 2px solid var(--line); }
.signature-block { display: grid; grid-template-columns: 190px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); page-break-inside: avoid; break-inside: avoid; }
.signature-visual { display: flex; align-items: center; min-height: 44px; }
.signature-ink { max-width: 180px; max-height: 60px; }
.signature-script { font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 24px; color: var(--navy); }
.signature-block-meta { font-size: 12px; color: var(--muted); }
.signature-block-meta strong { display: block; color: var(--navy); font-size: 13px; }
.signature-block-meta span { display: block; }
.signature-hash { font-family: var(--mono); font-size: 10px; word-break: break-all; }
.signature-block-disclaimer { grid-column: 1 / -1; font-size: 10px; color: var(--muted); }
@media (max-width: 620px) { .signature-block { grid-template-columns: 1fr; } }

/* ── Operational-futurism homepage ───────────────────────────────────────── */
#main-content[data-route="home"] {
  --ops-night: #050b14;
  --ops-night-raised: #0a1524;
  --ops-panel: #0d1a2b;
  --ops-ink: #07111f;
  --ops-muted: #607083;
  --ops-line: rgba(144, 177, 214, 0.22);
  --ops-line-bright: rgba(120, 174, 255, 0.48);
  --ops-blue: #3d7fff;
  --ops-blue-bright: #72a4ff;
  --ops-aqua: #55e4d0;
  --ops-lime: #b8ef75;
  --ops-amber: #ffce67;
  --ops-red: #ff8b8b;
  background: #f4f7f9;
}

#main-content[data-route="home"] .ops-home {
  overflow: clip;
  color: var(--ops-ink);
  background: #f4f7f9;
}

#main-content[data-route="home"] .ops-hero {
  position: relative;
  isolation: isolate;
  min-height: min(880px, calc(100svh - 72px));
  overflow: hidden;
  color: #f4f8ff;
  background:
    radial-gradient(circle at 78% 30%, rgba(61, 127, 255, 0.16), transparent 27rem),
    linear-gradient(135deg, #050b14 0%, #07111e 58%, #081827 100%);
  border-bottom: 1px solid rgba(120, 174, 255, 0.28);
}

#main-content[data-route="home"] .ops-hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent 4%, var(--ops-blue) 34%, var(--ops-aqua) 66%, transparent 96%);
  box-shadow: 0 0 34px rgba(85, 228, 208, 0.34);
}

#main-content[data-route="home"] .ops-hero-media {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 auto;
  width: min(58%, 980px);
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
  filter: saturate(0.55) contrast(1.18);
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.42) 22%, #000 62%);
  -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.42) 22%, #000 62%);
}

#main-content[data-route="home"] .ops-hero-gridlines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(120, 174, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 174, 255, 0.11) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72) 56%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72) 56%, transparent);
}

#main-content[data-route="home"] .ops-hero-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding-block: clamp(74px, 9vw, 120px) 56px;
}

#main-content[data-route="home"] .ops-hero-copy {
  position: relative;
  z-index: 1;
}

#main-content[data-route="home"] .ops-system-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  padding: 8px 10px;
  color: #b5c7df;
  background: rgba(9, 20, 34, 0.72);
  border: 1px solid var(--ops-line);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

#main-content[data-route="home"] .ops-system-label i,
#main-content[data-route="home"] .ops-console-top i,
#main-content[data-route="home"] .ops-console-foot i {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--ops-aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 228, 208, 0.1), 0 0 16px rgba(85, 228, 208, 0.5);
}

#main-content[data-route="home"] .ops-system-label b {
  margin-left: 3px;
  padding-left: 10px;
  color: var(--ops-blue-bright);
  border-left: 1px solid var(--ops-line);
  font-weight: 600;
}

#main-content[data-route="home"] .ops-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--ops-aqua);
}

#main-content[data-route="home"] .ops-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #f6f9ff;
  font-family: var(--display);
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

#main-content[data-route="home"] .ops-hero h1 em {
  color: var(--ops-blue-bright);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

#main-content[data-route="home"] .ops-hero-copy > p {
  max-width: 650px;
  margin: 30px 0 34px;
  color: #b9c7da;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

#main-content[data-route="home"] .ops-hero .button {
  border-radius: 4px;
}

#main-content[data-route="home"] .ops-hero .button-primary {
  color: #07101d;
  background: var(--ops-aqua);
  border-color: var(--ops-aqua);
}

#main-content[data-route="home"] .ops-hero .button-primary:hover {
  background: #8bf0e2;
  border-color: #8bf0e2;
}

#main-content[data-route="home"] .ops-hero .button-secondary {
  color: #e5edfa;
  background: rgba(8, 20, 34, 0.6);
  border-color: rgba(181, 199, 223, 0.38);
}

#main-content[data-route="home"] .ops-value-loop {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--ops-line);
  border: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-value-loop > div {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 10px;
  padding: 16px;
  background: rgba(5, 13, 23, 0.9);
}

#main-content[data-route="home"] .ops-value-loop span {
  grid-row: 1 / 3;
  color: var(--ops-aqua);
  font-family: var(--mono);
  font-size: 10px;
}

#main-content[data-route="home"] .ops-value-loop strong {
  color: #f3f7fd;
  font-size: 15px;
  line-height: 1.2;
}

#main-content[data-route="home"] .ops-value-loop small {
  margin-top: 4px;
  color: #8497af;
  font-size: 10px;
  line-height: 1.35;
}

#main-content[data-route="home"] .ops-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #e9f0fb;
  background: rgba(8, 18, 31, 0.9);
  border: 1px solid rgba(120, 174, 255, 0.36);
  border-radius: 18px;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 0 60px rgba(61, 127, 255, 0.1);
}

#main-content[data-route="home"] .ops-console::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(85, 228, 208, 0.07) 49%, transparent 52%);
  background-size: 100% 180px;
  animation: ops-scan 8s linear infinite;
}

#main-content[data-route="home"] .ops-console-top,
#main-content[data-route="home"] .ops-console-foot {
  position: relative;
  z-index: 1;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  color: #9db0c9;
  border-bottom: 1px solid var(--ops-line);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

#main-content[data-route="home"] .ops-console-top > div,
#main-content[data-route="home"] .ops-console-foot > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

#main-content[data-route="home"] .ops-console-top small {
  padding-left: 9px;
  color: #6f839d;
  border-left: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-motion-toggle {
  position: relative;
  z-index: 2;
  padding: 5px 8px;
  color: #8da3bd;
  background: transparent;
  border: 1px solid var(--ops-line);
  border-radius: 3px;
  font-family: inherit;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#main-content[data-route="home"] .ops-motion-toggle:hover {
  color: #fff;
  border-color: var(--ops-line-bright);
}

#main-content[data-route="home"] .ops-console-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  background: rgba(3, 9, 17, 0.52);
  border-bottom: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-console-tabs button {
  min-height: 38px;
  color: #7f93aa;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

#main-content[data-route="home"] .ops-console-tabs button:hover {
  color: #dbe7f7;
}

#main-content[data-route="home"] .ops-console-tabs button[aria-selected="true"] {
  color: var(--ops-aqua);
  background: rgba(85, 228, 208, 0.06);
  border-bottom-color: var(--ops-aqua);
}

#main-content[data-route="home"] .ops-console-body {
  position: relative;
  z-index: 1;
  min-height: 394px;
  padding: 24px;
}

#main-content[data-route="home"] .ops-console-summary {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: end;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-console-summary span,
#main-content[data-route="home"] .ops-console-summary small {
  display: block;
  color: #7d92ab;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#main-content[data-route="home"] .ops-console-summary strong {
  display: block;
  margin-block: 8px 4px;
  color: #fff;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1;
  letter-spacing: -0.04em;
}

#main-content[data-route="home"] .ops-console-summary p {
  margin: 0;
  color: #9aadc4;
  font-size: 12px;
  line-height: 1.55;
}

#main-content[data-route="home"] .ops-console-list {
  display: grid;
}

#main-content[data-route="home"] .ops-console-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-block: 16px;
  border-bottom: 1px solid rgba(144, 177, 214, 0.13);
}

#main-content[data-route="home"] .ops-console-row > div {
  min-width: 0;
}

#main-content[data-route="home"] .ops-console-row strong,
#main-content[data-route="home"] .ops-console-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#main-content[data-route="home"] .ops-console-row strong {
  color: #e8eff9;
  font-size: 12px;
}

#main-content[data-route="home"] .ops-console-row small {
  margin-top: 3px;
  color: #71869f;
  font-size: 9px;
}

#main-content[data-route="home"] .ops-console-row small i {
  color: var(--ops-blue-bright);
  font-style: normal;
}

#main-content[data-route="home"] .ops-console-row > b {
  color: #9fb2c9;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

#main-content[data-route="home"] .ops-severity,
#main-content[data-route="home"] .ops-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

#main-content[data-route="home"] .ops-severity-critical,
#main-content[data-route="home"] .ops-severity-overdue,
#main-content[data-route="home"] .ops-status-gap { color: var(--ops-red); }
#main-content[data-route="home"] .ops-severity-high,
#main-content[data-route="home"] .ops-severity-due-today,
#main-content[data-route="home"] .ops-status-review { color: var(--ops-amber); }
#main-content[data-route="home"] .ops-severity-ready,
#main-content[data-route="home"] .ops-severity-complete,
#main-content[data-route="home"] .ops-status-covered { color: var(--ops-aqua); }

#main-content[data-route="home"] .ops-console-foot {
  min-height: 44px;
  border-top: 1px solid var(--ops-line);
  border-bottom: 0;
}

#main-content[data-route="home"] .ops-console-foot b {
  color: var(--ops-blue-bright);
  font-weight: 600;
}

#main-content[data-route="home"] .ops-hero-foot {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #70859f;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#main-content[data-route="home"] .ops-hero-foot a {
  color: #b8c9df;
  text-decoration: none;
}

#main-content[data-route="home"] .ops-hero-foot a:hover {
  color: var(--ops-aqua);
}

#main-content[data-route="home"] .ops-section {
  position: relative;
  padding-block: clamp(82px, 10vw, 144px);
}

#main-content[data-route="home"] .ops-section-head {
  max-width: none;
  display: grid;
  grid-template-columns: 160px minmax(0, 1.6fr) minmax(240px, 0.65fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  margin-bottom: 56px;
}

#main-content[data-route="home"] .section-index {
  color: #718093;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

#main-content[data-route="home"] .ops-section-head .eyebrow,
#main-content[data-route="home"] .ops-proof-copy .eyebrow {
  margin-bottom: 16px;
}

#main-content[data-route="home"] .ops-section-head h2,
#main-content[data-route="home"] .ops-proof-copy h2,
#main-content[data-route="home"] .ops-final h2 {
  margin: 0;
  color: var(--ops-ink);
  font-family: var(--display);
  font-size: clamp(37px, 4.4vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

#main-content[data-route="home"] .ops-section-head > p {
  margin: 33px 0 0;
  color: var(--ops-muted);
  font-size: 14px;
  line-height: 1.7;
}

#main-content[data-route="home"] .ops-outcomes {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    #f4f7f9;
  background-size: calc((100% - max(48px, (100% - 1240px))) / 12) 100%;
}

#main-content[data-route="home"] .ops-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #cfd8e2;
}

#main-content[data-route="home"] .ops-outcome-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid #cfd8e2;
}

#main-content[data-route="home"] .ops-outcome-grid article:first-child {
  border-left: 1px solid #cfd8e2;
}

#main-content[data-route="home"] .ops-outcome-grid span {
  color: #376fd1;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

#main-content[data-route="home"] .ops-outcome-grid strong {
  max-width: 330px;
  margin-top: auto;
  color: #0b1828;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.17;
  letter-spacing: -0.025em;
}

#main-content[data-route="home"] .ops-outcome-grid p {
  margin: 15px 0 0;
  color: var(--ops-muted);
  font-size: 13px;
}

#main-content[data-route="home"] .ops-graph-section,
#main-content[data-route="home"] .ops-workflow-lab {
  color: #e8eff9;
  background:
    radial-gradient(circle at 50% 42%, rgba(61, 127, 255, 0.12), transparent 34rem),
    var(--ops-night);
  border-block: 1px solid rgba(120, 174, 255, 0.2);
}

#main-content[data-route="home"] .ops-section-head-light h2 {
  color: #f1f6fe;
}

#main-content[data-route="home"] .ops-section-head-light > p {
  color: #8fa3bc;
}

#main-content[data-route="home"] .ops-section-head-light .section-index {
  color: #7087a2;
}

#main-content[data-route="home"] .ops-graph-shell {
  min-height: 610px;
  display: grid;
  grid-template-columns: 230px minmax(330px, 1fr) minmax(310px, 0.9fr);
  border: 1px solid var(--ops-line);
  border-radius: 14px;
  background: rgba(8, 18, 31, 0.7);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

#main-content[data-route="home"] .ops-object-tabs {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-right: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-object-tabs button {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  color: #8398b2;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(144, 177, 214, 0.12);
  text-align: left;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#main-content[data-route="home"] .ops-object-tabs button:hover {
  color: #fff;
  background: rgba(61, 127, 255, 0.06);
}

#main-content[data-route="home"] .ops-object-tabs button[aria-selected="true"] {
  color: var(--ops-aqua);
  background: rgba(85, 228, 208, 0.07);
  box-shadow: inset 2px 0 var(--ops-aqua);
}

#main-content[data-route="home"] .ops-object-tabs i {
  font-style: normal;
}

#main-content[data-route="home"] .ops-graph-visual {
  position: relative;
  min-height: 520px;
  align-self: center;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#main-content[data-route="home"] .ops-graph-visual::before,
#main-content[data-route="home"] .ops-graph-visual::after {
  position: absolute;
  content: "";
  background: rgba(120, 174, 255, 0.32);
}

#main-content[data-route="home"] .ops-graph-visual::before {
  width: 1px;
  height: 74%;
}

#main-content[data-route="home"] .ops-graph-visual::after {
  width: 74%;
  height: 1px;
}

#main-content[data-route="home"] .ops-graph-visual > strong {
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: #08101b;
  background: var(--ops-aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(85, 228, 208, 0.07), 0 0 50px rgba(85, 228, 208, 0.27);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

#main-content[data-route="home"] .ops-orbit {
  position: absolute;
  border: 1px solid rgba(120, 174, 255, 0.24);
  border-radius: 50%;
  animation: ops-orbit 24s linear infinite;
}

#main-content[data-route="home"] .ops-orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--ops-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(114, 164, 255, 0.8);
}

#main-content[data-route="home"] .ops-orbit-one {
  width: 260px;
  height: 260px;
}

#main-content[data-route="home"] .ops-orbit-two {
  width: 400px;
  height: 400px;
  animation-direction: reverse;
  animation-duration: 36s;
}

#main-content[data-route="home"] .ops-node {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  color: #aebed3;
  background: #0a1626;
  border: 1px solid var(--ops-line-bright);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

#main-content[data-route="home"] .ops-node-policy { top: 14%; left: 43%; }
#main-content[data-route="home"] .ops-node-owner { top: 48%; left: 5%; }
#main-content[data-route="home"] .ops-node-action { right: 6%; bottom: 43%; }
#main-content[data-route="home"] .ops-node-evidence { right: 37%; bottom: 11%; }

#main-content[data-route="home"] .ops-object-panel {
  align-self: stretch;
  padding: clamp(30px, 4vw, 48px);
  background: rgba(13, 26, 43, 0.82);
  border-left: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-object-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ops-blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

#main-content[data-route="home"] .ops-object-panel h3 {
  margin: 42px 0 12px;
  color: #f1f6fd;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

#main-content[data-route="home"] .ops-object-panel > p {
  margin: 0;
  color: #91a4bc;
  font-size: 13px;
  line-height: 1.65;
}

#main-content[data-route="home"] .ops-object-facts {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-object-facts > div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-object-facts dt {
  color: #687e99;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#main-content[data-route="home"] .ops-object-facts dd {
  margin: 0;
  color: #d8e4f3;
  font-size: 11px;
  text-align: right;
}

#main-content[data-route="home"] .ops-platform {
  background: #edf2f5;
}

#main-content[data-route="home"] .ops-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cbd6e1;
  border: 1px solid #cbd6e1;
}

#main-content[data-route="home"] .ops-capability-grid article {
  min-height: 300px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0 20px;
  padding: 34px;
  background: #f8fafb;
  transition: background 180ms ease, transform 180ms ease;
}

#main-content[data-route="home"] .ops-capability-grid article:hover {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.08);
  transform: translateY(-2px);
}

#main-content[data-route="home"] .ops-capability-grid article > span {
  grid-row: 1 / 3;
  color: #6e7c8d;
  font-family: var(--mono);
  font-size: 10px;
}

#main-content[data-route="home"] .ops-capability-grid small {
  display: block;
  color: #3e72cf;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

#main-content[data-route="home"] .ops-capability-grid h3 {
  margin: 16px 0 10px;
  color: #091525;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

#main-content[data-route="home"] .ops-capability-grid p {
  max-width: 470px;
  margin: 0;
  color: #607083;
  font-size: 13px;
}

#main-content[data-route="home"] .ops-capability-grid button {
  width: fit-content;
  align-self: end;
  margin-top: 34px;
  padding: 0 0 5px;
  color: #174fbc;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 79, 188, 0.35);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#main-content[data-route="home"] .ops-capability-grid button:hover {
  color: #07111f;
  border-bottom-color: currentColor;
}

#main-content[data-route="home"] .ops-workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ops-line);
  border-bottom: 0;
}

#main-content[data-route="home"] .ops-workflow-tabs button {
  min-height: 62px;
  color: #8094ad;
  background: rgba(8, 18, 31, 0.65);
  border: 0;
  border-right: 1px solid var(--ops-line);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

#main-content[data-route="home"] .ops-workflow-tabs button:last-child {
  border-right: 0;
}

#main-content[data-route="home"] .ops-workflow-tabs button:hover {
  color: #fff;
}

#main-content[data-route="home"] .ops-workflow-tabs button[aria-selected="true"] {
  color: var(--ops-aqua);
  background: rgba(85, 228, 208, 0.07);
  box-shadow: inset 0 -2px var(--ops-aqua);
}

#main-content[data-route="home"] .ops-workflow-stage {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 70px;
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  background: rgba(8, 18, 31, 0.72);
  border: 1px solid var(--ops-line);
}

#main-content[data-route="home"] .ops-workflow-copy h3 {
  margin: 0 0 16px;
  color: #f1f6fd;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

#main-content[data-route="home"] .ops-workflow-copy > p {
  margin: 0;
  color: #91a4bc;
  font-size: 14px;
}

#main-content[data-route="home"] .ops-evidence-output {
  display: grid;
  gap: 8px;
  margin-top: 36px;
  padding: 18px;
  background: rgba(61, 127, 255, 0.07);
  border-left: 2px solid var(--ops-blue);
}

#main-content[data-route="home"] .ops-evidence-output span {
  color: var(--ops-blue-bright);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#main-content[data-route="home"] .ops-evidence-output strong {
  color: #dbe7f5;
  font-size: 12px;
}

#main-content[data-route="home"] .ops-workflow-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#main-content[data-route="home"] .ops-workflow-steps::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 18px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--ops-blue), var(--ops-aqua));
}

#main-content[data-route="home"] .ops-workflow-steps li {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  color: #cad7e7;
  border-bottom: 1px solid rgba(144, 177, 214, 0.13);
}

#main-content[data-route="home"] .ops-workflow-steps span {
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #0a1421;
  background: var(--ops-blue-bright);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

#main-content[data-route="home"] .ops-workflow-steps strong {
  font-size: 13px;
  font-weight: 600;
}

#main-content[data-route="home"] .ops-workflow-steps i {
  width: 7px;
  height: 7px;
  background: var(--ops-aqua);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(85, 228, 208, 0.7);
}

#main-content[data-route="home"] .ops-workflow-action {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  color: #748aa5;
  background: rgba(3, 9, 17, 0.7);
  border: 1px solid var(--ops-line);
  border-top: 0;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#main-content[data-route="home"] .ops-proof {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    #f7f9fa;
  background-size: 90px 100%;
}

#main-content[data-route="home"] .ops-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

#main-content[data-route="home"] .ops-proof-copy .section-index {
  display: block;
  margin-bottom: 42px;
}

#main-content[data-route="home"] .ops-proof-copy > p {
  max-width: 560px;
  margin: 22px 0 32px;
  color: var(--ops-muted);
  font-size: 15px;
}

#main-content[data-route="home"] .ops-proof-copy .button-secondary {
  color: #102039;
  border-color: #91a1b2;
}

#main-content[data-route="home"] .ops-proof-stack {
  display: grid;
  gap: 10px;
}

#main-content[data-route="home"] .ops-proof-stack article {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 22px 32px;
  background: #fff;
  border: 1px solid #d5dee7;
  box-shadow: 0 8px 28px rgba(7, 17, 31, 0.045);
}

#main-content[data-route="home"] .ops-proof-stack article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--ops-blue);
}

#main-content[data-route="home"] .ops-proof-stack span,
#main-content[data-route="home"] .ops-proof-stack small {
  display: block;
}

#main-content[data-route="home"] .ops-proof-stack span {
  color: #55708f;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#main-content[data-route="home"] .ops-proof-stack strong {
  display: block;
  margin: 8px 0 4px;
  color: #0d1928;
  font-size: 15px;
}

#main-content[data-route="home"] .ops-proof-stack small {
  color: #708094;
  font-size: 10px;
}

#main-content[data-route="home"] .ops-proof-stack small i {
  color: #4174d2;
  font-style: normal;
}

#main-content[data-route="home"] .ops-proof-stack article > b {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: #245dbf;
  background: #edf4ff;
  border: 1px solid #bcd1f4;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

#main-content[data-route="home"] .ops-final {
  padding-block: 34px;
  color: #eef5ff;
  background: var(--ops-night);
}

#main-content[data-route="home"] .ops-final-panel {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 70px;
  align-items: end;
  padding: clamp(42px, 7vw, 88px);
  background:
    radial-gradient(circle at 90% 0%, rgba(85, 228, 208, 0.15), transparent 25rem),
    linear-gradient(135deg, #0b1a2d, #07111e);
  border: 1px solid var(--ops-line-bright);
}

#main-content[data-route="home"] .ops-final h2 {
  max-width: 800px;
  margin-top: 28px;
  color: #f5f8fe;
}

#main-content[data-route="home"] .ops-final p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #94a8c1;
  font-size: 15px;
}

#main-content[data-route="home"] .ops-final .cta-actions {
  display: grid;
  gap: 10px;
}

#main-content[data-route="home"] .ops-final .button {
  width: 100%;
  color: #eaf2fd;
  border-color: rgba(181, 199, 223, 0.4);
}

#main-content[data-route="home"] .ops-final .button-primary {
  color: #08111c;
  background: var(--ops-aqua);
  border-color: var(--ops-aqua);
}

@keyframes ops-scan {
  from { background-position: 0 -180px; }
  to { background-position: 0 540px; }
}

@keyframes ops-orbit {
  to { transform: rotate(360deg); }
}

.motion-paused #main-content[data-route="home"] *,
.motion-paused #main-content[data-route="home"] *::before,
.motion-paused #main-content[data-route="home"] *::after {
  animation-play-state: paused !important;
}

@media (max-width: 1080px) {
  #main-content[data-route="home"] .ops-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  #main-content[data-route="home"] .ops-hero-copy {
    max-width: 820px;
  }

  #main-content[data-route="home"] .ops-console {
    max-width: 800px;
  }

  #main-content[data-route="home"] .ops-section-head {
    grid-template-columns: 130px 1fr;
  }

  #main-content[data-route="home"] .ops-section-head > p {
    grid-column: 2;
    margin-top: -18px;
  }

  #main-content[data-route="home"] .ops-graph-shell {
    grid-template-columns: 210px 1fr;
  }

  #main-content[data-route="home"] .ops-object-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--ops-line);
    border-left: 0;
  }

  #main-content[data-route="home"] .ops-object-facts {
    grid-template-columns: repeat(5, 1fr);
  }

  #main-content[data-route="home"] .ops-object-facts > div {
    grid-template-columns: 1fr;
    padding-inline: 12px;
    border-right: 1px solid var(--ops-line);
  }

  #main-content[data-route="home"] .ops-object-facts > div:first-child {
    padding-left: 0;
  }

  #main-content[data-route="home"] .ops-object-facts dd {
    text-align: left;
  }
}

@media (max-width: 780px) {
  #main-content[data-route="home"] .ops-hero {
    min-height: 0;
  }

  #main-content[data-route="home"] .ops-hero-grid {
    min-height: 0;
    padding-block: 58px 44px;
  }

  #main-content[data-route="home"] .ops-hero h1 {
    font-size: clamp(49px, 13vw, 70px);
  }

  #main-content[data-route="home"] .ops-value-loop,
  #main-content[data-route="home"] .ops-outcome-grid,
  #main-content[data-route="home"] .ops-capability-grid,
  #main-content[data-route="home"] .ops-proof-grid,
  #main-content[data-route="home"] .ops-final-panel {
    grid-template-columns: 1fr;
  }

  #main-content[data-route="home"] .ops-value-loop > div {
    min-height: 74px;
  }

  #main-content[data-route="home"] .ops-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #main-content[data-route="home"] .ops-section-head > p {
    grid-column: auto;
    margin-top: 0;
  }

  #main-content[data-route="home"] .ops-outcome-grid article,
  #main-content[data-route="home"] .ops-outcome-grid article:first-child {
    min-height: 230px;
    border-right: 1px solid #cfd8e2;
    border-bottom: 1px solid #cfd8e2;
    border-left: 1px solid #cfd8e2;
  }

  #main-content[data-route="home"] .ops-graph-shell {
    grid-template-columns: 1fr;
  }

  #main-content[data-route="home"] .ops-object-tabs {
    max-height: 190px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ops-line);
  }

  #main-content[data-route="home"] .ops-object-tabs button {
    min-height: 52px;
    border-right: 1px solid rgba(144, 177, 214, 0.12);
  }

  #main-content[data-route="home"] .ops-object-tabs button[aria-selected="true"] {
    box-shadow: inset 0 -2px var(--ops-aqua);
  }

  #main-content[data-route="home"] .ops-graph-visual {
    min-height: 430px;
  }

  #main-content[data-route="home"] .ops-object-panel {
    grid-column: auto;
  }

  #main-content[data-route="home"] .ops-object-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  #main-content[data-route="home"] .ops-capability-grid article {
    min-height: 260px;
  }

  #main-content[data-route="home"] .ops-workflow-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  #main-content[data-route="home"] .ops-workflow-tabs button:nth-child(2) {
    border-right: 0;
  }

  #main-content[data-route="home"] .ops-workflow-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ops-line);
  }

  #main-content[data-route="home"] .ops-workflow-stage {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  #main-content[data-route="home"] .ops-proof-grid {
    gap: 48px;
  }

  #main-content[data-route="home"] .ops-final-panel {
    min-height: 0;
    align-items: start;
  }
}

@media (max-width: 560px) {
  #main-content[data-route="home"] .ops-hero-grid {
    padding-top: 44px;
  }

  #main-content[data-route="home"] .ops-system-label {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  #main-content[data-route="home"] .ops-hero h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  #main-content[data-route="home"] .ops-hero-copy > p {
    font-size: 16px;
  }

  #main-content[data-route="home"] .ops-value-loop {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  #main-content[data-route="home"] .ops-console {
    margin-inline: -12px;
    border-radius: 10px;
  }

  #main-content[data-route="home"] .ops-console-top small,
  #main-content[data-route="home"] .ops-console-row > b {
    display: none;
  }

  #main-content[data-route="home"] .ops-console-body {
    min-height: 0;
    padding: 18px;
  }

  #main-content[data-route="home"] .ops-console-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #main-content[data-route="home"] .ops-console-row {
    grid-template-columns: 67px minmax(0, 1fr);
  }

  #main-content[data-route="home"] .ops-hero-foot {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  #main-content[data-route="home"] .ops-section {
    padding-block: 76px;
  }

  #main-content[data-route="home"] .ops-section-head h2,
  #main-content[data-route="home"] .ops-proof-copy h2,
  #main-content[data-route="home"] .ops-final h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  #main-content[data-route="home"] .ops-outcome-grid article {
    padding: 26px;
  }

  #main-content[data-route="home"] .ops-object-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  #main-content[data-route="home"] .ops-graph-visual {
    min-height: 350px;
  }

  #main-content[data-route="home"] .ops-orbit-one {
    width: 200px;
    height: 200px;
  }

  #main-content[data-route="home"] .ops-orbit-two {
    width: 300px;
    height: 300px;
  }

  #main-content[data-route="home"] .ops-node-policy { top: 9%; left: 35%; }
  #main-content[data-route="home"] .ops-node-owner { top: 45%; left: 2%; }
  #main-content[data-route="home"] .ops-node-action { right: 1%; bottom: 42%; }
  #main-content[data-route="home"] .ops-node-evidence { right: 28%; bottom: 8%; }

  #main-content[data-route="home"] .ops-object-panel {
    padding: 28px 22px;
  }

  #main-content[data-route="home"] .ops-object-facts {
    grid-template-columns: 1fr;
  }

  #main-content[data-route="home"] .ops-capability-grid article {
    grid-template-columns: 34px 1fr;
    padding: 26px 22px;
  }

  #main-content[data-route="home"] .ops-workflow-stage {
    padding: 30px 22px;
  }

  #main-content[data-route="home"] .ops-workflow-action {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  #main-content[data-route="home"] .ops-proof-stack article {
    align-items: flex-start;
    flex-direction: column;
  }

  #main-content[data-route="home"] .ops-final-panel {
    gap: 40px;
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #main-content[data-route="home"] .ops-console::after,
  #main-content[data-route="home"] .ops-orbit {
    animation: none;
  }

  #main-content[data-route="home"] .ops-capability-grid article {
    transition: none;
  }
}

@media (forced-colors: active) {
  #main-content[data-route="home"] .ops-hero-media,
  #main-content[data-route="home"] .ops-hero-gridlines,
  #main-content[data-route="home"] .ops-graph-visual {
    display: none;
  }

  #main-content[data-route="home"] .ops-graph-shell {
    grid-template-columns: 1fr 2fr;
  }
}
