:root {
	--paper: #f1f1ec;
	--surface: #fcfcf8;
	--ink: #111513;
	--muted: #686d67;
	--line: #d9dcd4;
	--gold: #e2a82f;
	--green: #277c6b;
	--deep: #202725;
	--max: 1240px;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font:
		15px / 1.65 system-ui,
		-apple-system,
		"Segoe UI",
		"PingFang SC",
		"Microsoft YaHei",
		sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input {
	font: inherit;
}
.section-shell {
	width: min(var(--max), calc(100% - 64px));
	margin-inline: auto;
}
.site-header {
	position: absolute;
	z-index: 10;
	inset: 0 0 auto;
	height: 76px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: min(var(--max), calc(100% - 64px));
	margin-inline: auto;
	border-bottom: 1px solid rgba(25, 27, 25, 0.14);
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	font-size: 17px;
	font-weight: 700;
}
.brand-mark {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 27px;
	height: 30px;
}
.brand-mark::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 19px;
	height: 18px;
	border: 1px solid currentColor;
	border-radius: 50% 50% 4px 4px;
	opacity: 0.85;
}
.brand-mark i {
	width: 9px;
	height: 15px;
	background: var(--gold);
	border-radius: 70% 30% 55% 45%;
	transform: rotate(12deg);
	box-shadow: 0 0 22px rgba(226, 168, 47, 0.55);
}
.brand-mark.large {
	width: 42px;
	height: 48px;
	transform: scale(1.35);
	margin-bottom: 18px;
}
.site-header nav {
	display: flex;
	gap: 32px;
	color: #3f433f;
	font-size: 13px;
}
.site-header nav a {
	transition: color 0.2s;
}
.site-header nav a:hover {
	color: var(--green);
}
.site-header > .button {
	justify-self: end;
}
.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 26px;
	padding: 0 24px;
	border: 1px solid var(--ink);
	border-radius: 4px;
	background: var(--ink);
	color: white;
	font-weight: 650;
	cursor: pointer;
	transition:
		transform 0.2s,
		background 0.2s;
}
.button:hover {
	transform: translateY(-2px);
	background: var(--green);
	border-color: var(--green);
}
.button-small {
	min-height: 40px;
	padding: 0 17px;
	gap: 14px;
	font-size: 13px;
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-block: 10px;
	border-bottom: 1px solid currentColor;
	font-weight: 650;
}
.hero {
	position: relative;
	min-height: 760px;
	padding-top: 145px;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
	gap: 66px;
	align-items: center;
}
.eyebrow,
.section-no {
	margin: 0 0 24px;
	color: var(--green);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
}
.eyebrow span {
	width: 24px;
	height: 1px;
	background: var(--green);
}
.hero h1 {
	max-width: 620px;
	margin: 0;
	font-size: clamp(52px, 5.4vw, 80px);
	line-height: 1.08;
	font-weight: 650;
	letter-spacing: 0;
}
.lead {
	max-width: 520px;
	margin: 30px 0 0;
	color: var(--muted);
	font-size: 17px;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
}
.hero-meta {
	display: flex;
	gap: 0;
	margin: 68px 0 0;
}
.hero-meta div {
	display: flex;
	gap: 10px;
	align-items: baseline;
	min-width: 124px;
}
.hero-meta dt {
	color: var(--gold);
	font:
		700 11px / 1 ui-monospace,
		monospace;
}
.hero-meta dd {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}
.evidence-stage {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.16);
	min-height: 520px;
	overflow: hidden;
	padding: 24px;
	background: var(--deep);
	color: white;
	box-shadow: 0 30px 80px rgba(28, 33, 31, 0.16);
}
.stage-glow {
	position: absolute;
	inset: -40% auto auto -20%;
	width: 390px;
	height: 390px;
	background: radial-gradient(
		circle,
		rgba(226, 168, 47, 0.17),
		transparent 67%
	);
	pointer-events: none;
}
.stage-header,
.question-row,
.signal-grid,
.stage-note {
	position: relative;
}
.stage-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.stage-title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 650;
}
.stage-title i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 16px var(--gold);
}
.live-dot {
	color: #aeb5af;
	font-size: 10px;
	letter-spacing: 0.08em;
}
.question-row {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: 26px;
}
.question-index {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--gold);
	font:
		700 12px / 1 ui-monospace,
		monospace;
}
.question-row small,
.question-row strong {
	display: block;
}
.question-row small {
	color: #89928c;
	font-size: 10px;
}
.question-row strong {
	margin-top: 3px;
	font-size: 14px;
}
.answer-block {
	margin: 24px 0;
	padding: 22px;
	background: rgba(255, 255, 255, 0.055);
	border-left: 1px solid var(--gold);
}
.answer-label {
	color: #89928c;
	font-size: 10px;
	margin-bottom: 18px;
}
.answer-block p {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 18px;
	margin: 8px 0;
}
.line {
	display: block;
	height: 5px;
	background: rgba(255, 255, 255, 0.16);
}
.line.long {
	width: 70%;
}
.line.medium {
	width: 43%;
}
.line.short {
	width: 24%;
}
.highlight-line {
	padding-left: 9px;
	background: linear-gradient(90deg, rgba(226, 168, 47, 0.13), transparent);
	color: #f5e0a6;
	font-size: 11px;
}
.highlight-line > span:first-child {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
}
.highlight-line > span:last-child {
	flex: 1;
	height: 1px;
	background: rgba(226, 168, 47, 0.2);
}
.signal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-block: 1px solid rgba(255, 255, 255, 0.13);
}
.signal-grid div {
	padding: 17px 12px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.signal-grid div:last-child {
	border-right: 0;
}
.signal-grid span,
.signal-grid strong {
	display: block;
}
.signal-grid span {
	color: #89928c;
	font-size: 10px;
}
.signal-grid strong {
	margin-top: 4px;
	font-size: 12px;
}
.signal-grid .signal-ok {
	color: #78c7af;
}
.stage-note {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 16px;
	margin-top: 24px;
}
.stage-note span {
	color: var(--gold);
	font:
		700 10px / 1.6 ui-monospace,
		monospace;
}
.stage-note p {
	margin: 0;
	color: #c2c7c3;
	font-size: 12px;
}
.statement-band {
	position: relative;
	overflow: hidden;
	padding: 110px 0 92px;
	background: var(--surface);
	border-block: 1px solid var(--line);
}
.statement-grid {
	display: grid;
	grid-template-columns: 0.6fr 1.3fr 1fr;
	gap: 50px;
	align-items: start;
}
.statement-band h2,
.section-heading h2,
.report-copy h2,
.diagnosis h2 {
	margin: 0;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.16;
	font-weight: 560;
}
.section-copy {
	max-width: 450px;
	margin: 8px 0 0;
	color: var(--muted);
}
.need-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 86px;
	border-top: 1px solid var(--line);
}
.need-grid article {
	padding: 24px 26px 0 0;
	border-right: 1px solid var(--line);
}
.need-grid article + article {
	padding-left: 26px;
}
.need-grid article:last-child {
	border-right: 0;
}
.need-grid span {
	color: var(--gold);
	font:
		700 11px / 1 ui-monospace,
		monospace;
}
.need-grid h3 {
	margin: 22px 0 10px;
	font-size: 17px;
	font-weight: 650;
}
.need-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}
.signal-track {
	display: flex;
	align-items: center;
	width: min(var(--max), calc(100% - 64px));
	margin: 90px auto 0;
}
.signal-track span,
.signal-track i {
	height: 1px;
	background: var(--line);
}
.signal-track span {
	flex: 1;
}
.signal-track i {
	position: relative;
	width: 33.333%;
}
.signal-track i::before {
	content: "";
	position: absolute;
	top: -4px;
	left: 50%;
	width: 7px;
	height: 7px;
	border: 1px solid var(--green);
	border-radius: 50%;
	background: var(--surface);
}
.signal-track i:nth-child(3)::before {
	background: var(--gold);
	border-color: var(--gold);
	box-shadow: 0 0 15px rgba(226, 168, 47, 0.5);
}
.workflow {
	padding: 120px 0 135px;
}
.section-heading {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: 70px;
}
.workflow-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}
.workflow-list li {
	display: grid;
	grid-template-columns: 80px 1fr 44px;
	gap: 22px;
	align-items: center;
	min-height: 112px;
	padding: 20px 12px;
	border-bottom: 1px solid var(--line);
	transition:
		background 0.2s,
		padding 0.2s;
}
.workflow-list li:hover,
.workflow-list li.active {
	padding-inline: 24px;
	background: var(--surface);
}
.workflow-list > li > span {
	color: var(--gold);
	font:
		700 12px / 1 ui-monospace,
		monospace;
}
.workflow-list div {
	display: grid;
	grid-template-columns: 130px 210px 1fr;
	align-items: center;
	gap: 20px;
}
.workflow-list small {
	color: var(--muted);
	font:
		650 10px / 1 ui-monospace,
		monospace;
}
.workflow-list strong {
	font-size: 20px;
	font-weight: 600;
}
.workflow-list p {
	margin: 0;
	color: var(--muted);
}
.workflow-list b {
	font-size: 20px;
	font-weight: 400;
}
.capability-note {
	max-width: 720px;
	margin: 24px 0 0 auto;
	color: var(--muted);
	font-size: 11px;
	text-align: right;
}
.report-section {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background: var(--deep);
	color: white;
}
.report-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 80px;
	align-items: center;
}
.section-no.light {
	color: #d7b65f;
}
.report-copy > p:not(.section-no) {
	max-width: 380px;
	margin: 28px 0;
	color: #aeb5af;
}
.light-link {
	color: #e9eae7;
}
.report-window {
	min-height: 480px;
	background: #edf0eb;
	color: var(--ink);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
	transform: perspective(1200px) rotateY(-3deg);
	transform-origin: right center;
}
.window-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 44px;
	padding: 0 16px;
	background: #f9faf7;
	border-bottom: 1px solid #d9ddd6;
}
.window-bar i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #c4c9c3;
}
.window-bar i:first-child {
	background: var(--gold);
}
.window-bar span {
	margin-left: 10px;
	color: #8a908a;
	font-size: 10px;
}
.window-body {
	display: grid;
	grid-template-columns: 58px 1fr;
	min-height: 436px;
}
.window-body aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	padding: 18px 12px;
	background: #252c29;
}
.window-body aside b {
	color: var(--gold);
	font-size: 10px;
}
.window-body aside span {
	width: 18px;
	height: 2px;
	background: #657069;
}
.window-body aside .selected {
	height: 18px;
	border: 1px solid var(--gold);
	background: transparent;
}
.report-content {
	padding: 38px;
}
.report-top {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 30px;
}
.report-top small,
.evidence-row small {
	display: block;
	color: #788079;
	font-size: 9px;
}
.report-top strong {
	font-size: 55px;
	line-height: 1.15;
}
.report-top span {
	color: #8a908a;
	font-size: 10px;
}
.report-summary b {
	font-size: 12px;
}
.report-summary p,
.evidence-row p {
	height: 5px;
	margin: 11px 0;
	background: #d8ddd7;
}
.report-summary p:last-child {
	width: 68%;
}
.metric-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 32px 0;
}
.metric-row span {
	height: 74px;
	border-top: 3px solid var(--green);
	background: white;
}
.metric-row span:nth-child(2) {
	border-color: var(--gold);
}
.evidence-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.evidence-row div {
	min-height: 104px;
	padding: 15px;
	background: white;
}
.evidence-row b {
	color: var(--green);
	font-size: 15px;
}
.trust {
	padding: 120px 0;
}
.section-heading.compact {
	margin-bottom: 55px;
}
.trust-list {
	border-top: 1px solid var(--line);
}
.trust-list article {
	display: grid;
	grid-template-columns: 80px 1.1fr 1fr 30px;
	gap: 22px;
	align-items: center;
	min-height: 98px;
	border-bottom: 1px solid var(--line);
}
.trust-list article > span {
	color: var(--gold);
	font:
		700 11px / 1 ui-monospace,
		monospace;
}
.trust-list h3 {
	font-size: 19px;
	font-weight: 600;
}
.trust-list p {
	color: var(--muted);
}
.trust-list i {
	font-style: normal;
}
.brand-interface {
	padding: 120px 0;
	background: #151a18;
	color: white;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.interface-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 90px;
	align-items: start;
}
.brand-interface h2 {
	margin: 0;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.16;
	font-weight: 560;
}
.interface-copy {
	padding-top: 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.interface-copy p {
	margin: 0 0 22px;
	color: #b5bcb6;
	font-size: 16px;
}
.interface-copy span {
	display: block;
	margin-top: 40px;
	padding: 18px 0;
	border-block: 1px solid rgba(255, 255, 255, 0.16);
	color: #ddbd65;
	font-size: 12px;
}
.diagnosis {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: grid;
	place-items: center;
	padding: 100px 24px;
	background: var(--surface);
	border-top: 1px solid var(--line);
	text-align: center;
}
.diagnosis-beam {
	position: absolute;
	top: -300px;
	width: 380px;
	height: 640px;
	background: linear-gradient(
		180deg,
		rgba(226, 168, 47, 0.21),
		rgba(226, 168, 47, 0)
	);
	clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
}
.diagnosis-inner {
	position: relative;
	width: min(790px, 100%);
}
.diagnosis h2 {
	max-width: 720px;
	margin-inline: auto;
}
.diagnosis-inner > p:not(.section-no) {
	margin: 22px 0 35px;
	color: var(--muted);
}
.diagnosis form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	max-width: 720px;
	margin-inline: auto;
	padding: 8px;
	background: white;
	border: 1px solid var(--line);
	box-shadow: 0 18px 50px rgba(30, 35, 31, 0.08);
}
.diagnosis label {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
	padding-left: 16px;
	text-align: left;
}
.diagnosis label span {
	color: var(--muted);
	font-size: 11px;
}
.diagnosis input {
	width: 100%;
	min-width: 0;
	padding: 12px 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
}
footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 110px;
	width: min(var(--max), calc(100% - 64px));
	margin-inline: auto;
	color: var(--muted);
}
footer p {
	margin: 0;
	font-size: 11px;
}
.footer-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 11px;
}
.footer-meta a,
.consent a {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-meta span {
	color: #a96043;
}
.modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: none;
	place-items: center;
	padding: 24px;
}
.modal.is-open {
	display: grid;
}
.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 18, 16, 0.72);
	backdrop-filter: blur(8px);
}
.modal-panel {
	position: relative;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	width: min(960px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	overflow: auto;
	background: var(--surface);
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
	animation: modal-in 0.24s ease-out;
}
@keyframes modal-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.modal-close {
	position: absolute;
	z-index: 2;
	top: 18px;
	right: 20px;
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}
.modal-intro {
	padding: 58px 42px 44px;
	background: var(--deep);
	color: white;
}
.modal-kicker {
	color: #d7b65f;
	font:
		700 10px / 1 ui-monospace,
		monospace;
	letter-spacing: 0.14em;
}
.modal-intro h2 {
	margin: 70px 0 22px;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.18;
	font-weight: 560;
}
.modal-intro p {
	color: #adb5ae;
	font-size: 13px;
}
.modal-promises {
	display: grid;
	gap: 13px;
	margin-top: 42px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.modal-promises span {
	color: #e2e6e0;
	font-size: 12px;
}
.modal-promises span::before {
	content: "✓";
	margin-right: 10px;
	color: var(--gold);
}
.sales-form {
	padding: 58px 42px 38px;
}
.sales-form fieldset {
	margin: 0 0 28px;
	padding: 0 0 24px;
	border: 0;
	border-bottom: 1px solid var(--line);
}
.sales-form legend {
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
}
.choice {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 11px 0;
	color: #424843;
	font-size: 13px;
	cursor: pointer;
}
.choice input,
.consent input {
	accent-color: var(--green);
}
.botcheck {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 14px;
}
.form-grid label {
	display: grid;
	gap: 7px;
}
.form-grid label.full {
	grid-column: 1 / -1;
}
.form-grid label > span {
	color: #4c534e;
	font-size: 11px;
	font-weight: 650;
}
.form-grid b {
	color: #b05d3a;
}
.form-grid input,
.form-grid textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: 2px;
	outline: 0;
	background: white;
	color: var(--ink);
	font-size: 13px;
	resize: vertical;
}
.form-grid input:focus,
.form-grid textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(39, 124, 107, 0.1);
}
.consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 23px 0;
	color: var(--muted);
	font-size: 11px;
}
.form-submit {
	width: 100%;
}
.form-submit:disabled {
	cursor: wait;
	opacity: 0.65;
	transform: none;
}
.form-status {
	min-height: 20px;
	margin: 10px 0 0;
	color: var(--green);
	font-size: 12px;
	text-align: center;
}
body.modal-open {
	overflow: hidden;
}
@media (max-width: 920px) {
	.section-shell,
	.site-header,
	.signal-track,
	footer {
		width: min(100% - 36px, var(--max));
	}
	.site-header {
		grid-template-columns: 1fr auto;
	}
	.site-header nav {
		display: none;
	}
	.hero {
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 55px;
		padding-top: 130px;
		padding-bottom: 72px;
	}
	.hero-copy {
		max-width: 700px;
	}
	.evidence-stage {
		min-height: 500px;
	}
	.statement-grid,
	.section-heading,
	.report-grid,
	.interface-grid,
	.need-grid {
		grid-template-columns: 1fr;
	}
	.statement-grid {
		gap: 24px;
	}
	.need-grid {
		gap: 24px;
		margin-top: 54px;
	}
	.need-grid article,
	.need-grid article + article {
		padding: 20px 0 0;
		border-right: 0;
		border-top: 1px solid var(--line);
	}
	.section-copy {
		margin-top: 0;
	}
	.workflow-list div {
		grid-template-columns: 110px 180px 1fr;
	}
	.report-copy {
		max-width: 560px;
	}
	.report-window {
		transform: none;
	}
	.modal-panel {
		grid-template-columns: 0.72fr 1.28fr;
	}
}
@media (max-width: 640px) {
	.site-header {
		height: 66px;
	}
	.site-header .button {
		min-height: 36px;
		padding-inline: 12px;
	}
	.hero {
		padding-top: 110px;
	}
	.hero h1 {
		font-size: 46px;
	}
	.lead {
		font-size: 15px;
	}
	.hero-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}
	.hero-actions .text-link {
		align-self: flex-start;
	}
	.hero-meta {
		justify-content: space-between;
		margin-top: 46px;
	}
	.hero-meta div {
		min-width: auto;
		flex-direction: column;
		gap: 4px;
	}
	.evidence-stage {
		min-height: 470px;
		margin-inline: -18px;
		padding: 18px;
	}
	.signal-grid div {
		padding-inline: 7px;
	}
	.statement-band,
	.workflow,
	.report-section,
	.trust,
	.brand-interface {
		padding-block: 82px;
	}
	.statement-band h2,
	.section-heading h2,
	.report-copy h2,
	.diagnosis h2 {
		font-size: 36px;
	}
	.section-heading {
		gap: 28px;
		margin-bottom: 42px;
	}
	.workflow-list li {
		grid-template-columns: 38px 1fr 18px;
		gap: 10px;
		min-height: 100px;
	}
	.workflow-list li:hover,
	.workflow-list li.active {
		padding-inline: 12px;
	}
	.workflow-list div {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.workflow-list div small {
		display: none;
	}
	.workflow-list p {
		font-size: 12px;
	}
	.capability-note {
		margin-top: 20px;
		text-align: left;
	}
	.report-grid {
		gap: 48px;
	}
	.report-window {
		min-height: 360px;
		margin-right: -160px;
	}
	.window-body {
		min-height: 316px;
	}
	.report-content {
		padding: 24px;
	}
	.report-top {
		grid-template-columns: 110px 1fr;
	}
	.metric-row span {
		height: 56px;
	}
	.trust-list article {
		grid-template-columns: 36px 1fr 20px;
		gap: 10px;
		padding: 16px 0;
	}
	.trust-list article p {
		grid-column: 2 / 4;
		margin: -12px 0 0;
	}
	.diagnosis {
		min-height: 540px;
	}
	.diagnosis form {
		grid-template-columns: 1fr;
	}
	.diagnosis label {
		min-height: 58px;
	}
	.modal {
		padding: 12px;
	}
	.modal-panel {
		display: block;
		max-height: calc(100vh - 24px);
	}
	.modal-intro {
		padding: 45px 24px 28px;
	}
	.modal-intro h2 {
		margin-top: 34px;
		font-size: 34px;
	}
	.modal-promises {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 18px;
		margin-top: 25px;
	}
	.sales-form {
		padding: 30px 24px 24px;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.form-grid label.full {
		grid-column: auto;
	}
	footer {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
	}
	.footer-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}
.privacy-page main {
	width: min(760px, calc(100% - 40px));
	margin: 0 auto;
	padding: 72px 0 100px;
}
.privacy-page h1 {
	font-size: 42px;
}
.privacy-page h2 {
	margin-top: 40px;
	font-size: 20px;
}
.privacy-page p,
.privacy-page li {
	color: #555d57;
}
.privacy-page .notice {
	padding: 16px;
	border: 1px solid #c9792c;
	color: #8f4d31;
	background: white;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		transition: none !important;
	}
}
