:root {
	--paper: var(--eco-paper);
	--ink: var(--eco-ink);
	--white: var(--eco-white);
	--green: var(--eco-green);
	--muted: var(--eco-muted);
	--line: var(--eco-line);
	--soft: #e8eadf;
	--amber: var(--eco-amber);
	--red: var(--eco-red);
	--serif: var(--eco-serif);
	--sans: var(--eco-sans);
	color-scheme: light;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 16px/1.55 var(--sans);
	-webkit-font-smoothing: antialiased;
}
[hidden] {
	display: none !important;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
textarea {
	font: inherit;
}
button,
a,
summary {
	-webkit-tap-highlight-color: transparent;
}
button {
	cursor: pointer;
}
img,
svg {
	max-width: 100%;
}
sub {
	font-size: 0.6em;
	line-height: 0;
}
h1,
h2,
h3,
p {
	margin: 0;
}
h1,
h2 {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.04;
}
h1 em,
h2 em {
	font-style: normal;
	color: var(--green);
}
h2 {
	font-size: clamp(36px, 4vw, 54px);
}
h3 {
	font-weight: 500;
	letter-spacing: -0.025em;
}
::selection {
	background: #cfe1c8;
	color: var(--ink);
}
:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 5px;
}
.page-width {
	width: calc(100% - 112px);
	max-width: 1296px;
	margin-inline: auto;
}
.eyebrow,
.small-label {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.115em;
	text-transform: uppercase;
}
.eyebrow {
	color: var(--green);
}
.small-label {
	color: var(--muted);
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding: 10px 0;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}
.text-link:hover {
	color: var(--green);
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-height: 50px;
	padding: 13px 23px;
	background: var(--green);
	color: white;
	border: 1px solid var(--green);
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	transition: background 0.15s;
}
.button:hover {
	background: #09603a;
}
.button:disabled {
	cursor: wait;
	opacity: 0.7;
}
.button span {
	font-size: 18px;
}
.button-small {
	min-height: 43px;
	padding: 10px 18px;
	font-size: 13px;
	gap: 24px;
}
.skip-link {
	position: fixed;
	left: 16px;
	top: 12px;
	padding: 10px 20px;
	background: var(--ink);
	color: white;
	transform: translateY(-150%);
	z-index: 100;
}
.skip-link:focus {
	transform: none;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.navigation {
	height: 80px;
	display: flex;
	align-items: center;
	gap: 65px;
}
.brand {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
}
.brand img {
	width: 94px;
	height: 40px;
	object-fit: contain;
}
.desktop-links {
	display: flex;
	gap: 31px;
	font-size: 14px;
}
.desktop-links a {
	padding: 15px 0;
}
.desktop-links a:hover,
.desktop-links [aria-current] {
	color: var(--green);
}
.desktop-links [aria-current] {
	text-decoration: underline;
	text-underline-offset: 6px;
}
.navigation-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 29px;
}
.sign-in {
	font-size: 13px;
}
.sign-in span {
	margin-left: 5px;
}
.mobile-menu {
	display: none;
}
.masthead {
	padding-top: 48px;
	padding-bottom: 34px;
	border-bottom: 1px solid var(--ink);
}
.masthead h1 {
	font-size: clamp(60px, 7.3vw, 100px);
	line-height: 1.01;
	letter-spacing: -0.045em;
}
.masthead-intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
	margin-top: 30px;
}
.masthead-intro > p {
	font-size: 17px;
	line-height: 1.65;
	color: #465248;
	max-width: 53ch;
}
.masthead-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}
.masthead-actions .text-link {
	border: 0;
	font-size: 13px;
	gap: 14px;
}
.record-section {
	padding-top: 30px;
	padding-bottom: 42px;
}
.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 38px;
}
.section-heading .eyebrow {
	margin-bottom: 17px;
}
.record-heading {
	margin-bottom: 28px;
	align-items: center;
}
.record-heading .eyebrow {
	display: none;
}
.record-heading h2 {
	font: 400 22px/1.3 var(--sans);
	letter-spacing: -0.03em;
}
.example-label {
	font-size: 11px;
	border: 1px solid #c4c9b9;
	padding: 5px 10px;
	color: var(--muted);
	white-space: nowrap;
	border-radius: 2px;
}
.working-record {
	display: grid;
	grid-template-columns: 30% 1fr;
	position: relative;
}
.source-margin {
	padding: 26px 52px 0 0;
	position: relative;
}
.source-paper {
	background: #ece9de;
	border: 1px solid #d5d1c2;
	margin-top: 24px;
	padding: 21px 22px 18px;
	position: relative;
	transform: rotate(-2deg);
}
.source-paper:after {
	content: "";
	position: absolute;
	width: calc(100% + 27px);
	height: 1px;
	left: calc(100% + 1px);
	top: 59%;
	max-width: 55px;
	background: var(--green);
	transform: rotate(2deg);
	transform-origin: left;
}
.paper-top {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--muted);
}
.source-paper h3 {
	font: 400 27px/1.05 var(--serif);
	margin: 27px 0 7px;
	letter-spacing: -0.025em;
}
.paper-period,
.paper-line,
.paper-caption {
	font-size: 10px;
	color: var(--muted);
}
.paper-rule {
	height: 1px;
	background: #c8c7b9;
	margin: 17px 0;
}
.paper-line {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin: 8px 0;
}
.paper-reading {
	margin-top: 23px;
}
.paper-reading > span {
	display: block;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.paper-reading strong {
	display: block;
	font-weight: 500;
	font-size: 43px;
	line-height: 1.2;
	letter-spacing: -0.035em;
	font-variant-numeric: tabular-nums;
}
.paper-reading small {
	font-size: 14px;
	font-weight: 400;
}
.paper-caption {
	font-size: 9px;
	display: block;
	line-height: 1.5;
}
.margin-note {
	display: flex;
	gap: 14px;
	align-items: start;
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: var(--green);
	margin: 30px 0 0 10px;
}
.margin-note > span {
	font: 28px var(--sans);
}
.report-sheet {
	border: 1px solid var(--line);
	background: var(--white);
	position: relative;
	padding: 0 34px;
	box-shadow:
		5px 5px 0 -1px #e8e5db,
		5px 5px 0 0 var(--line);
}
.report-sheet:before {
	content: "";
	display: block;
	background: var(--green);
	height: 5px;
	width: 82px;
	position: absolute;
	top: -5px;
	left: -1px;
}
.sheet-header {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	border-bottom: 1px solid var(--line);
	padding: 18px 0;
	color: var(--muted);
	font-size: 11px;
}
.sheet-header .small-label {
	font-size: 10px;
	letter-spacing: 0.08em;
}
.result-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 26px;
	font-size: 14px;
}
.record-status {
	font-size: 10px;
	color: var(--green);
}
.record-status > span {
	margin-right: 5px;
}
.record-number {
	display: flex;
	align-items: baseline;
	gap: 18px;
	margin: 7px 0 0;
	position: relative;
	font-variant-numeric: tabular-nums;
}
.record-number strong {
	font-size: clamp(110px, 14vw, 180px);
	letter-spacing: -0.08em;
	line-height: 1.04;
	font-weight: 400;
	color: var(--ink);
}
.record-number > span {
	font-size: 26px;
	color: var(--muted);
}
.record-flourish {
	display: none;
}
.result-basis {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
	font-size: 11px;
	color: var(--muted);
}
.sheet-note {
	display: flex;
	gap: 10px;
	align-items: baseline;
	margin: 16px 0 22px;
	color: var(--muted);
}
.sheet-note p {
	font-size: 11px;
	line-height: 1.5;
	max-width: 70ch;
}
.note-index {
	border: 1px solid #9da597;
	border-radius: 50%;
	font: 10px/13px var(--serif);
	height: 14px;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}
