:root {
	--ink: #090b0e;
	--ink-soft: #12161b;
	--paper: #f2f0e9;
	--paper-bright: #fbfaf6;
	--line: rgba(9, 11, 14, 0.16);
	--line-dark: rgba(255, 255, 255, 0.14);
	--muted: #69717c;
	--steel: #98a2b3;
	--signal: #ff5c35;
	--signal-dark: #c94325;
	--evidence: #57e39b;
	--warning: #ffc857;
	--shell: min(1240px, calc(100vw - 48px));
	--header-height: 76px;
	--consent-banner-offset: 0px;
	--radius: 2px;
	--mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--signal); color: #fff; }

.mst-shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 920px; }
.skip-link {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	background: #fff;
	color: var(--ink);
}
.skip-link:focus { left: 16px; top: 12px; width: auto; height: auto; padding: 12px 18px; margin: 0; overflow: visible; clip-path: none; }

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	color: #fff;
	transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
	background: rgba(7, 9, 12, .97);
	border-color: rgba(88,205,234,.18);
	backdrop-filter: blur(18px);
}
body:not(.mst-home) .site-header {
	background: #27343b;
	border-color: #46545c;
	backdrop-filter: blur(18px);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.wordmark-logo { width: 44px; height: 31px; object-fit: contain; }
.wordmark-copy { display: grid; gap: 0; line-height: 1; }
.wordmark-copy strong { font-size: 17px; letter-spacing: .08em; }
.wordmark-copy small { margin-top: 4px; color: rgba(255,255,255,.56); font: 700 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; }
.nav-group { position: relative; }
.nav-group-toggle { min-height: 40px; padding: 0 9px; display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 650; }
.nav-group-toggle span { color: rgba(255,255,255,.38); font-size: 13px; transition: transform .18s ease; }
.nav-group.is-open .nav-group-toggle, .nav-group:focus-within .nav-group-toggle { color: #fff; }
.nav-group.is-open .nav-group-toggle span { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 10px); left: 0; width: 310px; padding: 10px; display: grid; gap: 2px; border: 1px solid var(--line-dark); background: rgba(9,11,14,.98); box-shadow: 0 24px 70px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-dropdown-wide { width: 360px; }
.nav-group-right .nav-dropdown { left: auto; right: 0; }
.nav-group.is-open .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { padding: 13px 14px; display: grid; gap: 3px; color: #fff; border: 1px solid transparent; }
.nav-dropdown a:hover, .nav-dropdown a:focus { border-color: var(--line-dark); background: rgba(255,255,255,.045); }
.nav-dropdown strong { font-size: 13px; }
.nav-dropdown small { color: rgba(255,255,255,.46); font: 9px/1.45 var(--mono); }
.nav-demo { margin-left: 7px; white-space: nowrap; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-dark); background: transparent; color: #fff; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; transition: transform .2s ease; }

.mst-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .01em;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.mst-button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.button-primary { background: var(--signal); color: #fff; }
.button-primary:hover { background: #ff714f; }
.button-ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.button-ghost:hover { border-color: #fff; }
.button-dark { background: var(--ink); color: #fff; }
.button-quiet { background: transparent; border-color: var(--line); color: inherit; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-weight: 750; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link-light { color: #fff; }

.hero {
	position: relative;
	min-height: 790px;
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}
.hero::after {
	content: "";
	position: absolute;
	width: 620px;
	height: 620px;
	right: -220px;
	top: 60px;
	border: 1px solid rgba(255,92,53,.35);
	border-radius: 50%;
	box-shadow: 0 0 120px rgba(255,92,53,.08), inset 0 0 100px rgba(255,92,53,.05);
}
.hero-layout { position: relative; z-index: 2; min-height: 790px; padding-top: 135px; padding-bottom: 70px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: 52px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.62); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: var(--signal); }
.page-breadcrumb { flex-wrap: wrap; }
.page-breadcrumb a, .page-breadcrumb b { color: inherit; font: inherit; letter-spacing: inherit; }
.page-breadcrumb a { border-bottom: 1px solid rgba(255,255,255,.28); }
.page-breadcrumb a:hover, .page-breadcrumb a:focus { color: #fff; border-color: var(--signal); }
.page-breadcrumb i { color: rgba(255,255,255,.28); font-style: normal; }
.eyebrow-dark { color: var(--muted); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(50px, 5.1vw, 78px); font-weight: 650; line-height: 1; letter-spacing: -.058em; }
.hero h1 em { color: var(--signal); font-style: normal; }
.hero-deck { max-width: 690px; margin: 32px 0 0; color: rgba(255,255,255,.68); font-size: clamp(18px, 1.5vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border-top: 1px solid var(--line-dark); }
.hero-facts div { padding: 18px 18px 0 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: #fff; font-size: 13px; }
.hero-facts span { margin-top: 5px; color: rgba(255,255,255,.46); font-family: var(--mono); font-size: 10px; }

.hero-visual { position: relative; margin: 0; border: 1px solid rgba(255,255,255,.16); background: #0d1115; box-shadow: 0 34px 100px rgba(0,0,0,.42); }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: -8px; border: 1px solid rgba(255,92,53,.2); }
.hero-visual img { width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; }
.hero-visual figcaption { min-height: 48px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font: 700 9px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.hero-visual figcaption a { color: var(--evidence); }

.hero-system { position: relative; padding: 18px; border: 1px solid rgba(255,255,255,.16); background: rgba(14,18,23,.84); box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.hero-system::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(255,92,53,.16); pointer-events: none; }
.system-label, .system-foot { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { color: var(--evidence); }
.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.system-input { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 8px; margin: 16px 0; }
.system-input > div { min-height: 58px; padding: 10px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
.system-input span, .system-input code { display: block; font-family: var(--mono); font-size: 9px; }
.system-input span { color: rgba(255,255,255,.36); }
.system-input code { margin-top: 8px; color: rgba(255,255,255,.78); }
.file-chip { display: flex; align-items: center; justify-content: space-between; color: #fff; font: 700 12px var(--mono); }
.file-chip b { padding: 3px 5px; background: var(--signal); font-size: 8px; }
.system-flow { display: grid; gap: 7px; }
.system-stage { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; min-height: 76px; padding: 10px 12px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.system-stage > span { color: rgba(255,255,255,.28); font: 10px var(--mono); }
.system-stage > div { display: grid; grid-template-columns: 28px 1fr; align-items: center; column-gap: 10px; }
.system-stage strong, .system-stage small { grid-column: 2; display: block; }
.system-stage strong { font-size: 12px; }
.system-stage small { color: rgba(255,255,255,.42); font: 9px var(--mono); }
.system-stage .mst-icon { grid-row: 1 / 3; width: 25px; color: var(--steel); }
.system-stage i { color: var(--evidence); font: 700 8px var(--mono); font-style: normal; }
.system-stage.oracle { border-color: rgba(87,227,155,.45); background: rgba(87,227,155,.06); }
.system-stage.oracle .mst-icon { color: var(--evidence); }
.system-foot { margin-top: 14px; }

.statement-band { background: var(--signal); color: #fff; }
.statement-row { min-height: 86px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.statement-row p { margin: 0; padding: 10px 30px; border-right: 1px solid rgba(255,255,255,.25); font-size: clamp(15px, 1.4vw, 19px); font-weight: 700; text-align: center; }
.statement-row p:first-child { padding-left: 0; }
.statement-row p:last-child { border: 0; padding-right: 0; }

.compiler-section h2 em { color: var(--signal-dark); font-style: normal; }
.compiler-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border: 1px solid var(--line); }
.compiler-pipeline article { min-height: 238px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-bright); }
.compiler-pipeline article:nth-child(4n) { border-right: 0; }
.compiler-pipeline article:nth-child(n+5) { border-bottom: 0; }
.compiler-pipeline b, .compiler-pipeline > article > span { display: block; font: 700 9px var(--mono); letter-spacing: .09em; }
.compiler-pipeline b { color: #a6a8aa; }
.compiler-pipeline > article > span { margin-top: 42px; color: var(--signal-dark); }
.compiler-pipeline h3 { margin: 10px 0 12px; font-size: 20px; line-height: 1.12; letter-spacing: -.025em; }
.compiler-pipeline p { margin: 0; color: var(--muted); font-size: 12px; }
.scope-note { margin-top: 18px; padding: 20px 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; border-left: 3px solid var(--signal); background: #e8e6df; }
.scope-note strong { font: 700 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.scope-note span { color: var(--muted); font-size: 13px; }

.trace-map { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; margin-top: 72px; }
.trace-map article { min-height: 190px; padding: 26px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.trace-map > i { align-self: center; color: var(--signal); font: 20px var(--mono); font-style: normal; }
.trace-map span { color: var(--signal); font: 700 9px var(--mono); letter-spacing: .1em; }
.trace-map strong { margin-top: 20px; font-size: 17px; line-height: 1.2; }
.trace-map small { margin-top: 10px; color: rgba(255,255,255,.43); font-size: 11px; }
.trace-map .trace-verdict { border-color: rgba(87,227,155,.45); background: rgba(87,227,155,.06); }
.trace-map .trace-verdict span { color: var(--evidence); }
.trace-summary { max-width: 900px; margin-top: 44px; color: rgba(255,255,255,.57); font-size: 17px; }

.paradigm-section { background: #e8e6df; }
.paradigm-section h2 em { color: var(--signal-dark); font-style: normal; }
.paradigm-visual { margin-top: 72px; border: 1px solid var(--line); background: var(--ink); }
.paradigm-visual img { width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; }
.paradigm-visual figcaption { padding: 15px 18px; color: rgba(255,255,255,.48); font: 9px var(--mono); letter-spacing: .04em; }
.page-visual { margin: 0 auto; border: 1px solid var(--line); background: var(--ink); }
.page-visual img { width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.page-visual figcaption { padding: 14px 17px; color: rgba(255,255,255,.52); font: 9px/1.5 var(--mono); letter-spacing: .03em; }
.page-visual-dark { border-color: var(--line-dark); }
.page-section.page-visual-section { padding-top: 0; }
.paradigm-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 72px; }
.paradigm-compare article { min-height: 360px; padding: 38px; border: 1px solid var(--line); background: var(--paper-bright); }
.paradigm-compare article > span { color: var(--muted); font: 700 9px var(--mono); letter-spacing: .1em; }
.paradigm-compare h3 { margin: 55px 0 28px; font-size: 34px; letter-spacing: -.04em; }
.paradigm-compare ul { margin: 0; padding: 0; list-style: none; }
.paradigm-compare li { padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.paradigm-compare .paradigm-outcome { color: #fff; border-color: var(--ink); background: var(--ink); }
.paradigm-compare .paradigm-outcome > span { color: var(--evidence); }
.paradigm-compare .paradigm-outcome li { color: rgba(255,255,255,.58); border-color: var(--line-dark); }
.paradigm-thesis { margin-top: 16px; padding: 36px 40px; border-left: 4px solid var(--signal); background: var(--paper-bright); }
.paradigm-thesis p { max-width: 980px; margin: 0; font-size: clamp(23px,3vw,38px); line-height: 1.18; letter-spacing: -.035em; }
.paradigm-thesis cite { display: block; margin-top: 22px; color: var(--signal-dark); font: 700 9px var(--mono); font-style: normal; letter-spacing: .1em; }
.outcome-contract { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 16px; padding: 24px; color: #fff; background: var(--signal-dark); }
.outcome-contract span { font: 700 9px var(--mono); letter-spacing: .06em; text-align: center; }
.outcome-contract i { color: rgba(255,255,255,.48); font-style: normal; }

.moat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; border: 1px solid var(--line); background: var(--line); }
.moat-grid article { min-height: 290px; padding: 34px; background: var(--paper-bright); }
.moat-grid b { color: var(--signal-dark); font: 700 10px var(--mono); }
.moat-grid h3 { margin: 52px 0 14px; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
.moat-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.kernel-stack { margin-top: 70px; border: 1px solid var(--line); }
.kernel-band { padding: 30px; display: grid; grid-template-columns: 180px 1fr 1.5fr; align-items: center; gap: 25px; color: #fff; background: var(--ink); }
.pdm-truth-band { min-height: 108px; border-top: 1px solid var(--line-dark); background: #111820; transition: background .2s ease; }
.pdm-truth-band:hover, .pdm-truth-band:focus { background: #16212b; }
.pdm-truth-band span { color: var(--evidence); }
.kernel-band span, .kernel-domains article > span { font: 700 9px var(--mono); letter-spacing: .1em; }
.kernel-band span { color: var(--signal); }
.kernel-band strong { font-size: 22px; }
.kernel-band small { color: rgba(255,255,255,.5); font-size: 12px; }
.kernel-domains { display: grid; grid-template-columns: 1fr 1fr; }
.kernel-domains article { min-height: 300px; padding: 34px; background: var(--paper-bright); }
.kernel-domains article + article { border-left: 1px solid var(--line); }
.kernel-domains article > span { color: var(--muted); }
.kernel-domains .domain-current > span { color: var(--signal-dark); }
.kernel-domains h3 { margin: 46px 0 14px; font-size: 30px; letter-spacing: -.04em; }
.kernel-domains p { color: var(--muted); font-size: 13px; }
.adapter-row { display: grid; grid-template-columns: 1.2fr 1fr; margin-top: 28px; border-top: 1px solid var(--line); }
.adapter-row strong, .adapter-row em { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; font-style: normal; }
.adapter-row em { color: var(--muted); font-family: var(--mono); }
.architecture-caveat { margin-top: 22px; color: var(--muted); font-size: 13px; }
.product-layer-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.product-layer-grid article { min-height: 285px; padding: 30px; border-right: 1px solid var(--line); background: var(--paper-bright); }
.product-layer-grid article:last-child { border-right: 0; }
.product-layer-grid article > span { color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .1em; }
.product-layer-grid h3 { margin: 52px 0 14px; font-size: 23px; line-height: 1.08; letter-spacing: -.035em; }
.product-layer-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.product-layer-link { display: inline-flex; gap: 10px; margin-top: 28px; color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.product-layer-grid .domain-current { color: #fff; background: var(--ink); }
.product-layer-grid .domain-current > span { color: var(--evidence); }
.product-layer-grid .domain-current p { color: rgba(255,255,255,.52); }
.product-layer-grid .domain-current .product-layer-link { color: var(--evidence); }

.research-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 62px; border: 1px solid var(--line); background: var(--line); }
.research-pillar-grid article { min-height: 320px; padding: 32px; display: flex; flex-direction: column; background: var(--paper-bright); }
.research-pillar-grid span, .research-pillar-grid small { font: 700 9px var(--mono); letter-spacing: .08em; }
.research-pillar-grid span { color: var(--signal-dark); }
.research-pillar-grid h3 { margin: 54px 0 14px; font-size: 27px; line-height: 1.08; letter-spacing: -.04em; }
.research-pillar-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.research-pillar-grid small { margin-top: auto; padding-top: 28px; color: #92979d; }
.reader-track-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 62px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.reader-track-grid article { min-height: 310px; padding: 26px; background: var(--ink-soft); }
.reader-track-grid b { color: var(--signal); font: 700 9px var(--mono); letter-spacing: .09em; }
.reader-track-grid h3 { margin: 54px 0 15px; font-size: 21px; line-height: 1.12; letter-spacing: -.03em; }
.reader-track-grid p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.research-decision-section { padding: 54px 0 0; color: #fff; background: #18272e; }
.research-decision-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.research-decision-heading h2 { margin: 8px 0 0; font-size: clamp(32px,3.4vw,48px); line-height: 1.04; letter-spacing: -.05em; }
.research-decision-heading > p { margin: 0; color: rgba(255,255,255,.62); font-size: 15px; }
.research-decision-links { margin-top: 42px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border-top: 1px solid var(--line-dark); }
.research-decision-links a { min-width: 0; min-height: 176px; padding: 23px 20px; display: flex; flex-direction: column; color: #fff; border-right: 1px solid var(--line-dark); }
.research-decision-links a:last-child { border-right: 0; }
.research-decision-links a:hover { background: rgba(255,255,255,.05); }
.research-decision-links b { color: #58cdea; font: 750 8px var(--mono); letter-spacing: .08em; }
.research-decision-links strong { margin-top: 25px; font-size: 15px; line-height: 1.22; }
.research-decision-links span { margin-top: auto; padding-top: 22px; color: rgba(255,255,255,.5); font: 700 9px var(--mono); }
.research-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 52px; }
.research-post-grid > a { min-height: 0; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper-bright); }
.research-post-grid span, .research-post-grid i, .research-post-grid em { font: 700 9px var(--mono); font-style: normal; }
.research-post-grid span { color: var(--signal-dark); }
.research-post-grid small { display: block; min-height: 32px; margin-top: 7px; color: var(--muted); font: 10px/1.45 var(--mono); }
.research-post-grid h3 { margin: 32px 0 15px; font-size: 25px; line-height: 1.1; }
.research-post-grid p { color: var(--muted); font-size: 13px; }
.research-post-grid footer { margin-top: auto; padding-top: 30px; display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; }
.research-post-grid em { color: var(--muted); font-weight: 500; text-align: right; }
#reader-tracks, #published-articles, #research-framework, .technical-article [id] { scroll-margin-top: calc(var(--header-height) + 16px); }
.citation-standard { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.citation-standard h2 { margin: 0; font-size: clamp(36px,4vw,62px); line-height: 1.02; letter-spacing: -.055em; }
.citation-source-list { margin: 38px 0 0; padding: 0; list-style: none; }
.citation-source-list li { border-top: 1px solid var(--line); }
.citation-source-list a { display: block; padding: 14px 0; color: #424850; font-size: 13px; }
.citation-source-list a::after { content: " ↗"; color: var(--signal-dark); }
.article-hero { padding: 150px 0 72px; color: #fff; background: var(--ink); }
.article-hero h1 { max-width: 980px; margin: 0; font-size: clamp(44px,5vw,68px); line-height: 1.02; letter-spacing: -.055em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 25px; margin-top: 38px; color: rgba(255,255,255,.42); font: 10px var(--mono); }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 70px; align-items: start; }
.article-layout > *, .article-content { min-width: 0; }
.article-layout > aside { position: sticky; top: 110px; display: grid; border-top: 2px solid var(--signal); }
.article-layout > aside strong, .article-layout > aside span { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.article-layout > aside strong { font: 700 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.article-layout > aside span { color: var(--muted); }
.article-layout > aside span b { display: block; margin-bottom: 6px; color: var(--ink); font: 700 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.article-answer { padding: 24px; border-left: 3px solid var(--signal); background: #e9e7e0; font-size: 18px; line-height: 1.6; }
.article-limit-early { margin: 20px 0 0 !important; padding: 16px 18px; border: 1px solid #c8c5bb; background: var(--paper-bright); }
.article-jump-nav { margin: 30px 0 42px; padding: 14px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-jump-nav a { color: var(--ink); font: 700 10px var(--mono); text-decoration: none; }
.article-jump-nav a::after { content: " ↓"; color: var(--signal-dark); }
.article-meter-compare { margin: 44px 0 52px; display: grid; grid-template-columns: minmax(0,1fr) 72px minmax(0,1fr); align-items: stretch; border: 1px solid var(--line); background: var(--paper-bright); }
.article-meter-compare > header { grid-column: 1 / -1; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.article-meter-compare > header span, .article-evidence-ledger > header span, .article-field-status > span, .article-proof-routes > header span { color: var(--signal-dark); font: 750 9px var(--mono); letter-spacing: .11em; }
.article-meter-compare h2 { margin: 9px 0 0; font-size: 29px; line-height: 1.1; }
.meter-card { min-width: 0; padding: 30px 28px; }
.meter-card > span { color: var(--muted); font: 750 9px var(--mono); letter-spacing: .1em; }
.meter-card > strong { display: block; margin-top: 28px; font-size: 25px; line-height: 1.08; }
.meter-card p { min-height: 70px; margin: 13px 0 28px; font-size: 14px; }
.meter-card small { display: block; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font: 11px/1.5 var(--mono); }
.meter-accepted { color: #fff; background: #18272e; }
.meter-accepted p, .meter-accepted small, .meter-accepted > span { color: rgba(255,255,255,.66); }
.meter-accepted small { border-color: rgba(255,255,255,.18); }
.meter-separator { display: grid; place-content: center; justify-items: center; gap: 8px; border-inline: 1px solid var(--line); background: #ece9e1; }
.meter-separator b { color: var(--signal-dark); font-size: 30px; }
.meter-separator small { writing-mode: vertical-rl; color: var(--muted); font: 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.article-evidence-ledger { margin: 38px 0 48px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line); }
.article-evidence-ledger > header { grid-column: 1 / -1; padding: 24px 28px; border-bottom: 1px solid var(--line); background: #ece9e1; }
.article-evidence-ledger h3, .article-field-status h3, .article-proof-routes h3 { margin: 9px 0 0; font-size: 25px; line-height: 1.12; }
.article-evidence-ledger > div { min-width: 0; padding: 26px 24px; border-right: 1px solid var(--line); }
.article-evidence-ledger > div:last-child { border-right: 0; }
.article-evidence-ledger b { color: var(--signal-dark); font: 750 9px var(--mono); letter-spacing: .08em; }
.article-evidence-ledger strong { display: block; margin: 22px 0 10px; font-size: 17px; }
.article-evidence-ledger p { margin: 0; font-size: 13px; }
.article-contract-list { margin: 34px 0 48px; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; counter-reset: contract; }
.article-contract-list li { min-width: 0; min-height: 155px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); counter-increment: contract; }
.article-contract-list li::before { content: counter(contract, decimal-leading-zero); display: block; margin-bottom: 25px; color: var(--signal-dark); font: 750 9px var(--mono); }
.article-contract-list strong { display: block; font-size: 17px; }
.article-contract-list span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }
.article-field-status { margin: 46px 0 54px; padding: 30px; color: #fff; border-left: 4px solid var(--signal); background: #18272e; }
.article-field-status > span { color: #58cdea; }
.article-field-status h3 { max-width: 650px; }
.article-field-status p { color: rgba(255,255,255,.68); }
.article-compiler-chain { margin: 36px 0 50px; padding: 0; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; counter-reset: chain; }
.article-compiler-chain li { min-width: 0; min-height: 170px; padding: 22px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); counter-increment: chain; }
.article-compiler-chain li::before { content: counter(chain, decimal-leading-zero); color: var(--signal-dark); font: 750 9px var(--mono); }
.article-compiler-chain span { display: block; margin-top: 24px; font-weight: 750; }
.article-compiler-chain p { margin: 7px 0 0; font-size: 12px; }
.article-scorecard { max-width: 100%; margin: 34px 0 38px; overflow-x: auto; border: 1px solid var(--line); background: var(--paper-bright); }
.article-scorecard table { width: 100%; min-width: 780px; border-collapse: collapse; }
.article-scorecard caption { padding: 18px 20px; color: var(--signal-dark); font: 750 10px var(--mono); text-align: left; letter-spacing: .08em; text-transform: uppercase; }
.article-scorecard th, .article-scorecard td { padding: 14px 16px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); font-size: 11px; line-height: 1.45; text-align: left; vertical-align: top; }
.article-scorecard tr > *:last-child { border-right: 0; }
.article-scorecard thead th { color: #fff; background: #18272e; font: 750 9px var(--mono); letter-spacing: .06em; }
.article-scorecard tbody th { min-width: 180px; color: var(--ink); }
.article-equations { margin: 32px 0 50px; border-top: 2px solid var(--ink); }
.article-equations p { margin: 0; padding: 15px 0; display: grid; grid-template-columns: 210px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.article-equations strong { font-size: 12px; }
.article-equations code { white-space: normal; color: var(--muted); font: 11px/1.55 var(--mono); }
.article-audience-paths { margin: 34px 0 52px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-audience-paths a { min-width: 0; min-height: 180px; padding: 24px; display: flex; flex-direction: column; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.article-audience-paths a:last-child { grid-column: 1 / -1; min-height: 150px; }
.article-audience-paths b, .article-proof-routes a b { color: var(--signal-dark); font: 750 9px var(--mono); letter-spacing: .08em; }
.article-audience-paths strong, .article-proof-routes a strong { display: block; margin-top: 28px; font-size: 18px; line-height: 1.15; }
.article-audience-paths span, .article-proof-routes a span { margin-top: auto; padding-top: 25px; color: var(--muted); font: 700 10px var(--mono); }
.article-audience-paths a:hover, .article-proof-routes a:hover { background: #ece9e1; }
.article-proof-routes { margin: 46px 0 56px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border: 1px solid var(--line); }
.article-proof-routes > header { grid-column: 1 / -1; padding: 26px 28px; border-bottom: 1px solid var(--line); }
.article-proof-routes > a { min-width: 0; min-height: 170px; padding: 24px; display: flex; flex-direction: column; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.article-proof-routes > a:nth-of-type(even) { border-right: 0; }
.article-proof-routes > a:last-child { grid-column: 1 / -1; border-bottom: 0; background: #18272e; color: #fff; }
.article-proof-routes > a:last-child span { color: #58cdea; }
.article-figure { margin: 42px 0 52px; border: 1px solid var(--line); background: var(--ink); }
.article-figure img { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.article-figure figcaption { padding: 13px 16px; color: rgba(255,255,255,.62); font: 10px/1.6 var(--mono); }
.article-content pre { max-width: 100%; padding: 20px; overflow-x: auto; border: 1px solid var(--line); background: #e9e7e0; font: 12px/1.6 var(--mono); }
.article-limit { margin-top: 58px !important; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.article-citation-note { margin-top: 70px; padding: 24px; border-left: 3px solid var(--signal); background: #e9e7e0; }
.article-citation-note strong { font: 700 10px var(--mono); text-transform: uppercase; }
.article-citation-note p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.mst-section { padding: 128px 0; }
.section-light { background: var(--paper-bright); }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: #fff; }
.section-index { margin: 0; color: var(--signal-dark); font: 700 10px var(--mono); letter-spacing: .12em; }
.split-heading { display: grid; grid-template-columns: 1fr 2.2fr; gap: 70px; align-items: start; }
.split-heading h2, .section-heading h2, .evidence-feature h2, .deployment-card h2, .entity-callout h2, .cta-grid h2, .page-hero h1, .page-section h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: 1.02; letter-spacing: -.055em; font-weight: 650; }
.section-deck { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 19px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 74px; }
.comparison-card { min-height: 370px; padding: 42px; border: 1px solid var(--line); }
.comparison-card h3 { max-width: 460px; margin: 40px 0 30px; font-size: clamp(28px, 3vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.card-kicker { margin: 0; color: var(--muted); font: 700 10px var(--mono); letter-spacing: .1em; }
.muted-card { color: #555c65; background: #e8e6df; }
.signal-card { color: #fff; background: var(--ink); border-color: var(--ink); }
.comparison-card ul { list-style: none; margin: 0; padding: 0; }
.comparison-card li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid currentColor; border-color: rgba(128,128,128,.25); font-size: 14px; }
.comparison-card li::before { position: absolute; left: 0; }
.cross-list li::before { content: "×"; color: #9b5b4b; }
.check-list li::before { content: "✓"; color: var(--evidence); }

.section-heading { max-width: 880px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.workflow-rail { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 74px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.workflow-rail article { min-height: 270px; padding: 24px 22px; border-right: 1px solid var(--line-dark); }
.workflow-rail article:last-child { border-right: 0; }
.workflow-rail b { display: block; color: rgba(255,255,255,.3); font: 9px var(--mono); }
.workflow-rail .mst-icon { width: 34px; margin-top: 38px; color: var(--signal); }
.workflow-rail h3 { margin: 20px 0 10px; font-size: 18px; }
.workflow-rail p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.section-action { margin-top: 42px; }

.evidence-feature { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.evidence-feature > div:first-child > p:not(.section-index) { color: var(--muted); font-size: 17px; }
.evidence-feature .mst-button { margin-top: 22px; }
.video-stage { border: 1px solid var(--line); background: #101419; color: #fff; }
.video-placeholder { min-height: 440px; padding: 58px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: radial-gradient(circle at center, rgba(255,92,53,.12), transparent 44%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: auto, 40px 40px, 40px 40px; }
.video-placeholder > b { color: var(--signal); font-size: 40px; font-weight: 400; }
.video-placeholder span { margin-top: 28px; color: var(--signal); font: 700 9px var(--mono); letter-spacing: .12em; }
.video-placeholder h3 { margin: 12px 0; font-size: 30px; letter-spacing: -.03em; }
.video-placeholder p { max-width: 510px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.video-proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.video-proof-strip span { padding: 15px 8px; border-right: 1px solid var(--line-dark); color: rgba(255,255,255,.56); font: 9px var(--mono); text-align: center; }
.video-proof-strip span:last-child { border-right: 0; }

.deployment-proof { padding-block: 0; background: var(--ink); color: #fff; }
.deployment-card { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 100px 0; border-top: 1px solid var(--line-dark); }
.deployment-card h2 { font-size: clamp(38px, 4vw, 64px); }
.deployment-card > div:last-child > p { color: rgba(255,255,255,.64); font-size: 18px; }
.fine-print { font: 10px/1.6 var(--mono) !important; color: rgba(255,255,255,.4) !important; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 70px; }
.audience-card { min-height: 350px; padding: 36px; border: 1px solid var(--line); background: var(--paper); transition: transform .2s ease, background .2s ease; }
.audience-card:hover { transform: translateY(-5px); background: #fff; }
.audience-card > span, .audience-card > i { font: 700 9px var(--mono); letter-spacing: .08em; font-style: normal; }
.audience-card > span { color: var(--signal-dark); }
.audience-card h3 { margin: 55px 0 18px; font-size: 28px; line-height: 1.13; letter-spacing: -.035em; }
.audience-card p { color: var(--muted); font-size: 14px; }
.audience-card > i { display: block; margin-top: 50px; }
.investor-card { background: var(--ink); color: #fff; }
.investor-card:hover { background: #181d23; }
.investor-card p { color: rgba(255,255,255,.52); }
.investor-evidence-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line); background: #fff; }
.investor-evidence-grid article { min-width: 0; min-height: 350px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.investor-evidence-grid article:last-child { border-right: 0; }
.investor-evidence-grid b, .diligence-list b { color: var(--signal-dark); font: 750 8px var(--mono); letter-spacing: .1em; }
.investor-evidence-grid article:nth-child(2) b { color: #126d77; }
.investor-evidence-grid article:nth-child(3) b { color: #75693b; }
.investor-evidence-grid h3 { margin: 42px 0 16px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.investor-evidence-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.investor-evidence-grid a { margin-top: auto; padding-top: 30px; font: 750 10px var(--mono); }
.investor-deployment-note { margin: 0; padding: 20px 24px; color: #4e565e; border: 1px solid var(--line); border-top: 0; background: #e8e9e4; font-size: 12px; }
.investor-deployment-note strong { color: var(--ink); }
.diligence-list a { min-height: 145px; padding: 22px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.diligence-list a:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(9,11,14,.09); }
.diligence-list h3 { margin: auto 0 0; padding-top: 30px; font-size: 16px; line-height: 1.25; }

.evidence-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 60px; }
.evidence-card { min-height: 300px; padding: 32px; border: 1px solid var(--line); background: var(--paper-bright); }
.evidence-card > span { font: 700 9px var(--mono); text-transform: uppercase; color: var(--signal-dark); }
.evidence-card.status-proven > span { color: #168651; }
.evidence-card h3 { margin: 45px 0 14px; font-size: 25px; line-height: 1.15; }
.evidence-card p { color: var(--muted); font-size: 13px; }
.evidence-card i { display: block; margin-top: 38px; font: 700 10px var(--mono); font-style: normal; }

.entity-section { background: #151a20; color: #fff; }
.entity-callout, .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.entity-callout h2 i { color: rgba(255,255,255,.34); font-style: normal; }
.entity-callout > div:last-child p, .cta-grid > div:last-child p { margin: 0 0 28px; color: rgba(255,255,255,.58); font-size: 18px; }
.cta-section { background: var(--ink); color: #fff; border-top: 1px solid var(--line-dark); }
.cta-section-compact .cta-grid h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.08; letter-spacing: -.04em; }

.home-resources-heading { display: flex; justify-content: space-between; gap: 35px; align-items: end; }
.home-resources-heading h2 { margin-bottom: 0; }
.home-resource-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.home-resource-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.home-resource-card { min-height: 260px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper-bright); }
.home-resource-card span { color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.home-resource-card h3 { margin: 42px 0 14px; font-size: 23px; line-height: 1.12; letter-spacing: -.035em; }
.home-resource-card p { margin: 0; color: var(--muted); font-size: 13px; }
.home-resource-card i { margin-top: auto; padding-top: 28px; font: 700 10px var(--mono); font-style: normal; }
.home-resource-feature { min-height: 100%; color: #fff; border-color: var(--ink); background: var(--ink); }
.home-resource-feature span { color: var(--evidence); }
.home-resource-feature p { color: rgba(255,255,255,.56); }
.resource-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.resource-directory a { min-height: 245px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper-bright); }
.resource-directory span { color: var(--signal-dark); font: 700 9px var(--mono); }
.resource-directory h3 { margin: 42px 0 12px; font-size: 24px; line-height: 1.12; }
.resource-directory p { margin: 0; color: var(--muted); font-size: 13px; }
.resource-directory i { margin-top: auto; padding-top: 28px; font: 700 10px var(--mono); font-style: normal; }

.page-hero { padding: 142px 0 78px; border-top: 1px solid var(--line-dark); background: var(--ink); color: #fff; }
.page-hero .eyebrow { margin-bottom: 30px; color: rgba(255,255,255,.68); }
.page-hero .page-breadcrumb a { border-color: rgba(255,255,255,.3); }
.page-hero .page-breadcrumb a:hover, .page-hero .page-breadcrumb a:focus { color: #fff; border-color: var(--signal); }
.page-hero .page-breadcrumb i { color: rgba(255,255,255,.34); }
.page-hero:not(.page-hero-with-visual) h1 { max-width: 980px; font-size: clamp(38px, 3.25vw, 50px); line-height: 1.03; letter-spacing: -.048em; }
.page-deck { max-width: 780px; margin: 24px 0 0; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.6; }
.page-hero-with-visual { padding: 84px 0 14px; }
.page-hero-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 36px; align-items: center; }
.page-hero-copy, .page-hero-visual { min-width: 0; }
.page-hero-copy h1 { font-size: clamp(32px, 2.65vw, 38px); line-height: 1.05; letter-spacing: -.041em; }
.page-hero-copy .page-deck { max-width: 520px; margin-top: 14px; font-size: 13px; line-height: 1.52; }
.page-hero-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.page-hero-actions .mst-button { min-height: 38px; }
.page-hero-actions .text-link { padding-bottom: 3px; font-size: 11px; }
.page-hero-visual { width: 100%; max-width: 390px; justify-self: end; border-color: var(--line-dark); }
.page-hero-visual figcaption { padding: 8px 11px; font-size: 7px; }
.page-section { padding: 84px 0; }
.page-section-dark { background: var(--ink); color: #fff; }
.page-section-paper { background: var(--paper); }
.page-section-light { background: var(--paper-bright); }
.page-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.page-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.page-section h2 { font-size: clamp(32px, 3.4vw, 50px); line-height: 1.06; letter-spacing: -.045em; }
.page-lead { color: var(--muted); font-size: 17px; line-height: 1.65; }
.page-section-dark .page-lead { color: rgba(255,255,255,.58); }
.product-contract-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.product-contract-steps { margin: 58px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; list-style: none; counter-reset: product-steps; }
.product-contract-steps li { min-height: 260px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper-bright); counter-increment: product-steps; }
.product-contract-steps li::before { content: "0" counter(product-steps); color: var(--signal-dark); font: 700 10px var(--mono); letter-spacing: .08em; }
.product-contract-steps h3 { margin: 54px 0 14px; font-size: 22px; line-height: 1.12; letter-spacing: -.03em; }
.product-contract-steps p { margin: 0; color: var(--muted); font-size: 13px; }
.numbered-list { margin: 55px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.numbered-list li { counter-increment: steps; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.numbered-list li::before { content: "0" counter(steps); color: var(--signal-dark); font: 700 11px var(--mono); }
.numbered-list h3 { margin: 0 0 8px; font-size: 21px; }
.numbered-list p { margin: 0; color: var(--muted); }
.page-section-dark .numbered-list li { border-color: var(--line-dark); }
.page-section-dark .numbered-list p { color: rgba(255,255,255,.5); }
.boundary-table { margin-top: 52px; border: 1px solid var(--line); }
.claim-boundary-lead { max-width: 920px; margin: 34px 0 0; }
.boundary-row { display: grid; grid-template-columns: 1fr 1fr; }
.boundary-row > div { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.boundary-row > div:first-child { border-right: 1px solid var(--line); }
.boundary-row:last-child > div { border-bottom: 0; }
.boundary-row strong, .boundary-row span { display: block; }
.boundary-row strong { font-size: 14px; }
.boundary-row span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.scope-card { min-height: 280px; padding: 32px; border: 1px solid var(--line); }
.scope-card b { color: var(--signal-dark); font: 700 10px var(--mono); }
.scope-card h3 { margin: 38px 0 14px; font-size: 25px; line-height: 1.12; }
.scope-card p { color: var(--muted); font-size: 14px; }
.page-section-dark .scope-card { border-color: var(--line-dark); }
.page-section-dark .scope-card p { color: rgba(255,255,255,.5); }
.product-principles { margin-top: 60px; }

.technology-index-heading, .feature-intro-grid, .compiler-contract { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 74px; align-items: start; }
.technology-index-heading h2, .feature-section-heading h2 { margin: 10px 0 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.02; letter-spacing: -.052em; }
.technology-index-heading .page-lead { margin: 32px 0 0; }
.technology-directory { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 62px; }
.technology-route { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper-bright); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.technology-route:hover, .technology-route:focus-visible { transform: translateY(-4px); border-color: rgba(201,67,37,.55); }
.technology-route > span, .technology-route > strong { color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.technology-route h3 { margin: 54px 0 16px; font-size: clamp(28px, 3vw, 40px); line-height: 1.04; letter-spacing: -.045em; }
.technology-route p { max-width: 490px; margin: 0; color: var(--muted); font-size: 14px; }
.technology-route > strong { margin-top: auto; padding-top: 34px; }
.technology-route-current { color: #fff; border-color: var(--ink); background: var(--ink); }
.technology-route-current > span, .technology-route-current > strong { color: var(--evidence); }
.technology-route-current p { color: rgba(255,255,255,.55); }
.compiler-contract { align-items: end; }
.compiler-contract .mst-button { margin-top: 26px; }

.feature-intro-grid > div { min-width: 0; }
.feature-intro-grid h2 { margin: 10px 0 0; font-size: clamp(38px, 3.8vw, 60px); line-height: 1.02; letter-spacing: -.052em; }
.feature-intro-grid .page-lead { margin-top: 6px; }
.feature-fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 42px; }
.feature-fact-grid article { min-height: 190px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); }
.feature-fact-grid b, .physical-decision-grid b, .ir-schema-grid b, .benchmark-grid b { color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .09em; }
.feature-fact-grid strong { margin-top: 36px; font-size: 19px; line-height: 1.12; }
.feature-fact-grid span { margin-top: 10px; color: var(--muted); font-size: 12px; }

.evidence-workbench { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 80px; align-items: start; }
.workbench-thesis { position: sticky; top: 120px; }
.workbench-thesis h2 { font-size: clamp(38px, 4vw, 62px); }
.workbench-thesis > p:last-child { max-width: 520px; color: rgba(255,255,255,.54); font-size: 16px; }
.trace-ledger { border-top: 1px solid var(--line-dark); }
.trace-ledger article { min-height: 104px; padding: 24px 20px; display: grid; grid-template-columns: 130px minmax(0, 1fr) auto; gap: 22px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.trace-ledger span, .trace-ledger small { font: 700 9px var(--mono); letter-spacing: .08em; }
.trace-ledger span { color: var(--signal); }
.trace-ledger strong { font: 600 14px var(--mono); }
.trace-ledger small { color: rgba(255,255,255,.38); }
.trace-ledger-gate { background: rgba(87,227,155,.06); }
.trace-ledger-gate span, .trace-ledger-gate small { color: var(--evidence); }

.contract-rows { margin-top: 44px; border-top: 1px solid var(--line); }
.contract-rows > div { padding: 22px 0; display: grid; grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr); gap: 28px; border-bottom: 1px solid var(--line); }
.contract-rows strong { font: 700 12px var(--mono); }
.contract-rows span { color: var(--muted); font-size: 13px; }
.feature-section-heading { max-width: 930px; }
.feature-section-heading .page-lead { max-width: 760px; margin-top: 24px; }
.feature-section-heading-light .page-lead { color: rgba(255,255,255,.56); }

.solver-contract { margin-top: 44px; display: grid; grid-template-columns: 100px minmax(0, 1fr) auto 100px minmax(0, 1fr) auto 100px minmax(0, 1fr); gap: 12px; align-items: center; padding: 22px; border: 1px solid var(--line); background: var(--paper); }
.solver-contract span { color: var(--signal-dark); font: 700 8px var(--mono); letter-spacing: .08em; }
.solver-contract strong { font-size: 12px; }
.solver-contract i { color: var(--signal-dark); font: 18px var(--mono); font-style: normal; }
.physical-decision-grid, .ir-schema-grid, .benchmark-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 58px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.physical-decision-grid article { min-height: 270px; padding: 30px; background: var(--ink-soft); }
.physical-decision-grid b { color: var(--signal); }
.physical-decision-grid h3, .ir-schema-grid h3, .benchmark-grid h3 { margin: 52px 0 14px; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
.physical-decision-grid p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }

.ir-schema-grid, .benchmark-grid { border-color: var(--line); background: var(--line); }
.ir-schema-grid article, .benchmark-grid article { min-height: 270px; padding: 30px; background: var(--paper-bright); }
.ir-schema-grid p, .benchmark-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.benchmark-research-link { margin-top: 22px; font-size: 12px; }
.adapter-contract { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr) auto minmax(0, 1fr); gap: 14px; align-items: stretch; margin-top: 60px; }
.adapter-contract article { min-height: 210px; padding: 28px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.adapter-contract article span { color: var(--signal); font: 700 9px var(--mono); letter-spacing: .08em; }
.adapter-contract article strong { margin-top: 32px; font: 600 14px/1.5 var(--mono); }
.adapter-contract > i { align-self: center; color: var(--signal); font: 22px var(--mono); font-style: normal; }
.adapter-contract .adapter-contract-core { border-color: rgba(87,227,155,.45); background: rgba(87,227,155,.06); }
.adapter-contract .adapter-contract-core span { color: var(--evidence); }

.native-run-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 58px; border: 1px solid var(--line); }
.native-run-rail article { min-height: 280px; padding: 25px; border-right: 1px solid var(--line); background: var(--paper-bright); }
.native-run-rail article:last-child { border-right: 0; }
.native-run-rail b, .native-run-rail span { display: block; font: 700 9px var(--mono); letter-spacing: .08em; }
.native-run-rail b { color: #a2a6aa; }
.native-run-rail span { margin-top: 38px; color: var(--signal-dark); }
.native-run-rail h3 { margin: 10px 0 14px; font-size: 21px; line-height: 1.1; }
.native-run-rail p { margin: 0; color: var(--muted); font-size: 12px; }
.proof-matrix { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 42px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.proof-matrix div { min-height: 106px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink-soft); }
.proof-matrix strong { font-size: 14px; }
.proof-matrix span { color: var(--evidence); font: 700 8px var(--mono); letter-spacing: .08em; }
.fine-boundary { margin: 28px 0 0; color: var(--muted); font: 10px/1.7 var(--mono); }

.benchmark-outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 42px; }
.benchmark-outcomes div { min-height: 190px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.benchmark-outcomes span { color: var(--signal); font: 700 9px var(--mono); }
.benchmark-outcomes strong { margin-top: 38px; font-size: 19px; line-height: 1.15; }
.benchmark-outcomes small { margin-top: 10px; color: rgba(255,255,255,.46); }

.feature-next { display: flex; justify-content: space-between; gap: 60px; align-items: center; }
.feature-next > div:first-child { max-width: 760px; }
.feature-next span { color: var(--signal); font: 700 9px var(--mono); letter-spacing: .09em; }
.feature-next h2 { margin-top: 12px; font-size: clamp(30px, 3.4vw, 48px); }
.feature-next-actions { display: flex; align-items: center; gap: 24px; }
.ir-flow { margin-top: 60px; display: grid; gap: 14px; }
.ir-flow > article { padding: 28px; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 24px; border: 1px solid var(--line); background: var(--paper-bright); }
.ir-flow > article > span, .ir-adapters span { color: var(--signal-dark); font: 700 9px var(--mono); letter-spacing: .1em; }
.ir-flow > article > strong { font: 600 15px var(--mono); }
.ir-flow > article > small { grid-column: 2; color: var(--muted); font: 11px var(--mono); }
.ir-flow > i { color: var(--signal-dark); font: 22px var(--mono); font-style: normal; text-align: center; }
.ir-adapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ir-adapters article { min-height: 150px; padding: 24px; display: grid; align-content: space-between; border: 1px solid var(--line); background: var(--paper-bright); }
.ir-adapters .adapter-current { color: #fff; border-color: var(--ink); background: var(--ink); }
.ir-adapters .adapter-current span { color: var(--evidence); }
.ir-adapters strong { font-size: 19px; }
.evidence-contract { display: grid; gap: 8px; margin-top: 45px; }
.evidence-contract article { display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); }
.evidence-contract b { color: var(--signal-dark); font: 700 10px var(--mono); }
.evidence-contract strong { font-size: 14px; }
.evidence-contract span { color: var(--muted); font: 9px var(--mono); }
.diligence-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 46px; }
.diligence-list div { min-height: 150px; padding: 25px; border: 1px solid var(--line-dark); }
.diligence-list b { color: var(--signal); font: 700 10px var(--mono); }
.diligence-list h3 { margin: 26px 0 0; font-size: 19px; }

.contact-hero { padding: 118px 0 48px; }
.contact-hero .eyebrow { margin-bottom: 18px; }
.contact-hero .page-deck { max-width: 720px; margin-top: 16px; font-size: 16px; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.contact-notes { position: sticky; top: 120px; }
.contact-notes h2 { font-size: 42px; }
.contact-review-steps { margin: 30px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: contact-step; }
.contact-review-steps li { padding: 15px 0 15px 40px; position: relative; display: grid; gap: 5px; border-bottom: 1px solid var(--line); counter-increment: contact-step; }
.contact-review-steps li::before { content: counter(contact-step, decimal-leading-zero); position: absolute; top: 17px; left: 0; color: var(--signal-dark); font: 750 9px var(--mono); }
.contact-review-steps strong { font-size: 13px; }
.contact-review-steps span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.contact-data-warning { margin: 26px 0; padding: 17px 18px; border-left: 3px solid var(--signal); background: #e9e7e0; }
.contact-data-warning b { color: var(--signal-dark); font: 750 9px var(--mono); letter-spacing: .08em; }
.contact-data-warning p { margin: 7px 0 0; color: var(--ink); font-size: 11px; line-height: 1.5; }
.contact-identity { display: grid; gap: 9px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-identity strong { font-size: 13px; }
.contact-identity span { margin-bottom: 8px; color: var(--muted); font: 9px var(--mono); }
.inquiry-form { padding: 42px; border: 1px solid var(--line); background: #fff; }
.form-fallback { margin: 20px 0 0; color: var(--muted); font-size: 11px; }
.form-fallback a { color: var(--signal-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label, .consent-field { font-size: 12px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #c8c8c3; border-radius: 0; background: var(--paper-bright); color: var(--ink); padding: 13px 14px; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--signal); box-shadow: 0 0 0 2px rgba(255,92,53,.12); }
.form-field textarea { min-height: 160px; resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; }
.consent-field { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.consent-field input { margin-top: 4px; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.form-status { font-size: 13px; color: var(--muted); }
.form-status.is-error { color: #a22d21; }
.form-status.is-success { color: #117542; }

.entry-content { max-width: 820px; }
.entry-content > * + * { margin-top: 1.35em; }
.entry-content h2 { margin-top: 1.8em; font-size: 38px; letter-spacing: -.03em; }
.entry-content p, .entry-content li { color: #40464d; font-size: 17px; line-height: 1.68; }
.entry-content a { color: var(--signal-dark); text-decoration: underline; }
.article-contact { margin-top: 52px; padding: 32px; border: 1px solid var(--line); background: var(--paper-bright); }
.article-contact h2 { margin: 9px 0 14px; font-size: 30px; }
.article-contact p { margin: 0; }
.article-contact-actions, .research-contact-actions, .investor-contact-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; margin-top: 24px; }
.article-contact .mst-button, .article-contact .text-link { text-decoration: none; }
.article-contact small, .contact-operator { display: block; margin-top: 22px; color: var(--muted); font: 9px var(--mono); }
.text-link-light, .cta-section .contact-operator { color: rgba(255,255,255,.7); }
.form-help { color: var(--muted); font-size: 10px; line-height: 1.5; }

.site-footer { padding: 82px 0 28px; background: #050607; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: 42px; }
.footer-lead p { max-width: 380px; margin: 25px 0; color: rgba(255,255,255,.48); }
.footer-email { color: var(--signal); font: 12px var(--mono); }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column h2 { margin: 0 0 14px; color: rgba(255,255,255,.35); font: 700 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 68px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.3); font: 9px var(--mono); }

.consent-banner { position: fixed; z-index: 200; right: 20px; bottom: 20px; max-width: 410px; padding: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 18px 52px rgba(0,0,0,.2); }
.consent-banner p { margin: 0; font-size: 11px; line-height: 1.55; }
.consent-banner > div { display: flex; gap: 8px; margin-top: 12px; }

.evidence-guide { position: fixed; z-index: 220; right: 20px; bottom: calc(20px + var(--consent-banner-offset)); transition: bottom .2s ease; }
.evidence-guide-launcher { min-height: 52px; padding: 7px 18px 7px 8px; display: inline-flex; align-items: center; gap: 11px; color: #fff; border: 1px solid rgba(88,205,234,.34); border-radius: 28px; background: #17262e; box-shadow: 0 18px 48px rgba(0,0,0,.26); font-weight: 750; }
.evidence-guide-launcher:hover, .evidence-guide-launcher:focus-visible { border-color: #58cdea; background: #1d313b; outline: none; }
.evidence-guide-launcher-mark { width: 36px; height: 36px; display: grid; place-items: center; color: #071014; border-radius: 50%; background: #58cdea; font: 850 13px var(--mono); }
.evidence-guide-launcher-label { font-size: 12px; letter-spacing: .01em; }
.evidence-guide-launcher-mobile { display: none; }
.evidence-guide-panel[hidden] { display: none; }
.evidence-guide-panel { position: absolute; right: 0; bottom: 64px; width: min(480px,calc(100vw - 40px)); height: min(700px,calc(100dvh - 104px - var(--consent-banner-offset))); display: grid; grid-template-rows: auto minmax(0,1fr) auto auto; overflow: hidden; color: var(--ink); border: 1px solid rgba(9,11,14,.22); background: #f8f7f2; box-shadow: 0 28px 90px rgba(0,0,0,.34); }
.evidence-guide-panel > header { min-height: 76px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #fff; background: #17262e; }
.evidence-guide-panel > header span { display: block; color: #58cdea; font: 750 9px var(--mono); letter-spacing: .12em; }
.evidence-guide-panel > header h2 { margin: 5px 0 0; font-size: 22px; line-height: 1.1; letter-spacing: -.02em; }
.evidence-guide-panel > header button { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: transparent; font-size: 24px; line-height: 1; }
.evidence-guide-panel > header button:hover, .evidence-guide-panel > header button:focus-visible { color: #fff; border-color: #58cdea; outline: none; }
.evidence-guide-scroll { min-height: 0; padding: 20px; overflow-y: auto; overscroll-behavior: contain; }
.evidence-guide-intro { padding: 18px; border: 1px solid var(--line); background: #fff; }
.evidence-guide-intro p { margin: 0; color: #48515a; font-size: 14px; line-height: 1.58; }
.evidence-guide-intro small { display: block; margin-top: 12px; color: var(--muted); font: 10px/1.45 var(--mono); }
.evidence-guide-prompts { margin-top: 12px; display: grid; gap: 7px; }
.evidence-guide-prompts button { padding: 13px 14px; color: #12343c; border: 1px solid #83b5bd; background: #e5f2f4; box-shadow: inset 3px 0 0 #38a9bb; font-size: 13px; font-weight: 750; line-height: 1.4; text-align: left; transition: color .16s ease, border-color .16s ease, background .16s ease; }
.evidence-guide-prompts button:hover, .evidence-guide-prompts button:focus-visible { color: #fff; border-color: #58cdea; background: #174650; outline: 2px solid rgba(56,169,187,.3); outline-offset: 1px; }
.evidence-guide-log { display: grid; gap: 12px; margin-top: 16px; }
.evidence-guide-message { padding: 17px 18px; border: 1px solid var(--line); background: #fff; }
.evidence-guide-message.is-question { max-width: 88%; margin-left: auto; color: #fff; border-color: #273943; background: #273943; }
.evidence-guide-message.is-question p { margin: 0; color: #fff; font-size: 14px; line-height: 1.45; }
.evidence-guide-message > small { color: #16727e; font: 750 10px var(--mono); letter-spacing: .11em; }
.evidence-guide-message.is-refusal > small { color: #a8482d; }
.evidence-guide-message h3 { margin: 9px 0 10px; font-size: 18px; line-height: 1.22; }
.evidence-guide-message > p { margin: 0; color: #49515a; font-size: 14px; line-height: 1.58; }
.evidence-guide-message .evidence-guide-boundary { margin-top: 12px; padding-top: 12px; color: #333d44; border-top: 1px solid var(--line); font: 11px/1.55 var(--mono); }
.evidence-guide-sources { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px 16px; }
.evidence-guide-sources a { color: #0e6572; border-bottom: 1px solid currentColor; font: 750 11px/1.4 var(--mono); }
.evidence-guide-followups { margin-top: 15px; display: grid; gap: 7px; }
.evidence-guide-followups button { padding: 10px 12px; color: #12343c; border: 1px solid #a5c4c8; background: #edf6f7; font-size: 12px; font-weight: 750; line-height: 1.35; text-align: left; }
.evidence-guide-followups button:hover, .evidence-guide-followups button:focus-visible { color: #fff; border-color: #174650; background: #174650; outline: 2px solid rgba(56,169,187,.25); outline-offset: 1px; }
.evidence-guide-form { padding: 16px 18px; border-top: 1px solid var(--line); background: #fff; }
.evidence-guide-form > label { display: block; margin-bottom: 8px; color: #4d565e; font: 750 11px/1.4 var(--mono); }
.evidence-guide-form > div { display: grid; grid-template-columns: 1fr auto; }
.evidence-guide-form input { min-width: 0; height: 48px; padding: 0 13px; border: 1px solid #aeb5b8; border-right: 0; border-radius: 0; outline: none; font-size: 14px; }
.evidence-guide-form input:focus { border-color: #16727e; box-shadow: inset 0 0 0 1px #16727e; }
.evidence-guide-form button { min-width: 68px; color: #fff; border: 0; background: #c94325; font-size: 12px; font-weight: 800; }
.evidence-guide-form button:hover, .evidence-guide-form button:focus-visible { background: #a9341c; outline: 2px solid rgba(201,67,37,.25); outline-offset: 1px; }
.evidence-guide-form > p { margin: 8px 0 0; color: #747b81; font: 10px/1.5 var(--mono); }
.evidence-guide-panel > footer { padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.72); background: #0b0f12; }
.evidence-guide-panel > footer a { color: #58cdea; font: 750 11px/1.4 var(--mono); white-space: nowrap; }
.evidence-guide-panel > footer span { font: 9px/1.35 var(--mono); text-align: right; }
body.product-guide-open { --consent-banner-offset: 0px; overflow: hidden; }
body.product-guide-open .consent-banner { visibility: hidden; }
body.product-guide-open .evidence-guide { bottom: 20px; transition: none; }
body.menu-open .evidence-guide { visibility: hidden; pointer-events: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 1; transform: none; transition: opacity .35s ease, transform .35s ease; }
.reveal-delay { transition-delay: .14s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Homepage 0.8 — precision engineering workstation */
.home-kicker { margin: 0 0 16px; color: var(--signal-dark); font: 750 10px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.home-hero { position: relative; overflow: hidden; color: #fff; background: #080b0e; }
.home-hero-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000 0%, transparent 88%); }
.home-hero-layout { position: relative; z-index: 1; min-height: 650px; padding: 112px 0 42px; display: grid; grid-template-columns: minmax(0,.88fr) minmax(500px,1.12fr); gap: 62px; align-items: center; }
.home-hero-copy { min-width: 0; }
.home-hero-copy h1 { max-width: 570px; margin: 0; font-family: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(43px,3.8vw,55px); font-stretch: condensed; font-weight: 700; line-height: 1.02; letter-spacing: -.048em; }
.home-hero-copy h1 em { display: block; color: #58cdea; font-style: normal; white-space: nowrap; }
.home-hero-capability { max-width: 650px; margin: 23px 0 0; color: #fff; font-size: clamp(20px,1.65vw,25px); font-weight: 650; line-height: 1.26; letter-spacing: -.025em; }
.home-hero-deck { max-width: 650px; margin: 13px 0 0; color: rgba(255,255,255,.65); font-size: clamp(15px,1.05vw,17px); line-height: 1.55; }
.home-hero-proof { max-width: 650px; margin-top: 17px; padding: 12px 14px; display: grid; gap: 4px; border-left: 2px solid var(--signal); background: rgba(88,205,234,.06); }
.home-hero-proof strong { color: rgba(255,255,255,.9); font: 650 11px/1.45 var(--mono); }
.home-hero-proof small { color: rgba(255,255,255,.62); font: 10px/1.5 var(--mono); letter-spacing: .015em; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.home-field-note { max-width: 585px; margin-top: 27px; padding: 14px 16px; display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
.home-field-note > span { grid-row: 1 / 3; align-self: center; display: flex; align-items: center; gap: 8px; color: var(--evidence); font: 750 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.home-field-note > span i, .home-hero-output small i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.home-field-note strong { color: rgba(255,255,255,.84); font-size: 12px; }
.home-field-note small { color: rgba(255,255,255,.62); font: 10px var(--mono); }
.home-field-note:hover { border-color: rgba(87,227,155,.48); }
.home-hero-visual { position: relative; min-width: 0; margin: 0; border: 1px solid var(--line-dark); background: #06080a; box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.home-hero-visual img { width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.home-hero-visual figcaption { min-height: 42px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.38); font: 700 8px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.home-hero-visual figcaption a { color: var(--evidence); }
.home-hero-output { position: absolute; left: 18px; bottom: 58px; width: min(310px,calc(100% - 36px)); padding: 15px 16px; display: grid; gap: 4px; border: 1px solid rgba(255,255,255,.18); background: rgba(7,10,12,.9); backdrop-filter: blur(14px); }
.home-hero-output > span { color: rgba(255,255,255,.38); font: 700 8px var(--mono); letter-spacing: .1em; }
.home-hero-output strong { font-size: 14px; }
.home-hero-output small { color: var(--evidence); font: 9px var(--mono); }
.home-asset-lineage { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line-dark); background: #0d1115; }
.home-asset-lineage a { position: relative; min-width: 0; min-height: 92px; padding: 15px 30px 15px 18px; display: grid; align-content: center; border-right: 1px solid var(--line-dark); transition: background .18s ease; }
.home-asset-lineage a:last-child { border-right: 0; }
.home-asset-lineage a:hover { background: rgba(255,255,255,.05); }
.home-asset-lineage span { color: var(--signal); font: 700 8px var(--mono); letter-spacing: .05em; }
.home-asset-lineage strong { margin-top: 8px; font-size: 13px; }
.home-asset-lineage small { margin-top: 3px; overflow: hidden; color: rgba(255,255,255,.62); font: 10px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.home-asset-lineage .lineage-arrow { position: absolute; top: 50%; right: 10px; color: rgba(88,205,234,.66); font: 18px var(--mono); font-style: normal; transform: translateY(-50%); }
.home-asset-lineage a:last-child .lineage-arrow { color: rgba(255,255,255,.36); }

.home-chain { padding: 112px 0 120px; background: #f5f6f4; }
.home-section-heading { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 90px; align-items: end; }
.home-section-heading h2 { max-width: 620px; margin: 0; font-size: clamp(36px,3.6vw,52px); line-height: 1.03; letter-spacing: -.05em; }
.home-section-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.home-process-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border: 1px solid var(--line); background: #fff; }
.home-process-grid > a { min-width: 0; min-height: 275px; padding: 24px 22px; display: flex; flex-direction: column; border-right: 1px solid var(--line); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.home-process-grid > a:last-child { border-right: 0; }
.home-process-grid > a:hover { position: relative; z-index: 1; transform: translateY(-4px); box-shadow: 0 20px 45px rgba(12,18,22,.12); }
.home-process-grid span { color: var(--signal-dark); font: 750 8px var(--mono); letter-spacing: .1em; }
.home-process-grid strong { margin-top: 40px; font-size: 19px; line-height: 1.08; letter-spacing: -.025em; }
.home-process-grid p { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.home-process-grid i { margin-top: auto; padding-top: 24px; font: 750 9px var(--mono); font-style: normal; }
.home-process-grid .home-process-current { color: #fff; background: #0b0f13; }
.home-process-grid .home-process-current span, .home-process-grid .home-process-current i { color: var(--evidence); }
.home-process-grid .home-process-current p { color: rgba(255,255,255,.5); }
.home-chain-feature { margin-top: 28px; display: grid; grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr); border: 1px solid var(--line); background: #e6e9e8; }
.home-chain-feature figure { min-width: 0; margin: 0; display: flex; flex-direction: column; background: #0a0d10; }
.home-chain-feature figure img { width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.home-chain-feature figure figcaption { min-height: 42px; padding: 11px 14px; color: rgba(255,255,255,.46); font: 8px/1.5 var(--mono); }
.home-chain-feature > div { padding: 42px; align-self: center; }
.home-chain-feature h3 { max-width: 450px; margin: 0; font-size: clamp(29px,2.7vw,39px); line-height: 1.03; letter-spacing: -.045em; }
.home-chain-feature > div > p:not(.home-kicker) { color: #565f68; font-size: 15px; }
.home-chain-feature ul { margin: 25px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.home-chain-feature li { position: relative; padding: 11px 0 11px 22px; border-bottom: 1px solid var(--line); color: #3f474e; font-size: 12px; }
.home-chain-feature li::before { position: absolute; left: 0; content: "✓"; color: #168651; font-weight: 800; }
.home-governance-boundary { margin: -12px 0 27px; padding-left: 14px; border-left: 2px solid #83b5bd; color: #38454b !important; font: 10px/1.6 var(--mono) !important; }

.home-accountability { padding: 30px 0 110px; background: #f5f6f4; }
.home-accountability-panel { padding: 58px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.9fr); gap: 78px; color: #fff; background: #0b0e12; box-shadow: 0 30px 90px rgba(13,18,22,.14); }
.home-accountability-thesis h2 { margin: 0; font-size: clamp(36px,3.6vw,52px); line-height: 1.03; letter-spacing: -.05em; }
.home-accountability-thesis h2 em { color: var(--signal); font-style: normal; }
.home-accountability-thesis > p:not(.home-kicker) { max-width: 620px; margin: 24px 0; color: rgba(255,255,255,.55); font-size: 16px; }
.home-accountability-thesis .home-kicker { color: #58cdea; }
.home-obligation-list { border-top: 1px solid var(--line-dark); }
.home-obligation-list article { padding: 20px 0; display: grid; grid-template-columns: 105px 1fr; gap: 5px 20px; border-bottom: 1px solid var(--line-dark); }
.home-obligation-list span { grid-row: 1 / 3; color: var(--evidence); font: 700 8px var(--mono); letter-spacing: .08em; }
.home-obligation-list strong { font-size: 15px; }
.home-obligation-list p { margin: 0; color: rgba(255,255,255,.44); font-size: 11px; }

.home-proof { padding: 112px 0; background: #eceeea; }
.home-proof-layout { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(380px,.88fr); gap: 72px; align-items: center; }
.home-proof-media { position: relative; min-width: 0; border: 1px solid var(--line); background: #0a0d10; }
.home-proof-media img, .home-proof-media video { width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.home-proof-media > p { margin: 0; padding: 11px 14px; color: rgba(255,255,255,.43); font: 8px/1.45 var(--mono); }
.home-proof-status { position: absolute; left: 20px; right: 20px; bottom: 52px; padding: 17px 18px; display: grid; gap: 5px; border: 1px solid rgba(255,255,255,.18); color: #fff; background: rgba(8,11,14,.9); backdrop-filter: blur(12px); }
.home-proof-status span { color: var(--signal); font: 750 8px var(--mono); letter-spacing: .1em; }
.home-proof-status strong { font-size: 17px; }
.home-proof-status small { color: rgba(255,255,255,.48); font: 9px var(--mono); }
.home-proof-copy h2 { margin: 0; font-size: clamp(36px,3.6vw,52px); line-height: 1.03; letter-spacing: -.05em; }
.home-proof-copy > p:not(.home-kicker) { color: var(--muted); font-size: 16px; }
.home-proof-checks { margin-top: 27px; border-top: 1px solid var(--line); }
.home-proof-checks span { padding: 13px 0; display: grid; grid-template-columns: 34px 1fr; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 650; }
.home-proof-checks b { color: var(--signal-dark); font: 750 9px var(--mono); }
.home-proof-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: center; }

.home-field-proof { padding: 88px 0 0; color: #fff; background: #0a0d10; }
.home-field-proof-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 100px; align-items: start; }
.home-field-proof .home-kicker { color: var(--evidence); }
.home-field-proof h2 { max-width: 520px; margin: 0; font-size: clamp(38px,3.8vw,56px); line-height: 1.02; letter-spacing: -.05em; }
.home-field-proof-grid > div:last-child > p { margin: 2px 0 14px; color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.55; }
.home-field-proof-grid > div:last-child > small { display: block; margin-bottom: 24px; color: rgba(255,255,255,.62); font: 10px/1.6 var(--mono); }
.home-audience-links { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); }
.home-audience-links a { min-height: 122px; padding: 25px 24px; display: grid; align-content: center; border-right: 1px solid var(--line-dark); }
.home-audience-links a:last-child { border-right: 0; }
.home-audience-links a:hover { background: rgba(255,255,255,.045); }
.home-audience-links span { color: rgba(255,255,255,.35); font: 700 8px var(--mono); letter-spacing: .1em; }
.home-audience-links strong { margin-top: 12px; font-size: 15px; }

.home-resources-v2 { padding: 112px 0; background: #f5f6f4; }
.home-resources-heading-v2 { align-items: center; }
.home-resource-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.home-resource-tile { position: relative; min-width: 0; border: 1px solid var(--line); background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.home-resource-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(13,18,22,.11); }
.home-resource-tile picture { display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #090c0f; }
.home-resource-tile img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .3s ease; }
.home-resource-tile:hover img { transform: scale(1.025); }
.home-resource-image-note { position: absolute; top: 14px; left: 14px; padding: 5px 7px; color: rgba(255,255,255,.72); background: rgba(7,10,12,.76); font: 700 7px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.home-resource-tile > div { min-height: 218px; padding: 25px; display: flex; flex-direction: column; }
.home-resource-tile span { color: var(--signal-dark); font: 750 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.home-resource-tile h3 { margin: 27px 0 20px; font-size: 21px; line-height: 1.12; letter-spacing: -.03em; }
.home-resource-tile i { margin-top: auto; font: 750 9px var(--mono); font-style: normal; }
.home-resource-directory { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 15px 34px; justify-content: flex-end; }
.home-resource-directory a { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 750; }

.home-final-cta { padding: 92px 0; color: #fff; border-top: 1px solid var(--line-dark); background: #080a0d; }
.home-final-cta .home-kicker { color: #58cdea; }
.home-final-cta-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 90px; align-items: end; }
.home-final-cta h2 { margin: 0; font-size: clamp(38px,3.8vw,56px); line-height: 1.02; letter-spacing: -.05em; }
.home-final-cta-grid > div:last-child > p { margin: 0 0 28px; color: rgba(255,255,255,.56); font-size: 17px; }
.home-final-cta-grid > div:last-child > div { display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: center; }

@media (max-width: 1100px) {
	:root { --shell: min(100% - 40px, 980px); }
	.site-nav { gap: 3px; }
	.nav-group-toggle { padding-inline: 6px; font-size: 11px; }
	.nav-demo { padding-inline: 12px; }
	.hero-layout { grid-template-columns: 1fr; gap: 70px; padding-top: 150px; }
	.hero-copy { max-width: 820px; }
	.hero-system, .hero-visual { max-width: 820px; }
	.compiler-pipeline { grid-template-columns: repeat(2, 1fr); }
	.compiler-pipeline article, .compiler-pipeline article:nth-child(4n), .compiler-pipeline article:nth-child(n+5) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
	.compiler-pipeline article:nth-child(even) { border-right: 0; }
	.compiler-pipeline article:nth-last-child(-n+2) { border-bottom: 0; }
	.trace-map { grid-template-columns: 1fr; }
	.trace-map > i { transform: rotate(90deg); }
	.outcome-contract { grid-template-columns: 1fr; }
	.outcome-contract i { transform: rotate(90deg); text-align: center; }
	.workflow-rail { grid-template-columns: repeat(3, 1fr); }
	.workflow-rail article:nth-child(3) { border-right: 0; }
	.workflow-rail article:nth-child(-n+3) { border-bottom: 1px solid var(--line-dark); }
	.evidence-feature { grid-template-columns: 1fr; }
	.home-resource-columns { grid-template-columns: 1fr; }
	.page-hero-layout { grid-template-columns: 1fr; }
	.page-hero-copy { max-width: 760px; }
	.page-hero-visual { max-width: 820px; }
	.kernel-band { grid-template-columns: 1fr; }
	.product-layer-grid { grid-template-columns: repeat(2, 1fr); }
	.product-layer-grid article:nth-child(2) { border-right: 0; }
	.product-layer-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.product-contract-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.technology-index-heading, .feature-intro-grid, .compiler-contract, .evidence-workbench { grid-template-columns: 1fr; gap: 48px; }
	.workbench-thesis { position: static; }
	.native-run-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.native-run-rail article { border-bottom: 1px solid var(--line); }
	.native-run-rail article:nth-child(3) { border-right: 0; }
	.native-run-rail article:nth-child(n+4) { border-bottom: 0; }
	.reader-track-grid { grid-template-columns: repeat(2, 1fr); }
	.reader-track-grid article:last-child { grid-column: 1 / -1; }
	.research-decision-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.research-decision-links a { border-bottom: 1px solid var(--line-dark); }
	.research-decision-links a:nth-child(even) { border-right: 0; }
	.research-decision-links a:last-child { grid-column: 1 / -1; border-bottom: 0; }
	.home-hero-layout { grid-template-columns: 1fr; padding-top: 125px; }
	.home-hero-copy { max-width: 780px; }
	.home-hero-visual { max-width: 900px; }
	.home-asset-lineage { grid-template-columns: repeat(2,1fr); }
	.home-asset-lineage a:nth-child(2) { border-right: 0; }
	.home-asset-lineage a:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
	.home-process-grid { grid-template-columns: repeat(2,1fr); }
	.home-process-grid > a { border-bottom: 1px solid var(--line); }
	.home-process-grid > a:nth-child(even) { border-right: 0; }
	.home-process-grid > a:last-child { grid-column: 1 / -1; border-bottom: 0; }
	.home-chain-feature, .home-proof-layout { grid-template-columns: 1fr; }
	.home-chain-feature > div { padding: 38px; }
	.home-accountability-panel { grid-template-columns: 1fr; gap: 48px; }
	.article-compiler-chain { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 781px) and (max-height: 520px) {
	.home-hero-layout { min-height: 0; padding: 76px 0 26px; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: 28px; align-items: start; }
	.home-hero-copy h1 { font-size: 34px; }
	.home-hero-copy h1 em { display: inline; white-space: normal; }
	.home-hero-capability { margin-top: 10px; font-size: 16px; line-height: 1.22; }
	.home-hero-deck { display: none; }
	.home-hero-proof { margin-top: 9px; padding: 7px 9px; }
	.home-hero-proof strong, .home-hero-proof small { font-size: 10px; }
	.home-hero-actions { margin-top: 9px; gap: 7px; }
	.home-hero-actions .mst-button { min-height: 35px; padding: 0 11px; font-size: 8px; }
	.home-field-note { margin-top: 9px; padding: 8px 10px; }
	.home-field-note > span, .home-field-note small { font-size: 10px; }
	.home-field-note strong { font-size: 10px; }
	.home-asset-lineage { grid-template-columns: repeat(2,1fr); }
	.home-asset-lineage a { min-height: 68px; }
}

@media (max-width: 780px) {
	:root { --shell: calc(100vw - 28px); --header-height: 66px; }
	.menu-toggle { display: block; }
	.site-nav { position: fixed; inset: var(--header-height) 0 auto; z-index: 1; width: 100%; height: calc(100dvh - var(--header-height)); padding: 30px 24px 60px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; background: #090b0e; }
	.site-nav.is-open { display: flex; }
	.nav-group { border-bottom: 1px solid var(--line-dark); }
	.nav-group-toggle { width: 100%; min-height: 58px; padding: 0; justify-content: space-between; font-size: 17px; text-align: left; }
	.nav-dropdown { position: static; width: auto; padding: 0 0 14px 12px; display: none; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.nav-group.is-open .nav-dropdown { display: grid; }
	.nav-dropdown a { padding: 11px 0; border: 0; }
	.nav-dropdown a:hover, .nav-dropdown a:focus { border: 0; background: transparent; }
	.nav-dropdown strong { font-size: 14px; }
	.nav-dropdown small { font-size: 9px; }
	.site-nav > .nav-demo { padding: 17px 0; border-bottom: 1px solid var(--line-dark); font-size: 17px !important; }
	.site-nav .mst-button { margin-top: 22px; }
	.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
	.hero, .hero-layout { min-height: auto; }
	.hero-layout { padding-top: 130px; padding-bottom: 70px; gap: 55px; }
	.hero h1 { font-size: clamp(44px, 13vw, 58px); }
	.hero-deck { font-size: 17px; }
	.hero-actions { align-items: stretch; flex-direction: column; }
	.hero-facts { grid-template-columns: 1fr; }
	.hero-facts div { padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
	.system-input { grid-template-columns: 1fr; }
	.system-input > div:not(:first-child) { display: none; }
	.statement-row { grid-template-columns: 1fr; padding-block: 12px; }
	.statement-row p { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
	.mst-section { padding: 82px 0; }
	.split-heading, .comparison-grid, .paradigm-compare, .deployment-card, .entity-callout, .cta-grid, .page-grid-2, .product-contract-intro, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
	.product-contract-steps { grid-template-columns: 1fr; margin-top: 42px; }
	.product-contract-steps li { min-height: 220px; }
	.compiler-pipeline, .moat-grid, .kernel-domains, .product-layer-grid, .ir-adapters, .research-pillar-grid, .reader-track-grid, .research-post-grid, .citation-standard, .article-layout { grid-template-columns: 1fr; }
	.compiler-pipeline article, .compiler-pipeline article:nth-child(even), .compiler-pipeline article:nth-last-child(-n+2) { min-height: 205px; border-right: 0; border-bottom: 1px solid var(--line); }
	.compiler-pipeline article:last-child { border-bottom: 0; }
	.scope-note { grid-template-columns: 1fr; }
	.moat-grid article { min-height: 240px; }
	.kernel-domains article + article { border-left: 0; border-top: 1px solid var(--line); }
	.product-layer-grid article, .product-layer-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
	.product-layer-grid article:last-child { border-bottom: 0; }
	.reader-track-grid article:last-child { grid-column: auto; }
	.research-decision-section { padding-top: 46px; }
	.research-decision-heading, .research-decision-links { grid-template-columns: 1fr; }
	.research-decision-heading { gap: 20px; }
	.research-decision-links { margin-top: 34px; }
	.research-decision-links a, .research-decision-links a:nth-child(even), .research-decision-links a:last-child { grid-column: auto; min-height: 138px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
	.research-decision-links a:last-child { border-bottom: 0; }
	.research-post-grid footer { align-items: flex-start; flex-direction: column; }
	.research-post-grid em { text-align: left; }
	.kernel-band { padding: 26px; }
	.ir-flow > article { grid-template-columns: 1fr; }
	.ir-flow > article > small { grid-column: auto; }
	.comparison-card { min-height: 0; padding: 28px; }
	.workflow-rail { grid-template-columns: 1fr 1fr; }
	.workflow-rail article, .workflow-rail article:nth-child(3) { border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
	.workflow-rail article:nth-child(even) { border-right: 0; }
	.video-placeholder { min-height: 360px; padding: 30px; }
	.video-proof-strip { grid-template-columns: 1fr 1fr; }
	.audience-grid, .evidence-card-grid, .page-grid-3, .footer-grid, .home-resource-list, .resource-directory, .technology-directory, .feature-fact-grid, .physical-decision-grid, .ir-schema-grid, .benchmark-grid, .proof-matrix, .benchmark-outcomes, .native-run-rail { grid-template-columns: 1fr; }
	.technology-route { min-height: 280px; }
	.trace-ledger article { grid-template-columns: 1fr; gap: 8px; }
	.trace-ledger article strong { margin: 8px 0; }
	.contract-rows > div { grid-template-columns: 1fr; gap: 8px; }
	.solver-contract { grid-template-columns: 1fr; }
	.solver-contract i { transform: rotate(90deg); text-align: center; }
	.adapter-contract { grid-template-columns: 1fr; }
	.adapter-contract > i { transform: rotate(90deg); }
	.native-run-rail article, .native-run-rail article:nth-child(3), .native-run-rail article:nth-child(n+4) { border-right: 0; border-bottom: 1px solid var(--line); }
	.native-run-rail article:last-child { border-bottom: 0; }
	.feature-next { align-items: flex-start; flex-direction: column; }
	.feature-next-actions { align-items: flex-start; flex-direction: column; }
	.home-resources-heading { align-items: flex-start; flex-direction: column; }
	.audience-card { min-height: 280px; }
	.page-hero { padding: 112px 0 62px; }
	.page-hero-with-visual { padding: 82px 0 28px; }
	.page-hero-layout { gap: 38px; }
	.page-hero-copy h1 { font-size: clamp(33px, 9.6vw, 39px); }
	.page-hero-copy .page-deck { font-size: 16px; }
	.boundary-row { grid-template-columns: 1fr; }
	.boundary-row > div:first-child { border-right: 0; }
	.diligence-list, .form-grid { grid-template-columns: 1fr; }
	.form-field-full { grid-column: auto; }
	.inquiry-form { padding: 24px; }
	.investor-evidence-grid { grid-template-columns: 1fr; }
	.investor-evidence-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
	.investor-evidence-grid article:last-child { border-bottom: 0; }
	.article-contact { padding: 24px; }
	.article-contact-actions, .research-contact-actions, .investor-contact-actions { align-items: flex-start; flex-direction: column; }
	.contact-notes { position: static; }
	.contact-hero { padding: 104px 0 40px; }
	.contact-hero .page-deck { font-size: 15px; }
	.article-layout > aside { position: static; }
	.article-hero { padding: 118px 0 58px; }
	.article-hero h1 { font-size: clamp(38px,10.5vw,42px); line-height: 1.04; }
	.article-hero .page-deck { font-size: 16px; line-height: 1.6; }
	.article-meta { margin-top: 28px; }
	.article-answer { padding: 20px; font-size: 16.5px; }
	.article-jump-nav { margin: 24px 0 34px; gap: 12px 20px; }
	.article-meter-compare { grid-template-columns: 1fr; }
	.article-meter-compare > header { grid-column: auto; padding: 22px; }
	.article-meter-compare h2 { font-size: 25px; }
	.meter-card { padding: 25px 22px; }
	.meter-card p { min-height: 0; }
	.meter-separator { min-height: 60px; border-inline: 0; border-block: 1px solid var(--line); }
	.meter-separator small { writing-mode: horizontal-tb; }
	.article-evidence-ledger, .article-contract-list, .article-compiler-chain, .article-audience-paths, .article-proof-routes { grid-template-columns: 1fr; }
	.article-evidence-ledger > header, .article-proof-routes > header { grid-column: auto; }
	.article-evidence-ledger > div { border-right: 0; border-bottom: 1px solid var(--line); }
	.article-evidence-ledger > div:last-child { border-bottom: 0; }
	.article-contract-list li, .article-compiler-chain li { min-height: 0; }
	.article-field-status { padding: 24px; }
	.article-audience-paths a:last-child, .article-proof-routes > a:last-child { grid-column: auto; }
	.article-audience-paths a, .article-audience-paths a:last-child, .article-proof-routes > a { min-height: 150px; border-right: 1px solid var(--line); }
	.article-proof-routes > a:nth-of-type(even) { border-right: 1px solid var(--line); }
	.article-equations p { grid-template-columns: 1fr; gap: 8px; }
	.article-content h2 { font-size: 31px; line-height: 1.12; }
	.entry-content p, .entry-content li { font-size: 16.5px; line-height: 1.65; }
	.footer-grid { gap: 38px; }
	.footer-legal { flex-direction: column; }
	.consent-banner { left: 14px; right: 14px; bottom: 14px; }
	.evidence-guide { right: 14px; bottom: calc(14px + var(--consent-banner-offset)); }
	.evidence-guide-launcher { min-width: 52px; padding-right: 8px; }
	.evidence-guide-launcher-label, .evidence-guide-launcher-mobile { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
	.evidence-guide-panel { position: fixed; inset: auto 0 var(--consent-banner-offset); width: 100%; height: min(calc(78dvh - var(--consent-banner-offset)),680px); border-inline: 0; border-bottom: 0; }
	body.product-guide-open .evidence-guide-launcher { visibility: hidden; }
	.evidence-guide-panel > footer { align-items: flex-start; flex-direction: column; }
	.evidence-guide-panel > footer span { text-align: left; }
	.home-hero { min-height: 0; }
	.home-hero-layout { min-height: 0; padding: 112px 0 48px; gap: 48px; }
	.home-hero-copy h1 { font-size: clamp(43px,12vw,56px); }
	.home-hero-copy h1 em { white-space: normal; }
	.home-hero-capability { font-size: 21px; }
	.home-hero-deck { font-size: 16px; }
	.home-hero-actions { align-items: stretch; flex-direction: column; }
	.home-field-note { grid-template-columns: 1fr; }
	.home-field-note > span { grid-row: auto; }
	.home-hero-output { left: 12px; right: 12px; bottom: 51px; width: auto; }
	.home-hero-visual figcaption { align-items: flex-start; flex-direction: column; padding-block: 11px; }
	.home-asset-lineage { width: 100%; grid-template-columns: 1fr; border-inline: 0; }
	.home-asset-lineage a, .home-asset-lineage a:nth-child(2) { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
	.home-asset-lineage a:last-child { border-bottom: 0; }
	.home-chain, .home-proof, .home-resources-v2 { padding: 78px 0; }
	.home-section-heading, .home-field-proof-grid, .home-final-cta-grid { grid-template-columns: 1fr; gap: 28px; }
	.home-section-heading h2, .home-proof-copy h2 { font-size: 38px; }
	.home-section-heading > p { font-size: 15px; }
	.home-process-grid { grid-template-columns: 1fr; }
	.home-process-grid > a, .home-process-grid > a:nth-child(even) { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
	.home-process-grid > a:last-child { grid-column: auto; }
	.home-chain-feature > div, .home-accountability-panel { padding: 28px; }
	.home-accountability { padding: 0 0 78px; }
	.home-accountability-thesis h2 { font-size: 37px; }
	.home-obligation-list article { grid-template-columns: 1fr; }
	.home-obligation-list span { grid-row: auto; }
	.home-proof-layout { gap: 40px; }
	.home-proof-status { left: 12px; right: 12px; bottom: 50px; }
	.home-proof-actions { align-items: stretch; flex-direction: column; }
	.home-field-proof { padding-top: 70px; }
	.home-field-proof-grid > div:last-child > p { font-size: 17px; }
	.home-audience-links { margin-top: 54px; grid-template-columns: 1fr; }
	.home-audience-links a { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
	.home-audience-links a:last-child { border-bottom: 0; }
	.home-resource-grid { grid-template-columns: 1fr; }
	.home-resource-directory { justify-content: flex-start; }
	.home-final-cta { padding: 76px 0; }
	.home-final-cta-grid { gap: 35px; }
	.home-final-cta-grid > div:last-child > div { align-items: stretch; flex-direction: column; }
}

@media (max-width: 780px) and (max-height: 520px) {
	.consent-banner { left: auto; right: 10px; bottom: 10px; width: min(330px,calc(100vw - 20px)); padding: 9px 10px; }
	.consent-banner p { font-size: 8px; line-height: 1.35; }
	.consent-banner > div { margin-top: 6px; }
	.consent-banner .mst-button { min-height: 30px; padding: 0 8px; font-size: 7px; }
	.home-hero-layout { min-height: 0; padding: 76px 0 24px; gap: 18px; }
	.home-hero-copy h1 { max-width: none; font-size: 30px; line-height: 1.02; }
	.home-hero-copy h1 em { display: inline; white-space: normal; }
	.home-hero-capability { margin-top: 7px; font-size: 15px; line-height: 1.2; }
	.home-hero-deck, .home-field-note, .home-hero-visual { display: none; }
	.home-hero-proof { margin-top: 8px; padding: 7px 9px; }
	.home-hero-proof strong, .home-hero-proof small { font-size: 9px; }
	.home-hero-actions { margin-top: 8px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }
	.home-hero-actions .mst-button { width: 100%; min-height: 34px; padding: 0 7px; font-size: 8px; }
	.home-asset-lineage { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.home-asset-lineage a, .home-asset-lineage a:nth-child(2) { min-height: 66px; border-right: 1px solid var(--line-dark); }
	.home-asset-lineage a:nth-child(even) { border-right: 0; }
}

/* Keep the public guide usable on short landscape viewports with enough width for two rails. */
@media (min-width: 600px) and (max-height: 520px) {
	body.product-guide-open .evidence-guide-launcher { visibility: hidden; }
	.evidence-guide-panel {
		position: fixed;
		inset: 0;
		width: auto;
		height: auto;
		border: 0;
		grid-template-columns: minmax(0,1fr) minmax(280px,320px);
		grid-template-rows: auto minmax(0,1fr) auto;
	}
	.evidence-guide-panel > header { grid-column: 1 / -1; }
	.evidence-guide-scroll { grid-column: 1; grid-row: 2 / 4; }
	.evidence-guide-form { grid-column: 2; grid-row: 2; }
	.evidence-guide-panel > footer { grid-column: 2; grid-row: 3; align-items: flex-start; flex-direction: column; }
	.evidence-guide-panel > footer span { text-align: left; }
}

/* A genuinely narrow short phone uses one scrollable sheet so every control stays reachable. */
@media (max-width: 599px) and (max-height: 520px) {
	body.product-guide-open .evidence-guide-launcher { visibility: hidden; }
	.evidence-guide-panel {
		position: fixed;
		inset: 0;
		width: auto;
		height: auto;
		max-height: none;
		display: block;
		overflow-y: auto;
		overscroll-behavior: contain;
		border: 0;
	}
	.evidence-guide-panel > header { position: sticky; z-index: 2; top: 0; }
	.evidence-guide-scroll { min-height: 0; overflow: visible; }
	.evidence-guide-form, .evidence-guide-panel > footer { position: relative; z-index: 1; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	.reveal { opacity: 1; transform: none; }
}
