@font-face {
	font-family: "Sohne";
	src: url("../frontend/assets/sohne-woff2/Sohne-Buch.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Sohne";
	src: url("../frontend/assets/sohne-woff2/Sohne-Halbfett.woff2")
		format("woff2");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Sohne Mono";
	src: url("../frontend/assets/sohne-woff2/SohneMono-Buch.woff2")
		format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

:root {
	--font-body: "Sohne", system-ui, sans-serif;
	--font-editorial:
		"Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia,
		serif;
	--font-mono: "Sohne Mono", ui-monospace, monospace;
	--paper: #faf6ef;
	--paper-deep: #f0e9de;
	--ink: #1a1612;
	--ink-soft: #5c574f;
	--ink-faint: #756f66;
	--rule: rgb(26 22 18 / 16%);
	--rule-strong: rgb(26 22 18 / 34%);
	--rose: #bd3852;
	--rose-bright: #ee6a82;
	--teal: #14788a;
	--amber: #955a0b;
	--bone: #dedad2;
	--max-report: 82rem;
	--measure: 47rem;
	--space-1: 0.375rem;
	--space-2: 0.625rem;
	--space-3: 1rem;
	--space-4: 1.5rem;
	--space-5: 2.25rem;
	--space-6: 3.5rem;
	--space-7: 5.5rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.58;
	font-variant-numeric: oldstyle-nums proportional-nums;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration-color: rgb(217 78 104 / 55%);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-color: var(--rose);
}

a:focus-visible,
input:focus-visible,
.table-wrap:focus-visible {
	outline: 2px solid var(--rose);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 10;
	padding: 0.75rem 1rem;
	background: var(--ink);
	color: var(--paper);
	transform: translateY(-110%);
}

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

.masthead {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: baseline;
	width: min(calc(100% - 3rem), var(--max-report));
	margin: 0 auto;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--rule);
	color: var(--ink-soft);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.masthead .wordmark {
	display: block;
	width: 4.7rem;
	height: 1.48rem;
	color: var(--ink);
	text-decoration: none;
}

.wordmark-shape {
	display: block;
	width: 100%;
	height: 100%;
	background: currentcolor;
	mask: url("../frontend/public/leccie-word.svg") center / contain no-repeat;
}

.masthead .as-of {
	justify-self: end;
}

.page-shell {
	display: grid;
	grid-template-areas: "main contents";
	grid-template-columns: minmax(0, var(--measure)) 11rem;
	gap: var(--space-6);
	width: min(calc(100% - 3rem), var(--max-report));
	margin: 0 auto;
}

.contents {
	grid-area: contents;
	position: sticky;
	top: 1.25rem;
	align-self: start;
	padding-top: 7.2rem;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	line-height: 1.35;
}

.contents-label {
	margin: 0 0 var(--space-3);
	color: var(--ink-faint);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contents ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contents a {
	display: grid;
	grid-template-columns: 2.35rem minmax(0, 1fr);
	color: var(--ink-soft);
	text-decoration: none;
	transition: color 140ms ease-out;
}

.contents-index {
	color: var(--ink-faint);
	transition: color 140ms ease-out;
}

.contents a:hover,
.contents a[aria-current="location"] {
	color: var(--ink);
}

.contents a[aria-current="location"] .contents-index {
	color: var(--rose);
}

main {
	grid-area: main;
	min-width: 0;
}

section {
	position: relative;
	padding: var(--space-7) 0;
	border-bottom: 1px solid var(--rule-strong);
}

.hero {
	padding-top: 7rem;
}

.section-number,
.tag {
	margin: 0 0 var(--space-3);
	color: var(--rose);
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-number {
	margin-bottom: var(--space-2);
	color: var(--ink-faint);
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1 {
	max-width: 14ch;
	margin: 0;
	font-family: var(--font-editorial);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.96;
}

h2 {
	margin: 0 0 var(--space-4);
	font-family: var(--font-editorial);
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1;
}

h3 {
	margin: var(--space-6) 0 var(--space-2);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: -0.015em;
}

p {
	max-width: 40rem;
	margin: 0 0 var(--space-3);
}

.dek,
.lead {
	max-width: 38rem;
	color: var(--ink-soft);
	font-size: clamp(1.2rem, 2.2vw, 1.55rem);
	line-height: 1.4;
	letter-spacing: -0.025em;
}

.dek {
	margin-top: var(--space-5);
}

.decision-line {
	display: grid;
	grid-template-columns: auto auto auto 1fr auto;
	gap: 0.8rem;
	align-items: baseline;
	margin: var(--space-6) 0 var(--space-4);
	padding: 1.1rem 0 0.95rem;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--rule-strong);
	font-family: var(--font-mono);
	font-size: 0.77rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.decision-line strong {
	color: var(--rose);
	font-family: var(--font-body);
	font-size: 2.25rem;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.025em;
	line-height: 1;
}

.decision-rule {
	border-top: 1px dotted var(--rule-strong);
	transform: translateY(-0.25rem);
}

.opening-claims {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
	margin-top: var(--space-4);
}

.opening-claims p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.opening-claims strong {
	display: block;
	color: var(--ink);
}

.margin-note {
	max-width: 31rem;
	margin-top: var(--space-5);
	padding-top: var(--space-3);
	border-top: 1px solid var(--rose);
	color: var(--ink-soft);
	font-size: 0.82rem;
	line-height: 1.5;
}

.margin-note p {
	margin: 0;
}

.three-movements {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	margin-top: var(--space-6);
}

.three-movements article {
	border-top: 1px solid var(--ink);
}

.three-movements h3 {
	margin-top: var(--space-3);
}

.three-movements p {
	font-size: 0.9rem;
}

.three-movements .movement-number {
	margin: 0.55rem 0 0;
	color: var(--rose);
	font-family: var(--font-mono);
	font-size: 0.68rem;
}

blockquote {
	margin: var(--space-7) 0;
	padding: 0 0 0 var(--space-5);
	border-left: 0.35rem solid var(--ink);
}

blockquote p {
	margin: 0;
	font-family: var(--font-editorial);
	font-size: clamp(1.5rem, 2.8vw, 2.25rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.flow,
.authority-flow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: var(--space-5) 0;
	padding: 1rem 0;
	border-top: 1px solid var(--rule-strong);
	border-bottom: 1px solid var(--rule-strong);
	font-family: var(--font-mono);
	font-size: 0.72rem;
}

.flow b,
.authority-flow b {
	color: var(--rose);
	font-weight: 400;
}

.chart-frame {
	margin: var(--space-6) 0;
	padding: var(--space-4) 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--rule-strong);
}

.chart-heading {
	display: flex;
	justify-content: space-between;
	gap: var(--space-4);
	align-items: flex-start;
}

.chart-heading h3 {
	margin: 0;
}

.chart-heading p {
	margin: 0.25rem 0 0;
	color: var(--ink-faint);
	font-family: var(--font-mono);
	font-size: 0.68rem;
}

.chart-heading .chart-callout {
	color: var(--ink-soft);
	text-align: right;
}

.chart-callout strong {
	display: block;
	color: var(--rose);
	font-family: var(--font-body);
	font-size: 1.8rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.chart {
	min-height: 18rem;
	margin-top: var(--space-4);
}

.chart svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.chart .axis,
.chart .guide {
	stroke: var(--rule);
	vector-effect: non-scaling-stroke;
}

.chart .guide {
	stroke-dasharray: 2 5;
}

.chart text {
	fill: var(--ink-soft);
	font-family: var(--font-mono);
	font-size: 11px;
}

.chart .value-label {
	fill: var(--ink);
	font-weight: 600;
}

.chart .mark {
	fill: var(--rose);
}

.chart .secondary-mark {
	fill: var(--teal);
}

.chart .line {
	fill: none;
	stroke: var(--rose);
	stroke-width: 2;
	vector-effect: non-scaling-stroke;
}

.figure-note {
	margin: var(--space-3) 0 0;
	color: var(--ink-faint);
	font-size: 0.78rem;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.82rem;
	font-variant-numeric: tabular-nums;
}

th,
td {
	padding: 0.72rem 0.55rem;
	border-bottom: 1px solid var(--rule);
	text-align: right;
	vertical-align: top;
}

th:first-child,
td:first-child {
	padding-left: 0;
	text-align: left;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

thead th {
	color: var(--ink-faint);
	font-family: var(--font-mono);
	font-size: 0.63rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

tbody th {
	font-weight: 400;
}

.table-wrap,
.offer-table-wrap {
	width: 100%;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
}

.fallback-table {
	margin-top: var(--space-4);
}

.js .fallback-table {
	display: none;
}

.fact-assumption-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-5);
	margin: var(--space-5) 0;
}

.fact-assumption-grid > div {
	padding-top: var(--space-3);
	border-top: 1px solid var(--rule-strong);
}

.fact-assumption-grid p:last-child {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.tag {
	margin-bottom: 0.55rem;
	font-size: 0.63rem;
}

.tag.assumption {
	color: var(--amber);
}

.model-lab {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: var(--space-6);
	margin: var(--space-7) 0 0;
	padding: var(--space-5) 0;
	border-top: 3px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.model-intro h3 {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.model-intro p:last-child {
	margin-top: var(--space-3);
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.controls {
	display: grid;
	gap: var(--space-4);
}

.controls label {
	display: grid;
	gap: 0.65rem;
	color: var(--ink-soft);
	font-size: 0.8rem;
}

.controls output {
	color: var(--ink);
	font-family: var(--font-mono);
}

input[type="range"] {
	width: 100%;
	height: 1.1rem;
	margin: 0;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
	height: 2px;
	background: var(--rule-strong);
}

input[type="range"]::-webkit-slider-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: -0.45rem;
	appearance: none;
	border: 2px solid var(--paper);
	border-radius: 50%;
	background: var(--rose);
	box-shadow: 0 0 0 1px var(--rose);
}

input[type="range"]::-moz-range-track {
	height: 2px;
	background: var(--rule-strong);
}

input[type="range"]::-moz-range-thumb {
	width: 0.9rem;
	height: 0.9rem;
	border: 2px solid var(--paper);
	border-radius: 50%;
	background: var(--rose);
	box-shadow: 0 0 0 1px var(--rose);
}

.model-answer {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	padding-top: var(--space-4);
	border-top: 1px solid var(--rule-strong);
}

.model-answer p {
	margin: 0;
	color: var(--ink-faint);
	font-family: var(--font-mono);
	font-size: 0.7rem;
}

.model-answer strong {
	grid-row: 1 / 3;
	grid-column: 2;
	color: var(--rose);
	font-family: var(--font-body);
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	line-height: 0.9;
	letter-spacing: -0.035em;
}

.offer-table tbody tr:first-child {
	background: rgb(238 106 130 / 7%);
}

.offer-table td:first-child {
	font-weight: 600;
}

.pull-quote {
	margin: var(--space-6) 0;
	padding: var(--space-4) 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.pull-quote p {
	margin: 0;
	font-family: var(--font-editorial);
	font-size: clamp(1.65rem, 3.2vw, 2.5rem);
	font-weight: 400;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.prose-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.prose-columns > div {
	border-top: 1px solid var(--rule-strong);
}

.prose-columns h3 {
	margin-top: var(--space-3);
}

.prose-columns p {
	color: var(--ink-soft);
	font-size: 0.86rem;
}

.stack-decision {
	margin: var(--space-5) 0;
	padding: var(--space-4) 0;
	border-top: 3px solid var(--ink);
	border-bottom: 1px solid var(--rule-strong);
}

.stack-decision p {
	margin: 0;
}

.authority-flow {
	justify-content: space-between;
}

.authority-flow div {
	display: grid;
	gap: 0.15rem;
}

.authority-flow small {
	color: var(--ink-faint);
	font-size: 0.6rem;
	text-transform: uppercase;
}

.authority-flow strong {
	font-size: 0.74rem;
	font-weight: 400;
}

.equation {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	align-items: baseline;
	margin: var(--space-6) 0;
	padding: var(--space-4) 0;
	border-top: 3px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	font-family: var(--font-mono);
	font-size: 0.78rem;
}

.equation > span:first-child {
	color: var(--rose);
	font-family: var(--font-body);
	font-size: 2.25rem;
	font-weight: 600;
}

.equation b {
	color: var(--ink-faint);
	font-weight: 400;
}

.event-lineage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin: var(--space-4) 0 var(--space-6);
	padding: 0;
	list-style: none;
	counter-reset: events;
	border-top: 1px solid var(--ink);
}

.event-lineage li {
	min-height: 6.5rem;
	padding: 0.75rem 0.65rem;
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	counter-increment: events;
	font-size: 0.78rem;
}

.event-lineage li::before {
	display: block;
	margin-bottom: 1.8rem;
	color: var(--rose);
	font-family: var(--font-mono);
	font-size: 0.62rem;
	content: counter(events, decimal-leading-zero);
}

.measure-list,
.cost-down,
.stages {
	margin: var(--space-4) 0;
	padding: 0;
	list-style: none;
}

.measure-list li,
.cost-down li {
	display: grid;
	grid-template-columns: 2.6rem 1fr;
	gap: var(--space-3);
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--rule);
}

.measure-list span {
	color: var(--rose);
	font-family: var(--font-mono);
	font-size: 0.65rem;
}

.do-not-list {
	color: var(--ink-soft);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	line-height: 1.8;
}

.stages {
	border-top: 3px solid var(--ink);
}

.stages li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: var(--space-4);
	padding: var(--space-4) 0;
	border-bottom: 1px solid var(--rule-strong);
}

.stages li > span {
	color: var(--rose);
	font-family: var(--font-body);
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
}

.stages h3,
.stages p {
	margin: 0;
}

.stages p {
	margin-top: 0.25rem;
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.cost-down li {
	grid-template-columns: 1fr auto;
}

.cost-down span {
	color: var(--ink-faint);
	font-size: 0.76rem;
}

.risk-register {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-5);
	margin: var(--space-6) 0;
}

.risk-register article {
	position: relative;
	padding-top: var(--space-3);
	border-top: 1px solid var(--ink);
}

.risk-register span {
	position: absolute;
	top: 1.05rem;
	right: 0;
	color: var(--rose);
	font-family: var(--font-mono);
	font-size: 0.62rem;
}

.controls label > span {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.risk-register h3 {
	margin: 0;
	padding-right: 2rem;
}

.risk-register p {
	margin-top: 0.55rem;
	color: var(--ink-soft);
	font-size: 0.86rem;
}

.final-call {
	margin-top: var(--space-7);
	padding: var(--space-5) 0;
	border-top: 3px solid var(--rose);
	border-bottom: 1px solid var(--rose);
}

.final-call > p {
	font-family: var(--font-editorial);
	font-size: clamp(1.65rem, 3.2vw, 2.5rem);
	font-weight: 400;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.final-call ol {
	margin: var(--space-4) 0 0;
	padding-left: 1.5rem;
}

.sources-list {
	margin: var(--space-5) 0;
	padding: 0;
	list-style-position: inside;
	font-size: 0.85rem;
}

.sources-list li {
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--rule);
}

.source-note {
	color: var(--ink-faint);
	font-size: 0.78rem;
}

footer {
	display: flex;
	justify-content: space-between;
	width: min(calc(100% - 3rem), var(--max-report));
	margin: 0 auto;
	padding: var(--space-5) 0 var(--space-6);
	color: var(--ink-faint);
	font-family: var(--font-mono);
	font-size: 0.67rem;
}

footer p {
	margin: 0;
}

.masthead p {
	margin: 0;
}

@media (max-width: 75.99rem) {
	.page-shell {
		grid-template-columns: minmax(0, var(--measure)) 9.5rem;
		gap: var(--space-5);
	}
}

@media (max-width: 58rem) {
	.masthead {
		width: min(calc(100% - 2rem), var(--max-report));
	}

	.page-shell {
		display: block;
		width: 100%;
	}

	.contents {
		position: sticky;
		z-index: 4;
		top: 0;
		display: flex;
		gap: var(--space-4);
		align-items: center;
		width: 100%;
		padding: 0.7rem 1rem;
		overflow-x: auto;
		border-bottom: 1px solid var(--rule-strong);
		background: rgb(250 246 239 / 94%);
		backdrop-filter: blur(14px);
		overscroll-behavior-inline: contain;
	}

	.contents-label {
		flex: 0 0 auto;
		margin: 0;
	}

	.contents ul {
		display: flex;
		gap: var(--space-4);
		flex: 0 0 auto;
	}

	.contents a {
		grid-template-columns: auto auto;
		gap: 0.4rem;
		white-space: nowrap;
	}

	main {
		width: min(calc(100% - 2rem), var(--measure));
		margin: 0 auto;
	}

	.hero {
		padding-top: var(--space-6);
	}

	.three-movements,
	.prose-columns {
		grid-template-columns: 1fr;
	}

	.three-movements article {
		display: grid;
		grid-template-columns: 2rem 1fr;
		column-gap: var(--space-3);
	}

	.three-movements .movement-number {
		grid-row: 1 / 3;
	}

	.three-movements h3 {
		margin-bottom: 0.25rem;
	}

	.model-lab {
		grid-template-columns: 1fr;
	}

	.model-answer {
		grid-column: auto;
	}

}

@media (max-width: 42rem) {
	body {
		font-size: 1rem;
	}

	.masthead {
		grid-template-columns: 1fr auto;
	}

	.masthead > p:not(.as-of) {
		display: none;
	}

	section {
		padding: var(--space-6) 0;
	}

	h1 {
		font-size: clamp(2.5rem, 11vw, 3.6rem);
	}

	h2 {
		font-size: clamp(2rem, 9vw, 2.75rem);
	}

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

	.decision-line .decision-rule {
		grid-column: 1 / -1;
		width: 100%;
	}

	.decision-line > span:last-child {
		grid-column: 1 / -1;
	}

	.opening-claims,
	.fact-assumption-grid,
	.risk-register {
		grid-template-columns: 1fr;
	}

	.chart-heading {
		display: block;
	}

	.chart-heading .chart-callout {
		margin-top: var(--space-3);
		text-align: left;
	}

	.chart {
		min-height: 14rem;
	}

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

	.authority-flow {
		display: grid;
		grid-template-columns: 1fr;
	}

	.authority-flow b {
		transform: rotate(90deg);
		transform-origin: left center;
	}

	.model-answer {
		display: block;
	}

	.model-answer strong {
		display: block;
		margin: 0.8rem 0 1rem;
	}

	.cost-down li {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	footer {
		width: calc(100% - 2rem);
	}
}

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

@media (prefers-contrast: more) {
	:root {
		--rule: rgb(26 22 18 / 42%);
		--rule-strong: rgb(26 22 18 / 72%);
		--ink-soft: #39342f;
		--ink-faint: #575149;
	}
}

@media print {
	@page {
		margin: 18mm 16mm;
	}

	body {
		background: white;
		color: black;
		font-size: 10pt;
	}

	.contents,
	.model-lab,
	.skip-link {
		display: none;
	}

	.masthead,
	.page-shell,
	footer {
		width: 100%;
	}

	.page-shell {
		display: block;
	}

	section {
		break-before: page;
		padding: 10mm 0;
	}

	.hero {
		break-before: auto;
	}

	a {
		text-decoration: none;
	}

	.chart-frame,
	table,
	blockquote,
	.risk-register article {
		break-inside: avoid;
	}
}

/* ---- the member plate: a Daily record, printed for the offer ---- */

@font-face {
	font-family: "Sohne";
	src: url("../frontend/assets/sohne-woff2/Sohne-BuchKursiv.woff2") format("woff2");
	font-style: italic;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Sohne";
	src: url("../frontend/assets/sohne-woff2/Sohne-Kraftig.woff2") format("woff2");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Sohne Breit";
	src: url("../frontend/assets/sohne-woff2/SohneBreit-Dreiviertelfett.woff2")
		format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Sohne";
	src: url("../frontend/assets/sohne-woff2/Sohne-DreiviertelfettKursiv.woff2")
		format("woff2");
	font-style: italic;
	font-weight: 700;
	font-display: swap;
}

.customer-copy {
	--room: #0f0d0c;
	--room-text: #ece7dd; /* primary · bone */
	--room-text-2: #b8b1a6; /* secondary · warm grey, 7:1 on the ink */
	--room-text-3: #918a7f; /* tertiary · 4.6:1 on the ink */
	--ink-a: #aeb2f2;
	--ink-b: #f2a98c;
	--halo: 0 0 24px rgb(0 0 0 / 90%);
	position: relative;
	isolation: isolate;
	container-type: inline-size;
	width: min(100%, 26rem);
	aspect-ratio: 390 / 650;
	margin: var(--space-4) auto var(--space-3);
	overflow: hidden;
	border-radius: 20px;
	background: var(--room);
	box-shadow:
		0 1.6rem 4rem rgb(26 22 18 / 24%),
		0 0 0 1px rgb(26 22 18 / 8%);
	color: var(--room-text);
	-webkit-font-smoothing: antialiased;
}

.plate-river {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.plate-layer {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	padding: 6.2cqw 6.5cqw 7.5cqw;
}

.plate-chrome {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 8cqw;
}

.plate-wordmark {
	width: 17cqw;
	height: auto;
	opacity: 0.62;
}

/* label · tertiary */
.plate-mono {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 3.4cqw; /* 14px on the 416px plate */
	letter-spacing: 0.02em;
	line-height: 1;
	color: var(--room-text-3);
}


/* what it is for · secondary, regular weight, one size */
.plate-head {
	display: grid;
	gap: 1.9cqw; /* 8px within the group */
	max-width: 26ch;
	margin-top: 7.7cqw; /* 32px around it */
}

.plate-question,
.plate-answer {
	margin: 0;
	font-family: var(--font-body);
	font-size: 4.8cqw; /* 20px */
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.01em;
	text-shadow: var(--halo);
}

.plate-question {
	color: var(--room-text-2);
	text-wrap: balance;
}

.plate-answer {
	font-style: italic;
	color: var(--room-text-3);
}

/* what you get · primary colour, a solid check carrying the structure */
.plate-terms {
	display: grid;
	gap: 3.8cqw; /* 16px within the group */
	max-width: 22ch;
	margin: auto 0 0;
	padding: 0 0 11.5cqw; /* 48px around it */
	list-style: none;
}

.plate-term {
	display: grid;
	grid-template-columns: 5.3cqw minmax(0, 1fr); /* 22px check */
	gap: 2.9cqw; /* 12px */
	align-items: start;
	margin: 0;
	font-family: var(--font-body);
	font-size: 5.8cqw; /* 24px */
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.012em;
	color: var(--room-text);
	text-shadow: var(--halo);
}

.plate-term > span {
	max-width: 16ch;
	text-wrap: balance;
}

.plate-check {
	width: 5.3cqw;
	height: 5.3cqw;
	margin-top: 0.7cqw; /* centred on the first line */
	fill: var(--room-text);
	filter: drop-shadow(0 0 6px rgb(0 0 0 / 55%));
}

.plate-check path {
	fill: none;
	stroke: var(--room);
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* what it costs · the one loud thing, in its own register: wide and heavy */
.plate-price {
	display: flex;
	align-items: baseline;
	gap: 1.9cqw; /* 8px */
	margin: 0;
	font-family: var(--font-body);
	font-size: 4.3cqw; /* 18px */
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--room-text-2);
	text-shadow: var(--halo);
}

.plate-price strong {
	font-family: "Sohne Breit", var(--font-body);
	font-size: 11.5cqw; /* 48px */
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--room-text);
}

.plate-note {
	max-width: 26rem;
	margin: 0 auto var(--space-7);
	text-align: center;
}