.evidence-details {
	border-top: 1px solid var(--ink);
}
.evidence-details summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	cursor: pointer;
	padding: 16px 0;
	font-weight: 500;
	font-size: 13px;
}
summary::-webkit-details-marker {
	display: none;
}
.summary-sign {
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.15s;
}
.evidence-details[open] .summary-sign {
	transform: rotate(45deg);
}
.evidence-tabs {
	display: flex;
	border-bottom: 1px solid var(--line);
}
.evidence-tabs button {
	flex: 1;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 12px 4px;
	color: var(--muted);
	background: none;
	font-size: 12px;
	white-space: nowrap;
	text-align: left;
}
.evidence-tabs button > span {
	font-size: 9px;
	margin-right: 7px;
	opacity: 0.8;
}
.evidence-tabs [aria-selected="true"] {
	color: var(--green);
	border-bottom-color: var(--green);
}
.evidence-tabs button:hover {
	color: var(--green);
}
.evidence-panel {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 14px;
	padding: 24px 0;
	min-height: 166px;
}
.panel-index {
	color: var(--green);
	font-size: 11px;
	padding-top: 4px;
}
.evidence-panel h3 {
	font-size: 16px;
	margin-bottom: 6px;
}
.evidence-panel p {
	font-size: 13px;
	line-height: 1.6;
	max-width: 66ch;
	color: #48564a;
}
.detail-reference {
	display: block;
	margin-top: 12px;
	font-size: 10px;
	color: var(--muted);
	line-height: 1.5;
}
.sheet-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 0;
	border-top: 1px solid var(--line);
	font-size: 9px;
	letter-spacing: 0.015em;
	color: var(--muted);
}
.sheet-footer > span:last-child {
	font-size: 21px;
	color: var(--green);
}
.sheet-footer sup {
	font-size: 10px;
}
.outcomes-section {
	padding-block: 90px 72px;
}
.section-intro {
	max-width: 300px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 4px;
}
.outcome-row {
	display: grid;
	grid-template-columns: 55px minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 28px;
	align-items: center;
	padding: 32px 0;
	border-top: 1px solid var(--line);
}
.outcome-number {
	align-self: start;
	margin-top: 5px;
	color: var(--green);
	font-size: 11px;
}
.outcome-copy h3 {
	font-size: 25px;
	line-height: 1.25;
	margin-bottom: 12px;
}
.outcome-copy p {
	max-width: 38ch;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}
