@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #0a0c0b;
  --bg-deep: #050706;
  --surface: #111411;
  --surface-2: #171b17;
  --paper: #eef0e9;
  --ink: #f2f4ed;
  --muted: #aeb4aa;
  --quiet: #777f76;
  --line: #2b312b;
  --line-strong: #424a41;
  --signal: #b9f227;
  --signal-dark: #1d2806;
  --brass: #d6ad65;
  --cyan: #76c9d5;
  --green: #72d49a;
  --yellow: #e2bb6c;
  --red: #e47e72;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 100% 48px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5,7,6,.91);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { color: var(--ink); text-decoration: none; font: 600 16px/1 'IBM Plex Mono', monospace; white-space: nowrap; }
.brand b { color: var(--signal); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #bdc3ba; text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--signal); }
.nav-cta, .button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--signal);
  border-radius: 2px;
  background: var(--signal);
  color: #0b1004 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button:hover, .nav-cta:hover { background: #d1ff5b; }
.button.secondary { color: var(--ink) !important; background: rgba(7,9,8,.48); border-color: rgba(255,255,255,.3); }
.button.secondary:hover { border-color: var(--signal); }
.button.small { min-height: 42px; padding: 0 16px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--signal);
  font: 600 12px/1.4 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; letter-spacing: 0; }
h1, h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
h1 { max-width: 980px; margin-bottom: 26px; font-size: 78px; line-height: .98; }
h2 { margin-bottom: 20px; font-size: 50px; line-height: 1.02; }
h3 { margin-bottom: 11px; font-size: 22px; line-height: 1.25; font-weight: 600; }
.lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.proof-line { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; color: #bdc3ba; font: 500 12px/1.5 'IBM Plex Mono', monospace; }
.proof-line span::before { content: "■"; margin-right: 8px; color: var(--signal); font-size: 8px; }

.hero { padding: 88px 0 72px; }
.hero-premium {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,6,.96) 0%, rgba(5,7,6,.82) 47%, rgba(5,7,6,.18) 78%), linear-gradient(0deg, rgba(5,7,6,.85), transparent 55%);
  z-index: 1;
}
.hero-premium > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: saturate(.72) contrast(1.08); }
.hero-premium .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 72px; }
.hero-copy { max-width: 800px; }
.hero-premium h1 { max-width: 780px; color: #f6f5ee; font-size: 84px; }
.hero-premium .lead { max-width: 650px; color: #d0d4cb; }
.hero-index { position: absolute; right: 32px; bottom: 26px; color: rgba(255,255,255,.7); font: 500 11px/1.4 'IBM Plex Mono', monospace; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 72px; align-items: end; }
.hero-panel { border-left: 1px solid var(--line-strong); padding-left: 30px; }
.hero-panel strong { display: block; margin-bottom: 10px; color: var(--brass); font: 600 12px/1.4 'IBM Plex Mono', monospace; }
.hero-panel p { margin: 0 0 23px; color: var(--muted); font-size: 15px; }
.hero-panel a { color: var(--signal); font-weight: 700; text-decoration: none; }

section { padding: 88px 0; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 72px; align-items: start; margin-bottom: 44px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.section-number { color: var(--brass); font: 500 12px/1 'IBM Plex Mono', monospace; }
.statement .wrap { max-width: 1040px; margin-left: max(32px, calc((100% - var(--max)) / 2)); }
.statement h2 { max-width: 1000px; font-size: 58px; line-height: 1.04; }
.statement p:last-child { max-width: 770px; color: var(--muted); font-size: 19px; }

.function-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); }
.function-card { min-height: 280px; padding: 34px 34px 30px 0; display: block; border-bottom: 1px solid var(--line); text-decoration: none; }
.function-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 34px; }
.function-card:nth-child(even) { padding-left: 34px; }
.function-card:hover h3 { color: var(--signal); }
.function-card > span, .function-card .num { display: block; margin-bottom: 48px; color: var(--brass); font: 500 12px/1.4 'IBM Plex Mono', monospace; }
.function-card h3 { font-family: 'Instrument Serif', Georgia, serif; font-size: 34px; font-weight: 400; }
.function-card p { margin: 0; color: var(--muted); }
.function-card > b, .function-card .example { display: block; margin-top: 22px; color: #d8dcd3; font: 500 13px/1.5 'IBM Plex Mono', monospace; }
.function-card > b::before,
.function-card .example::before { content: "→"; margin-right: 8px; color: var(--signal); }

.path-grid, .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path, .card { position: relative; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: 3px; background: var(--surface); text-decoration: none; }
.path:hover { border-color: var(--signal); transform: translateY(-2px); transition: .18s ease; }
.path-num { color: var(--brass); font: 600 11px/1 'IBM Plex Mono', monospace; }
.path h3 { margin-top: 48px; font-family: 'Instrument Serif', Georgia, serif; font-size: 32px; font-weight: 400; }
.path p, .card p { color: var(--muted); margin: 0; }
.path .more { display: block; margin-top: 25px; color: var(--signal); font-weight: 700; font-size: 14px; }

.before-after { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border: 1px solid var(--line); background: var(--surface); }
.before-after > div, .before-after > article { padding: 34px; }
.before-after > article + article { border-left: 1px solid var(--line); }
.before-after .arrow { display: grid; place-items: center; padding: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); color: var(--signal); font-size: 24px; }
.before-after > article > span, .before-after .label { color: var(--brass); font: 600 11px/1 'IBM Plex Mono', monospace; }
.before-after h3 { margin-top: 30px; font-family: 'Instrument Serif', Georgia, serif; font-size: 31px; font-weight: 400; }
.before-after ul { margin: 18px 0 0; padding: 0; list-style: none; color: var(--muted); }
.before-after li { margin: 8px 0; }

