:root {
	--ink: #142923;
	--ink-2: #233b34;
	--ink-3: #315048;
	--text: #4d5f59;
	--text-light: #d8e1dc;
	--paper: #f4f0e7;
	--paper-light: #fbf9f4;
	--paper-deep: #e9e2d5;
	--rule: #c9c2b5;
	--rule-dark: #8f9a93;
	--sage: #dbe4dd;
	--teal: #2f6b62;
	--rust: #a84a32;
	--rust-soft: #ead0c7;
	--ochre: #704b14;
	--code: #11231e;
	--white: #ffffff;
	--max-width: 1320px;
	--article-width: 1260px;
	--sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
	--serif: "Source Serif 4", Georgia, serif;
	--mono: "IBM Plex Mono", Consolas, monospace;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	overflow-x: hidden;
	overflow-x: clip;
	background:
		radial-gradient(circle at 8% 3%, rgba(47, 107, 98, 0.07), transparent 27rem),
		linear-gradient(rgba(20, 41, 35, 0.026) 1px, transparent 1px) 0 0 / 100% 32px,
		var(--paper-light);
	color: var(--text);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.66;
	text-rendering: optimizeLegibility;
}

.skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100;
	padding: 0.65rem 0.85rem;
	transform: translateY(-180%);
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.7rem;
	text-decoration: none;
	text-transform: uppercase;
}

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

::selection {
	background: var(--rust-soft);
	color: var(--ink);
}

a {
	color: inherit;
	text-decoration-color: rgba(168, 74, 50, 0.55);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--rust);
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

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

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--serif);
	font-weight: 600;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

code {
	padding: 0.08em 0.28em;
	background: rgba(20, 41, 35, 0.07);
	color: var(--ink-2);
	font-family: var(--mono);
	font-size: 0.85em;
}

.code-panel code {
	padding: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
}

.research-site main,
.site-footer {
	width: min(calc(100% - 56px), var(--max-width));
	margin-inline: auto;
}

.section-label,
.mini-label {
	margin: 0 0 0.72rem;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.45;
	text-transform: uppercase;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	width: 100%;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	padding-inline: max(28px, calc((100% - var(--max-width)) / 2));
	background: rgba(251, 249, 244, 0.94);
	border-bottom: 1px solid var(--ink);
	backdrop-filter: blur(14px);
}

.site-mark {
	display: inline-flex;
	align-items: center;
	gap: 0.78rem;
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.68rem;
	letter-spacing: 0.055em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-mark span {
	display: grid;
	width: 37px;
	height: 37px;
	place-items: center;
	background: var(--ink);
	color: var(--paper-light);
	font-size: 0.63rem;
}

.site-mark strong {
	font-weight: 500;
}

.site-header nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.6vw, 2.5rem);
}