.product-detail {
	background: #eeeee5;
	padding: 18px 23px;
	min-height: 153px;
}
.detail-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	font-size: 10px;
	letter-spacing: 0.02em;
	color: var(--muted);
	padding-bottom: 13px;
	border-bottom: 1px solid #cfd3c5;
}
.detail-heading > span:last-child {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}
.inventory-detail > div:not(.detail-heading) {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.6fr;
	gap: 10px;
	padding: 12px 0 0;
	align-items: center;
	font-size: 11px;
}
.inventory-detail strong {
	font-size: 18px;
	font-weight: 500;
}
.inventory-detail strong small {
	font-size: 10px;
	font-weight: 400;
}
.status-text {
	color: var(--green);
	text-align: right;
	font-size: 9px;
}
.status-text.amber {
	color: var(--amber);
}
.missing-value {
	font-size: 11px;
	color: var(--amber);
}
.review-item {
	display: flex;
	gap: 13px;
	align-items: center;
	padding: 14px 0 0;
	font-size: 12px;
}
.review-item strong {
	display: block;
	font-size: 12px;
	font-weight: 500;
}
.review-item div > span {
	display: block;
	font-size: 10px;
	color: var(--muted);
	margin-top: 2px;
}
.review-check {
	border: 1px solid #8da493;
	border-radius: 50%;
	color: var(--green);
	height: 22px;
	width: 22px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 11px;
}
.review-check.pending {
	border-color: #bda57e;
	color: var(--amber);
}
.review-reference {
	margin-left: auto;
	font-size: 10px;
	color: var(--muted);
}
.action-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 17px;
	padding: 13px 0;
}
.outline-tag {
	font-size: 9px;
	border: 1px solid #adb6a4;
	padding: 2px 7px;
	border-radius: 2px;
}
.action-criteria {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	font-size: 9px;
	color: var(--muted);
	gap: 10px;
}
.action-criteria strong {
	font-weight: 400;
	font-size: 13px;
	display: inline-block;
	margin-top: 5px;
	color: var(--ink);
}
.coverage-section {
	background: var(--ink);
	color: var(--paper);
	padding: 76px 0 80px;
}
.coverage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}
.coverage-section .eyebrow {
	color: #c1d0b3;
	margin-bottom: 25px;
}
.coverage-section h2 em {
	color: #c1d0b3;
}
.coverage-section h2 {
	font-size: clamp(38px, 4.2vw, 57px);
}
.coverage-grid > div > p:not(.eyebrow) {
	color: #c0c8be;
	max-width: 38ch;
	margin: 22px 0 18px;
	font-size: 15px;
	line-height: 1.7;
}
.coverage-section .text-link:hover {
	color: #d7eac6;
}
.map-source {
	display: flex;
	gap: 17px;
	align-items: center;
	padding: 21px 20px;
	background: #2c382e;
	border: 1px solid #4b5849;
}
.map-symbol {
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
}
.map-source strong {
	font-size: 17px;
	font-weight: 500;
	display: block;
}
.map-source div > span {
	font-size: 10px;
	color: #bdc7b7;
	display: block;
	margin-top: 3px;
}
.map-outputs {
	border-left: 1px solid #647560;
	margin: 0 0 0 28px;
	padding: 24px 0 0 31px;
	display: grid;
	gap: 14px;
}
.map-outputs > a {
	display: block;
	position: relative;
	background: #29342b;
	padding: 17px 19px 15px;
	border: 1px solid #4b5849;
}
.map-outputs > a:before {
	content: "";
	height: 1px;
	width: 32px;
	background: #647560;
	position: absolute;
	left: -32px;
	top: 50%;
}
.map-outputs > a:hover {
	border-color: #bfcea9;
}
.map-outputs .small-label {
	color: #b0c2a2;
	font-size: 9px;
}
.map-outputs strong {
	font-weight: 400;
	font-size: 20px;
	display: block;
	margin: 5px 0 3px;
	letter-spacing: -0.02em;
}
.map-outputs > a > span:last-child {
	font-size: 10px;
	color: #b9c4b2;
	display: block;
}
.map-outputs > a > span:last-child > span {
	float: right;
	font-size: 13px;
}
.control-section {
	padding-block: 95px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}