.case-list { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.case-feature { display: grid; grid-template-columns: 240px 1fr 190px; gap: 36px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.case-feature:hover h3 { color: var(--signal); }
.case-feature > span, .case-feature .case-type { color: var(--brass); font: 600 11px/1.5 'IBM Plex Mono', monospace; }
.case-feature h3 { margin: 0 0 12px; font-family: 'Instrument Serif', Georgia, serif; font-size: 34px; font-weight: 400; }
.case-feature p { margin: 0; color: var(--muted); }
.case-feature > b, .case-feature .case-proof { color: #d8dcd3; font: 500 12px/1.6 'IBM Plex Mono', monospace; }
.case-feature .case-proof b { display: block; color: var(--signal); }

.diagnostic-hero::before { background: linear-gradient(90deg, rgba(5,7,6,.97) 0%, rgba(5,7,6,.86) 52%, rgba(5,7,6,.25) 82%), linear-gradient(0deg, rgba(5,7,6,.88), transparent 62%); }
.diagnostic-map { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.diagnostic-map span { min-height: 92px; padding: 20px; display: flex; align-items: flex-end; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #d8dcd3; font: 500 12px/1.4 'IBM Plex Mono', monospace; }
.diagnostic-map span::before { content: ""; width: 7px; height: 7px; margin: 0 10px 5px 0; flex: 0 0 auto; background: var(--signal); }
.decision-ledger { border-top: 1px solid var(--line-strong); }
.decision-ledger article { display: grid; grid-template-columns: 180px minmax(250px, .7fr) 1fr; gap: 36px; padding: 30px 0; align-items: start; border-bottom: 1px solid var(--line); }
.decision-ledger article > b { color: var(--signal); font: 600 12px/1.5 'IBM Plex Mono', monospace; }
.decision-ledger h3, .decision-ledger p { margin: 0; }
.decision-ledger h3 { font-family: 'Instrument Serif', Georgia, serif; font-size: 29px; font-weight: 400; }
.decision-ledger p { color: var(--muted); }
.case-band { background: var(--paper); color: #151815; }
.case-band .eyebrow, .case-band .text-link { color: #466400; }
.case-snapshot { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 44px; align-items: start; }
.case-snapshot > div:first-child p:not(.eyebrow) { color: #525b51; }
.finding { padding-left: 24px; border-left: 1px solid #aeb5a9; }
.finding span { color: #66705f; font: 600 10px/1.4 'IBM Plex Mono', monospace; }
.finding strong { display: block; margin: 26px 0 12px; font-family: 'Instrument Serif', Georgia, serif; font-size: 32px; line-height: 1; font-weight: 400; }
.finding p { margin: 0; color: #525b51; font-size: 14px; }

.outcome-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); overflow: hidden; }
.outcome { min-height: 160px; padding: 26px; background: var(--surface); border-right: 1px solid var(--line); }
.outcome:last-child { border-right: 0; }
.outcome b { display: block; margin-bottom: 10px; color: var(--signal); font: 600 22px/1.2 'IBM Plex Mono', monospace; }
.outcome span { color: var(--muted); font-size: 14px; }
.evidence-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.evidence { padding: 32px; border: 1px solid var(--line); background: var(--surface); }
.evidence.primary { border-color: var(--line-strong); background: var(--surface-2); }
.evidence .status { color: var(--signal); font: 600 11px/1.4 'IBM Plex Mono', monospace; }
.evidence p { color: var(--muted); }
.text-link { color: var(--signal); font-weight: 700; text-decoration: none; }
.quote { margin: 20px 0 0; padding-left: 18px; border-left: 2px solid var(--brass); color: var(--ink) !important; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); overflow: hidden; }
.step { counter-increment: step; padding: 28px; background: var(--surface); border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 38px; color: var(--brass); font: 600 11px/1 'IBM Plex Mono', monospace; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; padding: 42px; border: 1px solid var(--signal); background: #10150b; }
.cta-band h2 { margin-bottom: 9px; font-size: 42px; }
.cta-band p { margin: 0; color: var(--muted); }
.site-footer { padding: 50px 0; border-top: 1px solid var(--line); color: var(--quiet); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; }

.page-hero { padding: 90px 0 66px; }
.page-hero h1 { max-width: 1020px; font-size: 72px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 76px; }
.prose { max-width: 780px; }
.prose p, .prose li { color: var(--muted); font-size: 18px; }
.report-kicker { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-bottom: 64px; padding: 14px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); color: var(--brass); font: 600 11px/1.4 'IBM Plex Mono', monospace; }
.report-hero { border-top: 0; }
.report-summary { background: var(--surface); }
.report-steps { grid-template-columns: repeat(4, 1fr); }
.print-report { font-family: inherit; }
.story-portrait { aspect-ratio: 1; width: 100%; object-fit: cover; border: 1px solid var(--line-strong); filter: saturate(.82) contrast(1.05); }
.story-layout { display: grid; grid-template-columns: 210px minmax(0, 780px); gap: 86px; align-items: start; }
.story-timeline { position: sticky; top: 110px; display: grid; border-top: 1px solid var(--line-strong); }
.story-timeline a { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; text-decoration: none; }
.story-timeline a:hover { color: var(--signal); }
.story-timeline span { color: var(--brass); font: 600 11px/1.6 'IBM Plex Mono', monospace; }
.story-opening { margin: 0 0 88px; color: var(--ink) !important; font-family: 'Instrument Serif', Georgia, serif; font-size: 36px !important; line-height: 1.2; }
.story-chapter { scroll-margin-top: 110px; padding-bottom: 78px; }
.story-chapter + .story-chapter { padding-top: 78px; border-top: 1px solid var(--line); }
.story-chapter h2 { max-width: 700px; }
.story-principle { margin: 0 0 88px; padding: 34px 0 34px 34px; border-left: 2px solid var(--signal); }
.story-principle p { margin: 0; color: var(--ink) !important; font-family: 'Instrument Serif', Georgia, serif; font-size: 38px !important; line-height: 1.15; }
.story-people { margin: 34px 0 !important; padding: 28px 32px 28px 52px !important; border: 1px solid var(--line); background: var(--surface); }
.story-method { counter-reset: story-step; margin: 34px 0 48px !important; padding: 0 !important; list-style: none; border-top: 1px solid var(--line-strong); }
.story-method li { counter-increment: story-step; display: grid; grid-template-columns: 70px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.story-method li::before { content: "0" counter(story-step); color: var(--signal); font: 600 11px/1.8 'IBM Plex Mono', monospace; }
.story-values { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 38px; border-top: 1px solid #aeb5a9; }
.story-values span { padding: 24px 24px 24px 0; border-bottom: 1px solid #c9cec4; color: #30372e; font-size: 18px; }
.story-values span:nth-child(odd) { border-right: 1px solid #c9cec4; }
.story-values span:nth-child(even) { padding-left: 24px; }
.prose h2 { margin-top: 60px; font-size: 42px; }
.prose h3 { margin-top: 32px; font-family: 'Instrument Serif', Georgia, serif; font-size: 29px; font-weight: 400; }
.prose a { color: var(--signal); }
.side-note { position: sticky; top: 108px; align-self: start; padding: 26px; border: 1px solid var(--line-strong); background: var(--surface); }
.side-note p { color: var(--muted); font-size: 15px; }
.service-list { display: grid; }
.service-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 28px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.service-row .tag { color: var(--brass); font: 600 11px/1.4 'IBM Plex Mono', monospace; }
.service-row p { margin: 0; color: var(--muted); }
.service-row a { color: var(--signal); text-decoration: none; font-weight: 700; }

.finder-toggle { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 56px; height: 56px; border: 1px solid var(--signal); border-radius: 50%; background: #11160d; color: var(--signal); font: 600 18px/1 'IBM Plex Mono', monospace; cursor: pointer; box-shadow: 0 14px 35px rgba(0,0,0,.45); }
.finder { position: fixed; right: 22px; bottom: 90px; z-index: 70; width: min(410px, calc(100vw - 32px)); padding: 26px; border: 1px solid var(--line-strong); background: #111411; box-shadow: 0 24px 80px rgba(0,0,0,.65); }
.finder[hidden] { display: none; }
.finder-close { position: absolute; top: 13px; right: 13px; width: 32px; height: 32px; border: 0; background: transparent; color: var(--muted); font-size: 22px; cursor: pointer; }
.finder-face { width: 42px; height: 42px; margin-bottom: 17px; border: 1px solid var(--signal); border-radius: 50%; display: grid; place-items: center; color: var(--signal); font: 600 11px/1 'IBM Plex Mono', monospace; }
.finder h2 { margin-bottom: 8px; font-size: 29px; }
.finder p { margin: 0 0 17px; color: var(--muted); font-size: 14px; }
.finder-options { display: grid; gap: 8px; }
.finder-options a { padding: 13px 14px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; }
.finder-options a:hover { border-color: var(--signal); }
.form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
input, textarea, select { width: 100%; padding: 14px 15px; border: 1px solid var(--line-strong); border-radius: 1px; background: var(--bg-deep); color: var(--ink); font: inherit; }
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(185,242,39,.2); border-color: var(--signal); }
.fine { color: var(--quiet); font-size: 12px; }
.mobile-nav, .mobile-nav-panel { display: none; }

@media (max-width: 900px) {
  .wrap { width: min(var(--max), calc(100% - 40px)); }
  .nav-links { display: none; }
  .mobile-nav { width: 40px; height: 40px; display: inline-grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 2px; background: var(--surface); color: var(--ink); font-size: 20px; cursor: pointer; }
  .mobile-nav-panel { position: fixed; top: 76px; right: 20px; left: 20px; z-index: 59; padding: 12px; border: 1px solid var(--line-strong); background: var(--bg-deep); box-shadow: 0 25px 70px rgba(0,0,0,.65); }
  .mobile-nav-panel:not([hidden]) { display: grid; }
  .mobile-nav-panel a { padding: 14px 12px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 600; }
  .mobile-nav-panel a:last-child { border-bottom: 0; }
  h1, .hero-premium h1 { font-size: 60px; }
  h2 { font-size: 43px; }
  .hero-premium { min-height: 680px; }
  .hero-premium::before { background: linear-gradient(90deg, rgba(5,7,6,.96), rgba(5,7,6,.72)), linear-gradient(0deg, rgba(5,7,6,.8), transparent); }
  .hero-grid, .section-head, .content-grid, .evidence-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-panel { border-left: 0; border-top: 1px solid var(--line); padding: 26px 0 0; }
  .path-grid, .card-grid { grid-template-columns: 1fr; }
  .outcome-strip, .steps { grid-template-columns: 1fr 1fr; }
  .outcome:nth-child(2), .step:nth-child(2) { border-right: 0; }
  .outcome:nth-child(-n+2), .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .case-feature { grid-template-columns: 150px 1fr; }
  .case-feature > b, .case-feature .case-proof { grid-column: 2; }
  .side-note { position: static; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .diagnostic-map { grid-template-columns: repeat(2, 1fr); }
  .decision-ledger article { grid-template-columns: 130px 1fr; }
  .decision-ledger article p { grid-column: 2; }
  .case-snapshot { grid-template-columns: 1fr; }
  .finding { padding: 24px 0 0; border-left: 0; border-top: 1px solid #aeb5a9; }
  .story-layout { grid-template-columns: 1fr; gap: 60px; }
  .story-timeline { position: static; grid-template-columns: repeat(4, 1fr); }
  .story-timeline a { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap { width: calc(100% - 28px); }
  .nav { min-height: 64px; }
  .mobile-nav-panel { top: 64px; right: 14px; left: 14px; }
  .nav-cta { min-height: 40px; padding: 0 13px; font-size: 12px; }
  h1, .hero-premium h1, .page-hero h1 { font-size: 47px; line-height: 1; }
  h2 { font-size: 38px; }
  .lead { font-size: 18px; }
  .hero { padding: 60px 0 54px; }
  .hero-premium { min-height: 720px; }
  .hero-premium > img { object-position: 60% center; }
  .hero-premium .wrap { padding-top: 72px; padding-bottom: 48px; }
  section { padding: 64px 0; }
  .statement .wrap { margin-left: auto; }
  .statement h2 { font-size: 40px; }
  .function-grid { grid-template-columns: 1fr; }
  .function-card, .function-card:nth-child(odd), .function-card:nth-child(even) { min-height: 0; padding: 26px 0; border-right: 0; }
  .function-card > span { margin-bottom: 28px; }
  .function-card h3 { font-size: 29px; }
  .before-after { grid-template-columns: 1fr; }
  .before-after > article + article { border-left: 0; border-top: 1px solid var(--line); }
  .before-after .arrow { min-height: 48px; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(90deg); }
  .case-feature { grid-template-columns: 1fr; gap: 14px; }
  .case-feature > b, .case-feature .case-proof { grid-column: 1; }
  .outcome-strip, .steps, .form-row { grid-template-columns: 1fr; }
  .outcome, .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome:last-child, .step:last-child { border-bottom: 0; }
  .path, .card, .evidence { padding: 24px; }
  .cta-band { padding: 28px; }
  .finder { right: 16px; bottom: 84px; }
  .finder-toggle { right: 16px; bottom: 16px; }
  .diagnostic-map { grid-template-columns: 1fr 1fr; }
  .diagnostic-map span { min-height: 76px; padding: 15px; }
  .decision-ledger article { grid-template-columns: 1fr; gap: 10px; }
  .decision-ledger article p { grid-column: 1; }
  .story-opening { margin-bottom: 64px; font-size: 30px !important; }
  .story-timeline { grid-template-columns: repeat(2, 1fr); }
  .story-timeline a:nth-child(odd) { border-right: 1px solid var(--line); }
  .story-principle { margin-bottom: 64px; padding: 26px 0 26px 22px; }
  .story-principle p { font-size: 31px !important; }
  .story-chapter { padding-bottom: 60px; }
  .story-chapter + .story-chapter { padding-top: 60px; }
  .story-values { grid-template-columns: 1fr; }
  .story-values span, .story-values span:nth-child(even) { padding: 20px 0; border-right: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
@media print {
  @page { size: A4; margin: 14mm; }
  body.report-page { color: #151815; background: #fff; font-size: 11pt; }
  body.report-page::before, .report-page .site-header, .report-page .site-footer, .report-page .hero-actions { display: none !important; }
  .report-page section { padding: 24px 0; break-inside: avoid; border-color: #c8ccc5; }
  .report-page .page-hero { padding-top: 0; }
  .report-page h1, .report-page h2, .report-page h3, .report-page .lead, .report-page p, .report-page li, .report-page span { color: #151815 !important; }
  .report-page h1 { font-size: 38pt; }
  .report-page h2 { font-size: 26pt; }
  .report-page .outcome, .report-page .evidence, .report-page .step { background: #fff; border-color: #b9beb6; }
  .report-page .case-band { background: #f0f2ec; }
  .report-page .wrap { width: 100%; }
}