.site-header nav a {
	color: var(--ink-3);
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-header nav a:hover {
	color: var(--rust);
}

.action-row {
	display: flex;
	gap: 0.72rem;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.compact-actions {
	margin-top: 1.45rem;
}

.button {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1rem;
	border: 1px solid var(--ink);
	font-family: var(--mono);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.button-primary {
	background: var(--ink);
	color: var(--paper-light);
}

.button-primary:hover {
	background: var(--rust);
	border-color: var(--rust);
	color: var(--white);
}

.button-quiet {
	background: transparent;
	color: var(--ink);
}

.button-quiet:hover {
	background: var(--sage);
	color: var(--ink);
}

.text-link {
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	margin-left: 0.3rem;
	color: var(--rust);
}

figcaption {
	margin-top: 0.72rem;
	color: var(--text);
	font-family: var(--mono);
	font-size: 0.61rem;
	line-height: 1.55;
}

.status-chip,
.decision-status,
.inline-status {
	display: inline-flex;
	align-items: center;
	width: max-content;
	padding: 0.38rem 0.58rem;
	border: 1px solid currentColor;
	font-family: var(--mono);
	font-size: 0.57rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.status-frozen,
.status-canonical {
	color: #2f7164;
}

.status-narrow {
	color: var(--ochre);
}

.status-research {
	color: #3c6684;
}

.status-rejected {
	color: var(--rust);
}

/* Home */

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
	gap: clamp(3rem, 6vw, 6.5rem);
	min-height: 710px;
	align-items: center;
	padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.hero-copy {
	animation: enter-up 620ms ease both;
}

.hero-copy h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(3.4rem, 5.7vw, 5.5rem);
	letter-spacing: -0.052em;
	line-height: 0.95;
}

.hero-deck {
	max-width: 690px;
	margin: 1.8rem 0 0;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
	line-height: 1.7;
}

.credential-line {
	display: flex;
	gap: 0.55rem 1.15rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
	color: var(--ink-2);
	font-family: var(--mono);
	font-size: 0.63rem;
	letter-spacing: 0.02em;
}

.credential-line span + span::before {
	margin-right: 1.15rem;
	color: var(--rule-dark);
	content: "/";
}

.hero-figure {
	min-width: 0;
	margin: 0;
	animation: enter-up 700ms 100ms ease both;
}

.plot-frame {
	position: relative;
	padding: 2.8rem 1.05rem 1rem;
	background:
		linear-gradient(rgba(20, 41, 35, 0.075) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 41, 35, 0.075) 1px, transparent 1px),
		var(--paper-deep);
	background-size: 26px 26px;
	border: 1px solid var(--ink);
	box-shadow: 16px 16px 0 var(--sage);
}

.plot-meta {
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	width: 100%;
	grid-template-columns: 0.6fr 0.9fr 1.5fr;
	min-height: 36px;
	align-items: center;
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.53rem;
	letter-spacing: 0.035em;
}

.plot-meta span {
	padding: 0 0.72rem;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.plot-meta span:last-child {
	border-right: 0;
	text-align: right;
}

.plot-frame img {
	width: 100%;
	background: var(--white);
	border: 1px solid var(--rule-dark);
}

.hero-figure figcaption {
	padding-left: 0.15rem;
}

.publication-panel {
	display: grid;
	grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
	min-height: 590px;
	background: var(--ink);
	color: var(--text-light);
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	animation: enter-up 700ms 180ms ease both;
}

.report-cover-wrap {
	display: grid;
	place-items: center;
	padding: clamp(2rem, 4vw, 4rem);
	background:
		linear-gradient(rgba(20, 41, 35, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 41, 35, 0.07) 1px, transparent 1px),
		var(--sage);
	background-size: 28px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.report-cover-wrap a {
	display: block;
	width: min(100%, 295px);
	box-shadow: 12px 14px 0 rgba(20, 41, 35, 0.18);
	transition: transform 180ms ease;
}

.report-cover-wrap a:hover {
	transform: translateY(-4px) rotate(-0.35deg);
}

.report-cover-wrap img {
	width: 100%;
	border: 1px solid rgba(20, 41, 35, 0.35);
}

.publication-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.5rem, 6vw, 5.6rem);
}

.publication-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: start;
}

.publication-heading h2 {
	max-width: 820px;
	margin: 0;
	color: var(--paper-light);
	font-size: clamp(2.4rem, 4.2vw, 4.1rem);
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.publication-panel .section-label {
	color: #e7a18e;
}

.publication-panel .status-frozen {
	color: #9bc2b6;
}

.publication-abstract {
	max-width: 890px;
	margin: 1.6rem 0 2rem;
	font-size: 0.96rem;
}

.publication-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.publication-facts div {
	min-height: 110px;
	padding: 1.15rem;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.publication-facts div:last-child {
	border-right: 0;
}

.publication-facts strong,
.publication-facts span {
	display: block;
}

.publication-facts strong {
	margin-bottom: 1rem;
	color: var(--paper-light);
	font-family: var(--serif);
	font-size: 2rem;
	line-height: 1;
}

.publication-facts span {
	font-family: var(--mono);
	font-size: 0.56rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.publication-panel .button-primary {
	background: var(--paper-light);
	border-color: var(--paper-light);
	color: var(--ink);
}

.publication-panel .button-primary:hover {
	background: var(--rust);
	border-color: var(--rust);
	color: var(--white);
}

.publication-panel .button-quiet {
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--paper-light);
}

.publication-panel .button-quiet:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.publication-panel .text-link {
	margin-left: 0.4rem;
	color: var(--paper-light);
}

.primary-project,
.methods-section,
.decision-section,
.secondary-project,
.profile-section {
	padding: clamp(5rem, 9vw, 8.5rem) 0;
	border-bottom: 1px solid var(--ink);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
	max-width: 850px;
	margin: 0;
	font-size: clamp(2.6rem, 4.5vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.section-heading > p {
	margin: 0;
	padding-top: 1rem;
	border-top: 3px solid var(--rust);
	font-size: 0.86rem;
}

.system-grid {
	display: grid;
	grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}

.system-copy h3 {
	margin-bottom: 1.1rem;
	font-size: clamp(2rem, 3vw, 3rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.system-copy > p {
	font-size: 0.93rem;
}

.tag-list {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
	margin: 1.6rem 0 0;
	padding: 0;
	list-style: none;
}

.tag-list li,
.project-facts span {
	padding: 0.37rem 0.55rem;
	border: 1px solid rgba(20, 41, 35, 0.35);
	color: var(--ink-2);
	font-family: var(--mono);
	font-size: 0.58rem;
	line-height: 1;
}

.architecture-figure {
	margin: 0;
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.result-band {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: clamp(3rem, 6vw, 5rem);
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.result-band div {
	min-height: 138px;
	padding: 1.25rem 1rem;
	border-right: 1px solid var(--rule);
}

.result-band div:last-child {
	border-right: 0;
}

.result-band strong,
.result-band span {
	display: block;
}

.result-band strong {
	margin-bottom: 1.35rem;
	color: var(--ink);
	font-family: var(--serif);
	font-size: clamp(1.7rem, 2.4vw, 2.35rem);
	font-weight: 600;
	line-height: 1;
}

.result-band span {
	font-family: var(--mono);
	font-size: 0.57rem;
	line-height: 1.45;
	text-transform: uppercase;
}

.caution-result {
	background: rgba(168, 74, 50, 0.08);
}

.caution-result strong {
	color: var(--rust);
}

.evidence-mosaic {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: 1.25rem;
	margin-top: 3rem;
}

.evidence-mosaic figure {
	margin: 0;
	padding: 0.85rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.evidence-mosaic img {
	width: 100%;
	height: 100%;
	max-height: 460px;
	object-fit: contain;
}

.methods-table {
	border-top: 1px solid var(--ink);
}

.methods-row {
	display: grid;
	grid-template-columns: 0.8fr 1.1fr 1.25fr 1.15fr;
	border-bottom: 1px solid var(--rule);
}

.methods-row span {
	padding: 0.95rem 0.8rem;
	border-right: 1px solid var(--rule);
	font-size: 0.74rem;
	line-height: 1.45;
}

.methods-row span:last-child {
	border-right: 0;
}

.methods-head {
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.methods-head span {
	font-size: inherit;
}

.implementation-split {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
	margin-top: clamp(3rem, 6vw, 5.5rem);
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--sage);
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.implementation-split h3 {
	margin-bottom: 1rem;
	font-size: clamp(2rem, 3.5vw, 3.2rem);
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.implementation-split p:last-child {
	margin-bottom: 0;
}

.code-sample {
	min-width: 0;
}

.code-panel {
	max-width: 100%;
	margin: 1.6rem 0;
	padding: clamp(1.2rem, 3vw, 2rem);
	overflow-x: auto;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 28px,
		var(--code);
	border: 1px solid #2d493f;
	color: #e5ede8;
	font-family: var(--mono);
	font-size: clamp(0.65rem, 1vw, 0.76rem);
	line-height: 1.72;
	tab-size: 4;
	white-space: pre;
}

.code-dim {
	color: #88a69c;
}

.code-source {
	color: var(--ink-2);
	font-family: var(--mono);
	font-size: 0.59rem;
	text-decoration: none;
	text-transform: uppercase;
}

.decision-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.decision-grid article {
	min-height: 310px;
	padding: 1.4rem;
	background: rgba(251, 249, 244, 0.72);
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.decision-grid h3 {
	margin: 3.2rem 0 0.75rem;
	font-size: 1.45rem;
	line-height: 1.12;
}

.decision-grid p {
	margin: 0;
	font-size: 0.77rem;
	line-height: 1.57;
}

.decision-path-figure {
	margin: 2.5rem 0 0;
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.decision-path-figure img {
	width: 100%;
}

.secondary-project {
	display: grid;
	grid-template-columns: 70px minmax(310px, 0.9fr) minmax(340px, 1.1fr);
	gap: clamp(1.8rem, 5vw, 5rem);
	align-items: center;
}

.project-number {
	align-self: start;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.68rem;
}

.secondary-copy h2 {
	margin-bottom: 1.2rem;
	font-size: clamp(2.5rem, 4.2vw, 4.1rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.secondary-copy > p:not(.section-label) {
	font-size: 0.91rem;
}

.project-facts {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
	margin-top: 1.6rem;
}

.secondary-project figure {
	margin: 0;
	padding: 0.85rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.profile-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.profile-section h2 {
	margin: 0;
	font-size: clamp(2.6rem, 4.5vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.profile-copy > p {
	max-width: 760px;
	font-size: 1rem;
}

.profile-ledger {
	margin-top: 2.3rem;
	border-top: 1px solid var(--ink);
}

.profile-ledger div {
	display: grid;
	grid-template-columns: 150px 1fr;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--rule);
}

.profile-ledger span {
	font-family: var(--mono);
	font-size: 0.59rem;
	text-transform: uppercase;
}

.profile-ledger strong {
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 500;
}

.site-footer {
	display: flex;
	min-height: 260px;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	padding: 3.5rem 0;
}

.site-footer h2 {
	margin-bottom: 0.5rem;
	font-size: 2.1rem;
}

.site-footer p:not(.section-label) {
	margin: 0;
	font-size: 0.76rem;
}

.footer-links {
	display: flex;
	gap: 1.4rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-family: var(--mono);
	font-size: 0.62rem;
	text-transform: uppercase;
}

/* Technical companion */

.report-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
	gap: clamp(3rem, 7vw, 7rem);
	align-items: end;
	padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6rem);
	border-bottom: 1px solid var(--ink);
}

.report-hero-copy {
	animation: enter-up 620ms ease both;
}

.report-hero h1 {
	max-width: 930px;
	margin: 0;
	font-size: clamp(3rem, 5.2vw, 5rem);
	letter-spacing: -0.05em;
	line-height: 0.96;
}

.report-deck {
	max-width: 820px;
	margin: 1.65rem 0 0;
	font-size: 1rem;
	line-height: 1.7;
}

.article-meta {
	display: flex;
	gap: 0.55rem 1.2rem;
	flex-wrap: wrap;
	margin-top: 1.4rem;
	color: var(--ink-2);
	font-family: var(--mono);
	font-size: 0.59rem;
	text-transform: uppercase;
}

.article-meta span + span::before {
	margin-right: 1.2rem;
	color: var(--rule-dark);
	content: "/";
}

.report-entry {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 1.15rem;
	align-items: center;
	padding: 1.15rem;
	background: var(--sage);
	border-top: 3px solid var(--rust);
	border-bottom: 1px solid var(--ink);
	animation: enter-up 700ms 100ms ease both;
}

.mini-cover {
	grid-row: 1 / span 2;
}

.mini-cover img {
	width: 100%;
	border: 1px solid var(--rule-dark);
}

.report-entry strong {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.15rem;
	line-height: 1.2;
}

.report-entry p:not(.section-label) {
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.5;
}

.report-entry .action-row {
	grid-column: 1 / -1;
	margin-top: 0;
}

.article-shell {
	display: grid;
	width: min(calc(100% - 56px), var(--article-width));
	grid-template-columns: 225px minmax(0, 930px);
	gap: clamp(3rem, 7vw, 7rem);
	justify-content: center;
	margin-inline: auto;
	padding: 4.5rem 0 7rem;
}

.article-toc {
	position: sticky;
	top: 102px;
	align-self: start;
	padding-top: 0.8rem;
	border-top: 1px solid var(--ink);
}

.article-toc a {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 0.5rem;
	padding: 0.52rem 0;
	border-bottom: 1px solid var(--rule);
	color: var(--text);
	font-family: var(--mono);
	font-size: 0.59rem;
	line-height: 1.35;
	text-decoration: none;
}

.article-toc a span {
	color: var(--rust);
}

.article-toc a:hover {
	color: var(--ink);
}

.article-content {
	min-width: 0;
}

.article-content > section {
	padding: 1rem 0 clamp(4.5rem, 8vw, 7rem);
	border-top: 1px solid var(--ink);
}

.article-content > section + section {
	margin-top: 0.5rem;
}

.article-content h2 {
	max-width: 820px;
	margin: 0 0 1.45rem;
	font-size: clamp(2.5rem, 4.7vw, 4.25rem);
	letter-spacing: -0.043em;
	line-height: 0.99;
}

.article-content h3 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.1;
}

.article-content p {
	max-width: 830px;
	margin-bottom: 1.35rem;
}

.article-content .lead {
	font-size: 1.05rem;
	line-height: 1.72;
}

.article-content strong {
	color: var(--ink);
}

.metric-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 2.5rem 0 3rem;
	border: 1px solid var(--ink);
}

.metric {
	min-height: 120px;
	padding: 1.15rem;
	border-right: 1px solid var(--rule);
}

.metric:last-child {
	border-right: 0;
}

.metric strong,
.metric span {
	display: block;
}

.metric strong {
	margin-bottom: 1.15rem;
	font-family: var(--serif);
	font-size: 2rem;
	line-height: 1;
}

.metric span {
	font-family: var(--mono);
	font-size: 0.55rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.report-figure {
	margin: 2.4rem 0;
	padding: 0.8rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.report-figure img {
	width: 100%;
}

.wide-figure {
	width: 100%;
}

.boundary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 2.5rem 0;
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.boundary-grid > div {
	min-height: 220px;
	padding: 1.4rem;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.boundary-grid h3 {
	margin-bottom: 0.8rem;
}

.boundary-grid p:last-child {
	margin: 0;
	font-size: 0.8rem;
}

.equation-row,
.equation-stack {
	display: grid;
	margin: 2.2rem 0 2.6rem;
	background: var(--paper-deep);
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.equation-row {
	grid-template-columns: repeat(3, 1fr);
}

.equation-row.two-equations {
	grid-template-columns: 1fr 1fr;
}

.equation-row > div,
.equation-stack > div {
	padding: 1.2rem;
	border-right: 1px solid var(--rule);
}

.equation-row > div:last-child,
.equation-stack > div:last-child {
	border-right: 0;
}

.equation-stack > div {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1rem;
	border-right: 0;
	border-bottom: 1px solid var(--rule);
}

.equation-stack > div:last-child {
	border-bottom: 0;
}

.equation-row span,
.equation-stack span {
	display: block;
	margin-bottom: 1rem;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.55rem;
	text-transform: uppercase;
}

.equation-stack span {
	margin: 0;
}

.equation-row strong,
.equation-stack strong {
	display: block;
	font-family: var(--mono);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.55;
}

.table-scroll {
	max-width: 100%;
	margin: 2.3rem 0;
	overflow-x: auto;
	border-top: 1px solid var(--ink);
}

.research-table {
	min-width: 740px;
}

.table-row {
	display: grid;
	border-bottom: 1px solid var(--rule);
}

.taxonomy-table .table-row {
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
}

.alternatives-table .table-row {
	grid-template-columns: 1fr 1.9fr 0.75fr;
}

.closing-table .table-row {
	grid-template-columns: 0.65fr 1.2fr 0.7fr 0.7fr 0.85fr;
}

.table-row > span {
	padding: 0.85rem 0.72rem;
	border-right: 1px solid var(--rule);
	font-size: 0.7rem;
	line-height: 1.42;
}

.table-row > span:last-child {
	border-right: 0;
}

.table-head {
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.56rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.table-head > span {
	font-size: inherit;
}

.table-row.selected {
	background: var(--sage);
	color: var(--ink);
}

.reporting-row {
	background: rgba(20, 41, 35, 0.045);
	font-style: italic;
}

.inline-status {
	padding: 0.3rem 0.42rem;
	font-size: 0.56rem;
	font-style: normal;
}

.research-note {
	margin: 2rem 0;
	padding: 1.25rem 1.45rem;
	background: var(--sage);
	border-left: 4px solid var(--ink);
	font-size: 0.83rem;
}

.figure-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	margin: 2.5rem 0;
}

.figure-grid .report-figure {
	margin: 0;
}

.surface-pair .report-figure {
	display: flex;
	flex-direction: column;
}

.surface-pair img {
	flex: 0 0 auto;
	height: auto;
	object-fit: contain;
}

.governance-list {
	margin: 2.5rem 0;
	border-top: 1px solid var(--ink);
}

.governance-list > div {
	display: grid;
	grid-template-columns: 52px 210px 1fr;
	gap: 1rem;
	align-items: baseline;
	padding: 1rem 0;
	border-bottom: 1px solid var(--rule);
}

.governance-list span {
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.59rem;
}

.governance-list strong {
	font-family: var(--serif);
	font-size: 1.05rem;
}

.governance-list p {
	margin: 0;
	font-size: 0.75rem;
}

.audit-strip,
.comparison-ledger,
.premium-summary {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 2.4rem 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.audit-strip > div,
.comparison-ledger > div,
.premium-summary > div {
	min-height: 125px;
	padding: 1.05rem;
	border-right: 1px solid var(--rule);
}

.audit-strip > div:last-child,
.comparison-ledger > div:last-child,
.premium-summary > div:last-child {
	border-right: 0;
}

.audit-strip strong,
.audit-strip span,
.comparison-ledger strong,
.comparison-ledger span,
.comparison-ledger small,
.premium-summary strong,
.premium-summary span,
.premium-summary small {
	display: block;
}

.audit-strip strong,
.comparison-ledger strong,
.premium-summary strong {
	margin-bottom: 1rem;
	font-family: var(--serif);
	font-size: 1.55rem;
	line-height: 1.08;
}

.audit-strip span,
.comparison-ledger span,
.premium-summary span {
	font-family: var(--mono);
	font-size: 0.54rem;
	line-height: 1.45;
	text-transform: uppercase;
}

.comparison-ledger span,
.premium-summary span {
	margin-bottom: 0.65rem;
	color: var(--rust);
}

.comparison-ledger small,
.premium-summary small {
	font-family: var(--mono);
	font-size: 0.52rem;
	line-height: 1.35;
	text-transform: uppercase;
}

.engine-table {
	margin: 2.3rem 0;
	border-top: 1px solid var(--ink);
}

.engine-row {
	display: grid;
	grid-template-columns: 0.85fr 1fr 1.4fr;
	border-bottom: 1px solid var(--rule);
}

.engine-row span {
	padding: 0.86rem 0.75rem;
	border-right: 1px solid var(--rule);
	font-size: 0.72rem;
}

.engine-row span:last-child {
	border-right: 0;
}

.engine-head {
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.56rem;
	text-transform: uppercase;
}

.engine-head span {
	font-size: inherit;
}

.formula-feature {
	margin: 2.4rem 0;
	padding: 1.5rem;
	background: var(--ink);
	color: var(--text-light);
	border-left: 5px solid var(--rust);
}

.formula-feature span {
	display: block;
	margin-bottom: 1rem;
	color: #e7a18e;
	font-family: var(--mono);
	font-size: 0.57rem;
	text-transform: uppercase;
}

.formula-feature strong {
	display: block;
	margin-bottom: 1rem;
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: clamp(0.78rem, 1.6vw, 1rem);
	font-weight: 500;
}

.formula-feature p {
	margin: 0;
	font-size: 0.78rem;
}

.convergence-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 2.3rem 0;
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.convergence-grid > div {
	min-height: 190px;
	padding: 1.2rem;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.convergence-grid > div.selected {
	background: var(--sage);
}

.convergence-grid strong,
.convergence-grid span {
	display: block;
}

.convergence-grid strong {
	margin: 2.1rem 0 0.65rem;
	font-family: var(--serif);
	font-size: 1.45rem;
}

.convergence-grid span {
	font-size: 0.74rem;
	line-height: 1.5;
}

.article-code-split {
	margin-inline: 0;
	padding: clamp(1.5rem, 4vw, 3rem);
}

.article-code-split .code-panel {
	margin: 0;
}

.result-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin: 2.3rem 0;
	border: 1px solid var(--ink);
}

.result-grid > div {
	display: flex;
	min-height: 118px;
	flex-direction: column-reverse;
	justify-content: space-between;
	padding: 1.05rem;
	border-right: 1px solid var(--rule);
}

.result-grid > div:last-child {
	border-right: 0;
}

.result-grid strong {
	font-family: var(--serif);
	font-size: 1.75rem;
	line-height: 1;
}

.result-grid span {
	font-family: var(--mono);
	font-size: 0.53rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.report-showcase {
	display: grid;
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
	margin-top: 2.5rem;
	padding: clamp(1.5rem, 5vw, 4rem);
	background: var(--ink);
	color: var(--text-light);
}

.report-showcase-cover {
	display: block;
	box-shadow: 12px 14px 0 rgba(255, 255, 255, 0.08);
}

.report-showcase-cover img {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.report-showcase p {
	font-size: 0.86rem;
}

.report-contents-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.report-contents-grid span {
	padding: 0.63rem 0.3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-family: var(--mono);
	font-size: 0.54rem;
	line-height: 1.35;
	text-transform: uppercase;
}

.report-contents-grid span:nth-child(odd) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.report-showcase .button-primary {
	background: var(--paper-light);
	border-color: var(--paper-light);
	color: var(--ink);
}

.report-showcase .button-primary:hover {
	background: var(--rust);
	border-color: var(--rust);
	color: var(--white);
}

.report-showcase .button-quiet {
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--paper-light);
}

.report-showcase .button-quiet:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.report-showcase .text-link {
	color: var(--paper-light);
}

.limitations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 2.5rem 0;
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.limitations-grid > div {
	min-height: 175px;
	padding: 1.25rem;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.limitations-grid span {
	display: block;
	margin-bottom: 1.5rem;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.57rem;
	text-transform: uppercase;
}

.limitations-grid p {
	margin: 0;
	font-size: 0.78rem;
}

.final-state {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 1.4rem;
	align-items: start;
	padding: 1.4rem;
	background: var(--sage);
	border-left: 4px solid var(--teal);
}

.final-state p {
	margin: 0;
	font-size: 0.84rem;
}

/* Research index and current project companions */

.home-hero-compact {
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
	min-height: 640px;
}

.home-hero-compact .hero-copy h1 {
	max-width: 760px;
	font-size: clamp(3.25rem, 5.1vw, 4.9rem);
}

.research-ledger {
	border: 1px solid var(--ink);
	background: rgba(251, 249, 244, 0.84);
	box-shadow: 14px 14px 0 var(--sage);
	animation: enter-up 700ms 100ms ease both;
}

.ledger-head,
.ledger-foot {
	display: flex;
	min-height: 42px;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--mono);
	font-size: 0.56rem;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.ledger-row {
	display: grid;
	grid-template-columns: 42px 110px 1fr;
	gap: 0.7rem;
	min-height: 96px;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--rule);
}

.ledger-row > span {
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.62rem;
}

.ledger-row strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.25rem;
}

.ledger-row p {
	margin: 0;
	font-family: var(--mono);
	font-size: 0.61rem;
	line-height: 1.55;
}

.ledger-foot {
	justify-content: flex-start;
	background: var(--sage);
	color: var(--ink-2);
}

.project-index-section {
	padding: clamp(5rem, 8vw, 7.5rem) 0 0;
	border-top: 1px solid var(--ink);
}

.section-heading-compact h2 {
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.research-card {
	display: grid;
	grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
	padding: clamp(4rem, 7vw, 6.5rem) 0;
	border-top: 1px solid var(--ink);
}

.research-card:last-child {
	border-bottom: 1px solid var(--ink);
}

.research-card-reverse .research-card-copy {
	order: 2;
}

.research-card-reverse .research-card-figure {
	order: 1;
}

.research-card-copy h3 {
	max-width: 680px;
	margin-bottom: 1.15rem;
	font-size: clamp(2.25rem, 3.7vw, 3.75rem);
	letter-spacing: -0.042em;
	line-height: 1;
}

.research-card-copy > p:not(.section-label) {
	font-size: 0.9rem;
}

.data-disclosure {
	padding-left: 1rem;
	border-left: 3px solid var(--teal);
	font-size: 0.76rem !important;
}

.project-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 1.7rem;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}

.project-stat-row div {
	min-height: 94px;
	padding: 0.9rem 0.8rem;
	border-right: 1px solid var(--rule);
}

.project-stat-row div:last-child {
	border-right: 0;
}

.project-stat-row strong,
.project-stat-row span {
	display: block;
}

.project-stat-row strong {
	margin-bottom: 0.7rem;
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.4rem;
}

.project-stat-row span {
	font-family: var(--mono);
	font-size: 0.51rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.research-card-figure {
	margin: 0;
	padding: 0.8rem;
	background: var(--white);
	border: 1px solid var(--rule);
}

.research-card-figure img {
	width: 100%;
}

.practice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: clamp(3rem, 5vw, 4.5rem);
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.practice-grid article {
	min-height: 240px;
	padding: 1.35rem;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.practice-grid h3 {
	margin: 2rem 0 0.75rem;
	font-size: 1.5rem;
	line-height: 1.1;
}

.practice-grid p:last-child {
	margin: 0;
	font-size: 0.78rem;
}

.project-entry {
	padding: 1.5rem;
	background: var(--sage);
	border: 1px solid var(--ink);
}

.project-entry > strong {
	display: block;
	margin-bottom: 1rem;
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.45rem;
	line-height: 1.15;
}

.project-entry > p:not(.section-label) {
	font-size: 0.76rem;
}

.entry-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 1.3rem;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.entry-facts span {
	padding: 0.7rem 0.55rem;
	border-right: 1px solid var(--rule-dark);
	font-family: var(--mono);
	font-size: 0.5rem;
	line-height: 1.35;
	text-transform: uppercase;
}

.entry-facts span:last-child {
	border-right: 0;
}

.data-posture-table .table-row {
	grid-template-columns: 1.1fr 0.55fr 1.8fr;
}

.portfolio-methods-table .table-row {
	grid-template-columns: 1.1fr 1.3fr 0.8fr 1.55fr;
}

.valuation-ledger,
.scenario-ledger,
.constraint-grid {
	display: grid;
	margin: 2.3rem 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.valuation-ledger {
	grid-template-columns: repeat(3, 1fr);
}

.scenario-ledger,
.constraint-grid {
	grid-template-columns: repeat(4, 1fr);
}

.valuation-ledger > div,
.scenario-ledger > div,
.constraint-grid > div {
	min-height: 120px;
	padding: 1.05rem;
	border-right: 1px solid var(--rule);
}

.valuation-ledger > div:last-child,
.scenario-ledger > div:last-child,
.constraint-grid > div:last-child {
	border-right: 0;
}

.valuation-ledger span,
.valuation-ledger strong,
.valuation-ledger small,
.scenario-ledger span,
.scenario-ledger strong,
.constraint-grid span,
.constraint-grid strong {
	display: block;
}

.valuation-ledger span,
.scenario-ledger span,
.constraint-grid span {
	margin-bottom: 0.85rem;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.53rem;
	line-height: 1.35;
	text-transform: uppercase;
}

.valuation-ledger strong,
.scenario-ledger strong,
.constraint-grid strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.valuation-ledger small {
	margin-top: 0.7rem;
	font-family: var(--mono);
	font-size: 0.52rem;
	line-height: 1.4;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 2.3rem 0;
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.timeline-grid > div {
	min-height: 180px;
	padding: 1.2rem;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.timeline-grid span,
.timeline-grid strong {
	display: block;
}

.timeline-grid span {
	margin-bottom: 1.8rem;
	color: var(--rust);
	font-family: var(--mono);
	font-size: 0.57rem;
	text-transform: uppercase;
}

.timeline-grid strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1.25rem;
}

.timeline-grid p {
	margin: 0.65rem 0 0;
	font-size: 0.72rem;
}

@keyframes enter-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1080px) {
	.home-hero,
	.report-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-copy,
	.report-hero-copy {
		max-width: 900px;
	}

	.hero-figure {
		width: min(100%, 760px);
	}

	.publication-panel {
		grid-template-columns: 290px minmax(0, 1fr);
	}

	.publication-heading {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.system-grid,
	.implementation-split,
	.profile-section {
		grid-template-columns: 1fr;
	}

	.system-copy,
	.implementation-split > div:first-child,
	.profile-section > div:first-child {
		max-width: 760px;
	}

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

	.secondary-project {
		grid-template-columns: 54px 1fr;
	}

	.secondary-project figure {
		grid-column: 2;
		width: min(100%, 760px);
	}

	.report-entry {
		max-width: 620px;
	}

	.article-shell {
		grid-template-columns: 195px minmax(0, 1fr);
		gap: 3.5rem;
	}

	.result-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.result-grid > div:nth-child(3) {
		border-right: 0;
	}

	.result-grid > div:nth-child(-n + 3) {
		border-bottom: 1px solid var(--rule);
	}
}

@media (max-width: 880px) {
	.publication-panel {
		grid-template-columns: 1fr;
	}

	.report-cover-wrap {
		min-height: 470px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.result-band {
		grid-template-columns: repeat(3, 1fr);
	}

	.result-band div:nth-child(3) {
		border-right: 0;
	}

	.result-band div:nth-child(-n + 3) {
		border-bottom: 1px solid var(--rule);
	}

	.evidence-mosaic {
		grid-template-columns: 1fr;
	}

	.methods-table {
		overflow-x: auto;
	}

	.methods-row {
		min-width: 780px;
	}

	.article-shell {
		grid-template-columns: minmax(0, 1fr);
		gap: 3rem;
	}

	.article-toc {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 0 1rem;
	}

	.article-toc .section-label {
		grid-column: 1 / -1;
	}

	.article-toc a {
		grid-template-columns: 24px 1fr;
	}

	.equation-row {
		grid-template-columns: 1fr;
	}

	.equation-row.two-equations {
		grid-template-columns: 1fr;
	}

	.equation-row > div {
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}

	.equation-row > div:last-child {
		border-bottom: 0;
	}

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

	.audit-strip,
	.comparison-ledger,
	.premium-summary {
		grid-template-columns: 1fr 1fr;
	}

	.audit-strip > div:nth-child(2),
	.comparison-ledger > div:nth-child(2),
	.premium-summary > div:nth-child(2) {
		border-right: 0;
	}

	.audit-strip > div:nth-child(-n + 2),
	.comparison-ledger > div:nth-child(-n + 2),
	.premium-summary > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--rule);
	}

	.report-showcase {
		grid-template-columns: 220px 1fr;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 16px;
	}

	.research-site main,
	.site-footer,
	.article-shell {
		width: min(calc(100% - 30px), var(--max-width));
	}

	.site-header {
		width: 100%;
		min-height: 64px;
		padding-inline: 15px;
	}

	.site-mark strong {
		display: none;
	}

	.site-header nav {
		gap: clamp(0.5rem, 2.5vw, 0.85rem);
	}

	.site-header nav a {
		font-size: 0.6rem;
	}

	.home-hero,
	.report-hero {
		gap: 3rem;
		padding: 4rem 0;
	}

	.hero-copy h1,
	.report-hero h1 {
		font-size: clamp(2.8rem, 12vw, 4rem);
	}

	.credential-line span + span::before,
	.article-meta span + span::before {
		content: none;
	}

	.plot-frame {
		padding: 2.7rem 0.65rem 0.65rem;
		box-shadow: 8px 8px 0 var(--sage);
	}

	.plot-meta {
		grid-template-columns: 0.5fr 0.9fr 1.6fr;
		font-size: 0.45rem;
	}

	.publication-copy {
		padding: 2.2rem 1.25rem;
	}

	.publication-facts {
		grid-template-columns: 1fr 1fr;
	}

	.publication-facts div:nth-child(2) {
		border-right: 0;
	}

	.publication-facts div:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.result-band {
		grid-template-columns: 1fr 1fr;
	}

	.result-band div,
	.result-band div:nth-child(3) {
		border-right: 1px solid var(--rule);
		border-bottom: 1px solid var(--rule);
	}

	.result-band div:nth-child(even) {
		border-right: 0;
	}

	.result-band div:last-child {
		grid-column: 1 / -1;
		border-right: 0;
		border-bottom: 0;
	}

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

	.decision-grid article {
		min-height: 245px;
	}

	.decision-grid h3 {
		margin-top: 2.2rem;
	}

	.secondary-project {
		grid-template-columns: 1fr;
	}

	.secondary-project figure {
		grid-column: 1;
	}

	.project-number {
		padding-bottom: 0.7rem;
		border-bottom: 1px solid var(--rule);
	}

	.profile-ledger div {
		grid-template-columns: 110px 1fr;
	}

	.site-footer {
		min-height: 230px;
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
	}

	.footer-links {
		justify-content: flex-start;
	}

	.report-entry {
		grid-template-columns: 84px 1fr;
	}

	.article-shell {
		padding-top: 3rem;
	}

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

	.metric-strip,
	.boundary-grid,
	.limitations-grid {
		grid-template-columns: 1fr 1fr;
	}

	.metric:nth-child(2) {
		border-right: 0;
	}

	.metric:nth-child(-n + 2) {
		border-bottom: 1px solid var(--rule);
	}

	.equation-stack > div {
		grid-template-columns: 1fr;
	}

	.governance-list > div {
		grid-template-columns: 38px 1fr;
	}

	.governance-list p {
		grid-column: 2;
	}

	.engine-table {
		overflow-x: auto;
	}

	.engine-row {
		min-width: 650px;
	}

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

	.convergence-grid > div {
		min-height: 155px;
	}

	.convergence-grid strong {
		margin-top: 1.35rem;
	}

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

	.result-grid > div,
	.result-grid > div:nth-child(3) {
		border-right: 1px solid var(--rule);
		border-bottom: 1px solid var(--rule);
	}

	.result-grid > div:nth-child(even) {
		border-right: 0;
	}

	.result-grid > div:last-child {
		grid-column: 1 / -1;
		border-right: 0;
		border-bottom: 0;
	}

	.report-showcase {
		grid-template-columns: 1fr;
	}

	.report-showcase-cover {
		width: min(100%, 260px);
	}

	.final-state {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 460px) {
	.action-row {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.publication-panel .text-link,
	.report-showcase .text-link {
		margin: 0.35rem 0 0;
		text-align: center;
	}

	.metric-strip,
	.boundary-grid,
	.limitations-grid,
	.audit-strip,
	.comparison-ledger,
	.premium-summary {
		grid-template-columns: 1fr;
	}

	.metric,
	.metric:nth-child(2),
	.audit-strip > div,
	.audit-strip > div:nth-child(2),
	.comparison-ledger > div,
	.comparison-ledger > div:nth-child(2),
	.premium-summary > div,
	.premium-summary > div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}

	.metric:last-child,
	.audit-strip > div:last-child,
	.comparison-ledger > div:last-child,
	.premium-summary > div:last-child {
		border-bottom: 0;
	}

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

	.report-entry {
		grid-template-columns: 72px 1fr;
	}

	.report-entry .action-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.report-contents-grid {
		grid-template-columns: 1fr;
	}

	.report-contents-grid span:nth-child(odd) {
		border-right: 0;
	}

	.profile-ledger div {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1080px) {
	.research-card {
		grid-template-columns: 1fr;
	}

	.research-card-copy {
		max-width: 880px;
	}

	.research-card-reverse .research-card-copy,
	.research-card-reverse .research-card-figure {
		order: initial;
	}

	.research-card-figure {
		width: min(100%, 920px);
	}
}

@media (max-width: 880px) {
	.practice-grid {
		grid-template-columns: 1fr;
	}

	.practice-grid article {
		min-height: 190px;
	}

	.valuation-ledger,
	.scenario-ledger,
	.constraint-grid,
	.timeline-grid {
		grid-template-columns: 1fr 1fr;
	}

	.valuation-ledger > div:nth-child(2),
	.scenario-ledger > div:nth-child(2),
	.constraint-grid > div:nth-child(2),
	.timeline-grid > div:nth-child(2) {
		border-right: 0;
	}

	.valuation-ledger > div:nth-child(-n + 2),
	.scenario-ledger > div:nth-child(-n + 2),
	.constraint-grid > div:nth-child(-n + 2),
	.timeline-grid > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--rule);
	}

	.data-posture-table,
	.portfolio-methods-table {
		min-width: 760px;
	}
}

@media (max-width: 700px) {
	.home-hero-compact {
		padding-top: 3.6rem;
	}

	.research-ledger {
		box-shadow: 8px 8px 0 var(--sage);
	}

	.ledger-row {
		grid-template-columns: 32px 92px 1fr;
	}

	.project-stat-row {
		grid-template-columns: 1fr 1fr;
	}

	.project-stat-row div:nth-child(2) {
		border-right: 0;
	}

	.project-stat-row div:last-child {
		grid-column: 1 / -1;
		border-top: 1px solid var(--rule);
	}

	.research-card-copy h3 {
		font-size: clamp(2.1rem, 9vw, 3rem);
	}

	.entry-facts {
		grid-template-columns: 1fr;
	}

	.entry-facts span {
		border-right: 0;
		border-bottom: 1px solid var(--rule-dark);
	}

	.entry-facts span:last-child {
		border-bottom: 0;
	}

	.portfolio-methods-table {
		min-width: 850px;
	}
}

@media (max-width: 460px) {
	.ledger-row {
		grid-template-columns: 28px 1fr;
	}

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

	.project-stat-row,
	.valuation-ledger,
	.scenario-ledger,
	.constraint-grid,
	.timeline-grid {
		grid-template-columns: 1fr;
	}

	.project-stat-row div,
	.project-stat-row div:nth-child(2),
	.valuation-ledger > div,
	.valuation-ledger > div:nth-child(2),
	.scenario-ledger > div,
	.scenario-ledger > div:nth-child(2),
	.constraint-grid > div,
	.constraint-grid > div:nth-child(2),
	.timeline-grid > div,
	.timeline-grid > div:nth-child(2) {
		grid-column: auto;
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}

	.project-stat-row div:last-child,
	.valuation-ledger > div:last-child,
	.scenario-ledger > div:last-child,
	.constraint-grid > div:last-child,
	.timeline-grid > div:last-child {
		border-bottom: 0;
	}
}