.control-copy .eyebrow {
	margin-bottom: 23px;
}
.control-copy p:not(.eyebrow) {
	font-size: 15px;
	line-height: 1.7;
	color: var(--muted);
	max-width: 39ch;
	margin: 22px 0 17px;
}
.correction-example {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 20px 25px 18px;
	transform: rotate(1deg);
}
.correction-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}
.correction-index {
	font-size: 10px;
	color: var(--muted);
}
.correction-row strong {
	font-weight: 500;
	display: block;
	font-size: 13px;
}
.correction-row div > span {
	font-size: 10px;
	color: var(--muted);
	display: block;
	margin-top: 2px;
}
.correction-value {
	font-size: 20px;
	letter-spacing: -0.035em;
	margin-left: auto;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.corrected .correction-value,
.corrected .correction-index {
	color: var(--green);
}
.correction-example > p {
	font-size: 10px;
	color: var(--muted);
	margin-top: 15px;
}
.demo-section {
	background: #e8ecdf;
	border-block: 1px solid #cdd4c0;
	padding: 76px 0 80px;
}
.demo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
}
.demo-copy .eyebrow {
	margin-bottom: 27px;
}
.demo-copy h2 {
	font-size: clamp(40px, 4.3vw, 56px);
}
.demo-copy > p:not(.eyebrow) {
	max-width: 39ch;
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	margin-top: 24px;
}
.demo-copy .demo-reassurance {
	font-size: 12px !important;
	margin-top: 21px !important;
}
.email-link {
	display: inline-flex;
	font-size: 14px;
	gap: 45px;
	border-bottom: 1px solid #a5b398;
	padding: 9px 0;
	margin-top: 18px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.form-field {
	margin-bottom: 17px;
}
.form-field label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 8px;
}
.form-field label > span:not(.optional) {
	color: var(--green);
}
.form-field .optional {
	color: var(--muted);
	font-weight: 400;
	font-size: 10px;
	margin-left: 8px;
}
.form-field input,
.form-field textarea {
	display: block;
	width: 100%;
	min-height: 46px;
	border: 1px solid #79876b;
	background: #f6f8f0;
	color: var(--ink);
	border-radius: 2px;
	padding: 11px 12px;
	font-size: 15px;
	outline-offset: 2px;
}
.form-field textarea {
	resize: vertical;
	min-height: 96px;
}
.form-field input:focus,
.form-field textarea:focus {
	background: var(--white);
}
.form-field textarea::placeholder {
	color: #677260;
	font-size: 13px;
}
.form-notice {
	font-size: 11px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 18px;
	max-width: 61ch;
}
.form-notice a {
	text-decoration: underline;
}
.form-trap {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}
.form-status {
	font-size: 13px;
	margin-top: 15px;
	line-height: 1.5;
	color: var(--green);
}
.form-status.error,
.field-error {
	color: var(--red);
}
.field-error {
	display: block;
	font-size: 11px;
	margin-top: 4px;
}
.field-error:empty {
	display: none;
}
[aria-invalid="true"] {
	border-color: var(--red) !important;
}
.demo-form-wrap .button {
	width: 100%;
	justify-content: space-between;
}
.site-footer {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 35px;
	padding: 42px 0 20px;
	align-items: center;
}
.site-footer > p {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.5;
}
.site-footer nav {
	display: flex;
	gap: 25px;
	font-size: 12px;
}
.site-footer nav a:hover {
	color: var(--green);
}
.footer-bottom {
	grid-column: 1/-1;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid var(--line);
	padding-top: 19px;
	font-size: 10px;
	color: var(--muted);
}
/* Supporting pages use the same document structure, without the homepage demonstration. */
.subpage-header {
	padding: 72px 0 48px;
	border-bottom: 1px solid var(--ink);
}
.subpage-header h1 {
	font-size: clamp(49px, 6.1vw, 82px);
	line-height: 1.02;
	max-width: 18ch;
	margin: 24px 0;
}
.subpage-header .lede {
	max-width: 60ch;
	font-size: 18px;
	line-height: 1.7;
	color: var(--muted);
}
.subpage-note {
	font-size: 12px;
	color: var(--muted);
	max-width: 80ch;
	line-height: 1.7;
	margin-top: 22px;
}
.coverage-table-section {
	padding: 44px 0 20px;
}
.coverage-table-section h2 {
	font-size: 34px;
	margin-bottom: 24px;
}
.coverage-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.coverage-table th {
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--muted);
	border-bottom: 1px solid var(--ink);
	padding: 12px 20px 12px 0;
}
.coverage-table td {
	font-size: 13px;
	line-height: 1.7;
	vertical-align: top;
	border-bottom: 1px solid var(--line);
	padding: 23px 28px 23px 0;
}
.coverage-table td:first-child {
	width: 21%;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 500;
}
.coverage-table td:nth-child(2) {
	width: 37%;
}
.coverage-table td:last-child {
	color: var(--muted);
	padding-right: 0;
}
.coverage-table td small {
	font-size: 10px;
	color: var(--muted);
	display: block;
	font-weight: 400;
	margin-top: 7px;
}
.reading-note {
	background: #e8ecdf;
	padding: 23px 28px;
	margin: 30px 0;
	font-size: 13px;
	line-height: 1.7;
	color: var(--muted);
}
.reading-note strong {
	color: var(--ink);
	font-weight: 500;
}
.subpage-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin: 45px 0 70px;
	border-top: 1px solid var(--line);
	padding-top: 35px;
}
.subpage-cta h2 {
	font-size: 35px;
}
.subpage-cta p {
	font-size: 14px;
	color: var(--muted);
	margin-top: 12px;
}
.trust-list {
	max-width: 1000px;
	margin: 25px 0 0;
}
.trust-item {
	display: grid;
	grid-template-columns: 55px minmax(200px, 0.85fr) 1.4fr;
	gap: 30px;
	padding: 34px 0;
	border-bottom: 1px solid var(--line);
}
.trust-item > .small-label {
	color: var(--green);
	padding-top: 5px;
}
.trust-item h2 {
	font-size: 30px;
	letter-spacing: -0.03em;
}
.trust-item p {
	font-size: 14px;
	line-height: 1.75;
	color: var(--muted);
}
.trust-item p + p {
	margin-top: 12px;
}
.trust-item .text-link {
	font-size: 13px;
	margin-top: 10px;
}
@media (min-width: 1500px) {
}
@media (max-width: 1100px) {
	.page-width {
		width: calc(100% - 80px);
	}
	.navigation {
		gap: 48px;
	}
	.source-margin {
		padding-right: 35px;
	}
	.source-paper {
		padding: 18px;
	}
	.source-paper:after {
		width: 35px;
	}
	.report-sheet {
		padding: 0 25px;
	}
	.coverage-grid,
	.control-section,
	.demo-grid {
		gap: 60px;
	}
	.outcome-row {
		grid-template-columns: 30px 1fr 1.15fr;
		gap: 20px;
	}
	.product-detail {
		padding: 17px;
	}
	.site-footer nav {
		gap: 18px;
	}
	.section-intro {
		max-width: 260px;
	}
}
@media (max-width: 850px) {
	.page-width {
		width: calc(100% - 48px);
	}
	.navigation {
		height: 70px;
		gap: 35px;
	}
	.desktop-links {
		gap: 20px;
		font-size: 13px;
	}
	.navigation-actions {
		gap: 15px;
	}
	h1 {
		font-size: 59px;
	}
	.source-margin {
		padding-right: 25px;
	}
	.source-paper {
		padding: 15px;
	}
	.paper-top {
		font-size: 7px;
	}
	.source-paper h3 {
		font-size: 23px;
	}
	.paper-line {
		font-size: 8px;
	}
	.source-paper:after {
		width: 25px;
	}
	.margin-note {
		font-size: 17px;
	}
	.report-sheet {
		padding: 0 20px;
	}
	.record-number strong {
		font-size: 125px;
	}
	.record-number > span {
		font-size: 21px;
	}
	.result-basis {
		align-items: start;
		flex-direction: column;
		gap: 5px;
	}
	.evidence-tabs button {
		font-size: 11px;
	}
	.evidence-tabs button > span {
		display: none;
	}
	.evidence-panel {
		padding: 20px 0;
		min-height: 175px;
		grid-template-columns: 18px 1fr;
		gap: 8px;
	}
	.evidence-panel h3 {
		font-size: 15px;
	}
	.evidence-panel p {
		font-size: 12px;
	}
	.outcomes-section {
		padding-block: 65px 50px;
	}
	.outcome-row {
		grid-template-columns: 24px 1fr 1fr;
		gap: 17px;
	}
	.outcome-copy h3 {
		font-size: 21px;
	}
	.outcome-copy p {
		font-size: 13px;
	}
	.inventory-detail > div:not(.detail-heading) {
		grid-template-columns: 1fr 1fr;
		font-size: 10px;
	}
	.inventory-detail .status-text {
		display: none;
	}
	.review-reference {
		display: none;
	}
	.action-title {
		font-size: 15px;
	}
	.action-criteria {
		font-size: 8px;
	}
	.action-criteria strong {
		font-size: 11px;
	}
	.coverage-grid,
	.control-section,
	.demo-grid {
		gap: 36px;
	}
	.coverage-grid h2 {
		font-size: 39px;
	}
	.map-source {
		padding: 15px;
		gap: 12px;
	}
	.map-source strong {
		font-size: 15px;
	}
	.map-source div > span {
		font-size: 9px;
	}
	.map-outputs {
		margin-left: 15px;
		padding-left: 20px;
	}
	.map-outputs > a {
		padding: 13px;
	}
	.map-outputs > a:before {
		width: 21px;
		left: -21px;
	}
	.map-outputs strong {
		font-size: 18px;
	}
	.control-section {
		padding-block: 65px;
	}
	.correction-example {
		padding: 17px;
	}
	.correction-row {
		gap: 9px;
	}
	.correction-value {
		font-size: 18px;
	}
	.demo-copy h2 {
		font-size: 39px;
	}
	.demo-grid {
		gap: 38px;
	}
	.form-row {
		gap: 12px;
	}
	.site-footer {
		grid-template-columns: 94px 1fr;
		gap: 25px;
	}
	.site-footer nav {
		grid-column: 1/-1;
	}
	.footer-bottom {
		font-size: 9px;
	}
	.section-intro {
		max-width: 235px;
		font-size: 13px;
	}
}
@media (max-width: 640px) {
	html {
		scroll-padding-top: 85px;
	}
	.page-width {
		width: calc(100% - 40px);
	}
	.navigation {
		height: 68px;
		gap: 16px;
	}
	.brand img {
		width: 79px;
		height: 35px;
	}
	.desktop-links,
	.sign-in {
		display: none;
	}
	.navigation-actions {
		margin-left: auto;
	}
	.button-small {
		min-height: 40px;
		font-size: 11px;
		padding: 10px 12px;
		gap: 12px;
	}
	.button-small span {
		font-size: 15px;
	}
	.mobile-menu {
		display: block;
	}
	.mobile-menu summary {
		width: 36px;
		height: 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		padding: 8px;
		cursor: pointer;
		list-style: none;
	}
	.mobile-menu summary > span {
		height: 1px;
		background: var(--ink);
		width: 20px;
	}
	.mobile-menu nav {
		position: absolute;
		top: 67px;
		left: 0;
		right: 0;
		display: grid;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
		padding: 12px 20px 18px;
		box-shadow: 0 10px 18px #1f292310;
	}
	.mobile-menu nav a {
		padding: 11px 5px;
		font-size: 15px;
	}
	.mobile-menu[open] summary {
		background: var(--soft);
	}
	h1 {
		font-size: clamp(46px, 11.5vw, 66px);
		line-height: 1.02;
		letter-spacing: -0.045em;
	}
	.record-section {
		padding-top: 22px;
		padding-bottom: 15px;
	}
	.record-heading {
		align-items: start;
		gap: 16px;
		margin-bottom: 21px;
	}
	.record-heading h2 {
		font-size: 17px;
		max-width: 19ch;
	}
	.example-label {
		font-size: 8px;
		padding: 4px 7px;
	}
	.working-record {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.source-margin {
		padding: 0;
		display: none;
	}
	.report-sheet {
		padding: 0 18px;
	}
	.sheet-header {
		padding: 14px 0;
		font-size: 9px;
	}
	.sheet-header .small-label {
		font-size: 8px;
		letter-spacing: 0.05em;
	}
	.result-heading {
		margin-top: 21px;
		font-size: 12px;
		gap: 10px;
	}
	.record-status {
		font-size: 9px;
	}
	.record-number {
		gap: 15px;
	}
	.record-number strong {
		font-size: 132px;
		line-height: 1.1;
	}
	.record-number > span {
		font-size: 22px;
	}
	.result-basis {
		padding: 9px 0 14px;
		font-size: 10px;
		flex-direction: row;
		align-items: start;
		gap: 20px;
	}
	.result-basis > span {
		max-width: 50%;
	}
	.sheet-note {
		margin: 13px 0 18px;
		gap: 8px;
	}
	.sheet-note p {
		font-size: 10px;
		line-height: 1.6;
	}
	.evidence-details summary {
		padding: 14px 0;
		font-size: 12px;
	}
	.evidence-tabs button {
		font-size: 11px;
		min-height: 44px;
		text-align: center;
	}
	.evidence-panel {
		padding: 18px 0;
		min-height: 184px;
		gap: 10px;
	}
	.evidence-panel h3 {
		font-size: 15px;
	}
	.evidence-panel p {
		font-size: 12px;
	}
	.detail-reference {
		font-size: 9px;
	}
	.sheet-footer {
		font-size: 7px;
		padding: 10px 0;
	}
	.sheet-footer > span:last-child {
		font-size: 18px;
	}
	.outcomes-section {
		padding-block: 56px 36px;
	}
	.section-heading {
		display: block;
		margin-bottom: 27px;
	}
	.section-heading .eyebrow {
		font-size: 9px;
		margin-bottom: 15px;
	}
	h2 {
		font-size: 39px;
	}
	.section-intro {
		margin-top: 19px;
		max-width: 37ch;
		font-size: 14px;
	}
	.record-heading {
		display: flex;
	}
	.outcome-row {
		grid-template-columns: 24px 1fr;
		gap: 11px 14px;
		padding: 27px 0;
	}
	.outcome-copy h3 {
		font-size: 23px;
	}
	.outcome-copy p {
		max-width: 40ch;
		font-size: 14px;
		line-height: 1.65;
	}
	.product-detail {
		grid-column: 2/-1;
		margin-top: 8px;
		padding: 16px;
		min-height: 145px;
	}
	.inventory-detail > div:not(.detail-heading) {
		grid-template-columns: 1.2fr 0.9fr;
		font-size: 11px;
		padding-top: 12px;
	}
	.review-item strong {
		font-size: 11px;
	}
	.review-item div > span {
		font-size: 9px;
	}
	.action-title {
		font-size: 17px;
	}
	.action-criteria {
		font-size: 9px;
	}
	.action-criteria strong {
		font-size: 12px;
	}
	.coverage-section {
		padding-block: 49px;
	}
	.coverage-grid,
	.control-section,
	.demo-grid {
		display: block;
	}
	.coverage-section .eyebrow {
		font-size: 9px;
		margin-bottom: 19px;
	}
	.coverage-grid h2 {
		font-size: 41px;
	}
	.coverage-grid > div > p:not(.eyebrow) {
		font-size: 14px;
		max-width: 43ch;
		margin: 19px 0 12px;
	}
	.report-map {
		margin-top: 35px;
	}
	.map-source {
		padding: 18px 20px;
		gap: 20px;
	}
	.map-source strong {
		font-size: 17px;
	}
	.map-source div > span {
		font-size: 10px;
	}
	.map-outputs {
		margin-left: 25px;
		padding-left: 25px;
	}
	.map-outputs > a {
		padding: 15px 17px;
	}
	.map-outputs > a:before {
		width: 26px;
		left: -26px;
	}
	.map-outputs strong {
		font-size: 20px;
	}
	.map-outputs > a > span:last-child {
		font-size: 10px;
	}
	.control-section {
		padding-block: 51px;
	}
	.control-copy .eyebrow {
		font-size: 9px;
		margin-bottom: 18px;
	}
	.control-copy h2 {
		font-size: 42px;
	}
	.control-copy p:not(.eyebrow) {
		font-size: 14px;
		max-width: 42ch;
	}
	.correction-example {
		margin-top: 33px;
		transform: none;
		padding: 18px 20px;
	}
	.correction-row {
		padding: 18px 0;
		gap: 16px;
	}
	.correction-value {
		font-size: 22px;
	}
	.correction-row strong {
		font-size: 13px;
	}
	.correction-example > p {
		font-size: 10px;
	}
	.demo-section {
		padding-block: 49px;
	}
	.demo-copy .eyebrow {
		font-size: 9px;
		margin-bottom: 19px;
	}
	.demo-copy h2 {
		font-size: 40px;
	}
	.demo-copy > p:not(.eyebrow) {
		font-size: 14px;
		max-width: 41ch;
		margin-top: 19px;
	}
	.demo-copy .demo-reassurance {
		font-size: 11px !important;
	}
	.email-link {
		margin-top: 12px;
	}
	.demo-form-wrap {
		margin-top: 34px;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.form-field input,
	.form-field textarea {
		font-size: 16px;
	}
	.form-notice {
		font-size: 11px;
	}
	.site-footer {
		padding-top: 29px;
		gap: 22px;
	}
	.site-footer nav {
		flex-wrap: wrap;
		gap: 12px 25px;
		font-size: 12px;
	}
	.footer-bottom {
		display: block;
		font-size: 9px;
	}
	.footer-bottom > span {
		display: block;
	}
	.footer-bottom > span + span {
		margin-top: 8px;
	}
	.subpage-header {
		padding: 42px 0 30px;
	}
	.subpage-header > .eyebrow {
		font-size: 10px;
	}
	.subpage-header h1 {
		font-size: 48px;
		max-width: 16ch;
		margin: 21px 0;
	}
	.subpage-header .lede {
		font-size: 16px;
	}
	.subpage-note {
		font-size: 11px;
	}
	.coverage-table-section {
		padding-top: 34px;
	}
	.coverage-table-section h2 {
		font-size: 32px;
	}
	.coverage-table thead {
		display: none;
	}
	.coverage-table tbody,
	.coverage-table tr,
	.coverage-table td {
		display: block;
		width: 100% !important;
	}
	.coverage-table tr {
		border-bottom: 1px solid var(--line);
		padding: 20px 0;
	}
	.coverage-table td {
		padding: 5px 0;
		border: 0;
		font-size: 13px;
	}
	.coverage-table td:first-child {
		font-size: 21px;
		margin-bottom: 10px;
	}
	.coverage-table td:not(:first-child):before {
		content: attr(data-label);
		display: block;
		font-size: 9px;
		text-transform: uppercase;
		font-weight: 600;
		letter-spacing: 0.08em;
		color: var(--green);
		margin: 9px 0 5px;
	}
	.coverage-table td small {
		font-size: 10px;
	}
	.reading-note {
		padding: 19px 20px;
		font-size: 12px;
	}
	.subpage-cta {
		display: block;
		margin-bottom: 45px;
		padding-top: 28px;
	}
	.subpage-cta h2 {
		font-size: 33px;
	}
	.subpage-cta .button {
		margin-top: 22px;
	}
	.trust-item {
		grid-template-columns: 25px 1fr;
		gap: 12px;
		padding: 29px 0;
	}
	.trust-item h2 {
		font-size: 28px;
	}
	.trust-item > div {
		grid-column: 2/-1;
	}
	.trust-item p {
		font-size: 13px;
	}
	.trust-item > .small-label {
		font-size: 10px;
	}
	.trust-item .text-link {
		font-size: 12px;
	}
}
@media (max-width: 374px) {
	.page-width {
		width: calc(100% - 32px);
	}
	.navigation {
		gap: 11px;
	}
	.brand img {
		width: 69px;
	}
	.mobile-menu summary {
		width: 30px;
		padding: 5px;
	}
	.record-heading h2 {
		font-size: 16px;
	}
	.result-heading {
		font-size: 11px;
	}
	.record-status {
		font-size: 8px;
	}
	.report-sheet {
		padding-inline: 16px;
	}
	.record-number strong {
		font-size: 120px;
	}
	.coverage-grid h2,
	.demo-copy h2 {
		font-size: 37px;
	}
	.detail-heading {
		font-size: 9px;
	}
	.detail-heading > span:last-child {
		font-size: 8px;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
.coverage-section :focus-visible {
	outline-color: #d7eac6;
}
@media (max-width: 640px) {
	.source-margin {
		display: block;
		padding: 0;
		border: 1px solid var(--line);
		background: #ece9de;
	}
	.source-margin > .small-label,
	.source-margin .margin-note,
	.source-paper .paper-top,
	.source-paper h3,
	.source-paper .paper-rule,
	.source-paper .paper-line,
	.source-paper .paper-caption {
		display: none;
	}
	.source-paper {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		margin: 0;
		padding: 13px 17px;
		transform: none;
		border: 0;
		background: none;
	}
	.source-paper:after {
		width: 1px;
		height: 20px;
		max-width: none;
		top: 100%;
		left: 50%;
		transform: none;
	}
	.paper-period {
		font-size: 10px;
	}
	.paper-period:before {
		content: "SOURCE / ELECTRICITY STATEMENT";
		display: block;
		font-size: 8px;
		letter-spacing: 0.07em;
		margin-bottom: 3px;
		color: var(--green);
	}
	.paper-reading {
		margin: 0;
	}
	.paper-reading > span {
		font-size: 8px;
	}
	.paper-reading strong {
		font-size: 25px;
		line-height: 1.1;
	}
	.paper-reading small {
		font-size: 10px;
	}
}

.product-capture {
	margin: 0;
}
.product-capture img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--line);
}
.product-capture figcaption {
	font-size: 10px;
	color: var(--muted);
	margin-top: 10px;
	line-height: 1.6;
}
.product-capture figcaption strong {
	font-weight: 500;
}
.product-capture figcaption a {
	text-decoration: underline;
	text-underline-offset: 3px;
	display: block;
	margin-top: 3px;
}
@media (max-width: 640px) {
	.product-capture {
		grid-column: 2/-1;
		margin-top: 8px;
	}
	.product-capture figcaption {
		font-size: 10px;
	}
}

@media (max-width: 1100px) {
	.masthead-intro {
		gap: 35px;
	}
	.masthead-actions {
		display: block;
	}
	.masthead-actions .text-link {
		display: flex;
		margin-top: 8px;
	}
	.masthead h1 {
		font-size: clamp(57px, 7.2vw, 82px);
	}
}
@media (max-width: 640px) {
	.masthead {
		padding-top: 31px;
		padding-bottom: 25px;
	}
	.masthead h1 {
		font-size: clamp(43px, 9.8vw, 62px);
		line-height: 1.04;
	}
	.masthead-intro {
		display: block;
		margin: 22px 0 0;
		max-width: none;
		padding: 0;
	}
	.masthead-intro > p {
		font-size: 15px;
		line-height: 1.65;
		max-width: 41ch;
	}
	.masthead-actions {
		margin-top: 23px;
		display: flex;
		flex-wrap: wrap;
		gap: 8px 22px;
	}
	.masthead-actions .button {
		margin: 0;
	}
	.masthead-actions .text-link {
		margin: 0;
		font-size: 12px;
		gap: 12px;
	}
	.masthead-intro .button {
		margin-top: 0;
	}
	.masthead-intro > .text-link {
		margin: 0;
	}
	.masthead-foot {
		display: none;
	}
}

/* A line of evidence: motion is an optional explanation of the static record. */
.record-tools {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 44px;
}
.motion-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 44px;
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--green);
	font: 500 12px/1.3 var(--sans);
	text-align: left;
	cursor: pointer;
	position: relative;
	z-index: 3;
}
.motion-trigger > span {
	font-size: 20px;
	font-weight: 400;
}
.motion-trigger:hover {
	color: var(--ink);
}
.report-map,
.correction-example,
.record-number strong {
	position: relative;
}
.correction-example {
	transform: none;
}
.evidence-thread {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
	fill: none;
	stroke: var(--green);
	stroke-width: 1.25;
	stroke-linejoin: round;
	stroke-linecap: round;
}
.evidence-thread path {
	vector-effect: non-scaling-stroke;
}
.trail-base {
	opacity: 0.32;
}
.trail-active {
	opacity: 0;
	stroke-dasharray: 1;
	stroke-dashoffset: 0;
	stroke-width: 1.8;
}
.trail-tip {
	opacity: 0;
	stroke-width: 4;
	stroke-dasharray: 0.045 0.955;
	stroke-linecap: butt;
}
.has-evidence-thread .source-paper:after,
.has-evidence-thread .map-outputs > a:before {
	display: none;
}
.has-evidence-thread .map-outputs {
	border-left-color: transparent;
}
.number-rule {
	position: absolute;
	left: 8%;
	right: 0;
	bottom: 5%;
	height: 2px;
	background: var(--green);
	transform-origin: left;
	opacity: 0;
}
.evidence-tabs {
	position: relative;
}
.evidence-cursor {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 25%;
	height: 2px;
	background: var(--green);
	pointer-events: none;
}
.has-evidence-cursor [aria-selected="true"] {
	border-bottom-color: transparent;
}
.report-map .evidence-thread {
	stroke: #c1dba1;
}
.report-map .trail-base {
	opacity: 0.5;
}
.report-map > .motion-trigger {
	margin: 17px 0 0 59px;
	color: #d7eac6;
}
.report-map > .motion-trigger:hover {
	color: var(--white);
}
.correction-example > .motion-trigger {
	margin-top: 14px;
}
.motion-preference {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	cursor: pointer;
	font-size: 11px;
	color: var(--ink);
}
.motion-preference input {
	accent-color: var(--green);
	width: 16px;
	height: 16px;
	margin: 0;
}
html.motion-reduced {
	scroll-behavior: auto;
}
.motion-reduced *,
.motion-reduced *::before,
.motion-reduced *::after {
	animation: none !important;
	transition: none !important;
}
@media (max-width: 850px) {
	.record-tools {
		gap: 12px;
	}
	.record-tools .motion-trigger {
		gap: 9px;
		font-size: 11px;
	}
	.record-heading h2 {
		max-width: 24ch;
	}
}
@media (max-width: 640px) {
	.record-heading {
		align-items: start;
		gap: 15px;
	}
	.record-tools {
		flex-direction: column;
		align-items: flex-end;
		gap: 3px;
		flex-shrink: 0;
		min-height: 76px;
	}
	.record-tools .motion-trigger {
		font-size: 10px;
	}
	.record-tools .example-label {
		font-size: 8px;
	}
	.footer-bottom {
		flex-wrap: wrap;
	}
	.motion-preference {
		width: 100%;
	}
}

/* The complete proposition and its working example share the opening view. */
@media (min-width: 641px) {
	.masthead {
		padding-top: 34px;
		padding-bottom: 24px;
	}
	.masthead h1 {
		font-size: clamp(49px, 5.6vw, 80px);
		line-height: 1.05;
	}
	.masthead-intro {
		margin-top: 22px;
		gap: 40px;
	}
	.masthead-intro > p {
		font-size: 16px;
		line-height: 1.55;
		max-width: 59ch;
	}
	.record-section {
		padding-top: 22px;
	}
	.record-heading {
		margin-bottom: 20px;
	}
	.source-margin {
		padding-top: 10px;
	}
	.source-paper {
		margin-top: 13px;
		padding: 16px 20px;
	}
	.source-paper h3 {
		font-size: 25px;
		margin: 15px 0 12px;
	}
	.paper-reading {
		margin-top: 0;
	}
	.paper-reading strong {
		font-size: 44px;
	}
	.paper-period {
		margin-top: 9px;
	}
	.paper-rule {
		margin: 12px 0;
	}
	.paper-caption {
		margin-top: 10px;
	}
	.sheet-header {
		padding-block: 14px;
	}
	.result-heading {
		margin-top: 18px;
	}
	.record-number strong {
		font-size: clamp(110px, 11vw, 146px);
	}
	.result-basis {
		padding-block: 11px;
	}
}
.record-tools {
	gap: 18px;
}
.record-tools .motion-preference {
	font-size: 10px;
	white-space: nowrap;
	color: var(--muted);
}
.evidence-slip {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: 4;
	width: 130px;
	padding: 9px 12px;
	background: var(--white);
	border: 1px solid var(--green);
	border-left-width: 4px;
	color: var(--ink);
	pointer-events: none;
	opacity: 0;
	box-shadow: 3px 3px 0 #e5e6da;
}
.evidence-slip > span {
	display: block;
	font-size: 8px;
	letter-spacing: 0.06em;
	color: var(--green);
	text-transform: uppercase;
}
.evidence-slip > strong {
	font-size: 23px;
	font-weight: 500;
	line-height: 1.3;
}
.evidence-slip small {
	font-size: 11px;
	font-weight: 400;
}
@media (max-width: 850px) and (min-width: 641px) {
	.record-tools {
		gap: 10px;
	}
	.record-tools .motion-preference {
		font-size: 9px;
		gap: 5px;
	}
	.record-heading {
		gap: 18px;
	}
	.record-heading h2 {
		font-size: 19px;
	}
}
@media (max-width: 640px) {
	.masthead h1 {
		font-size: clamp(39px, 9.6vw, 58px);
	}
	.paper-period {
		order: -1;
	}
	.record-heading {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 4px 12px;
		align-items: center;
		margin-bottom: 20px;
	}
	.record-heading > div:first-child {
		grid-column: 1;
		grid-row: 1;
	}
	.record-tools {
		display: contents;
	}
	.record-tools .example-label {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}
	.record-tools .motion-trigger {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
	}
	.record-tools .motion-preference {
		grid-column: 1;
		grid-row: 2;
		font-size: 10px;
	}
	.evidence-slip {
		width: 112px;
		padding: 7px 9px;
	}
	.evidence-slip > strong {
		font-size: 19px;
	}
}

.headline-keep {
	white-space: nowrap;
}

.source-document {
	display: flow-root;
}
