:root {
	color-scheme: light;
	--canvas: #f5f7f2;
	--paper: #fdfefb;
	--on-dark: #f5f8f4;
	--paper-warm: #fbfcf8;
	--ink: #13231d;
	--ink-soft: #45564f;
	--navy: #142b3a;
	--navy-soft: #213d4d;
	--green: #1c6b4d;
	--green-dark: #145239;
	--green-pale: #e0efe5;
	--green-bright: #9ad7aa;
	--amber: #8b5617;
	--amber-pale: #f8ecd4;
	--line: #d7dfd9;
	--line-strong: #bdc9c1;
	--shadow: 0 24px 70px rgba(20, 43, 58, 0.12);
	--font-sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	--shell: min(1180px, calc(100vw - 48px));
}

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

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

body {
	margin: 0;
	background: var(--canvas);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
	overflow: hidden;
}

button,
input,
textarea {
	font: inherit;
}

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

a {
	color: inherit;
}

button {
	color: inherit;
}

svg {
	display: block;
}

::selection {
	background: var(--green-bright);
	color: var(--ink);
}

.shell {
	width: var(--shell);
	margin: 0 auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--ink);
	color: var(--on-dark);
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

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

:focus-visible {
	outline: 3px solid #4d9c76;
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid transparent;
	background: rgba(245, 247, 242, 0.94);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
	border-color: var(--line);
	box-shadow: 0 8px 24px rgba(20, 43, 58, 0.06);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 78px;
	gap: 32px;
}

.wordmark {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	justify-self: start;
	color: var(--ink);
	font-size: 20px;
	font-weight: 780;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.wordmark-mark {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--on-dark);
	font-family: var(--font-display);
	font-size: 20px;
	font-style: italic;
	font-weight: 700;
	line-height: 1;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 650;
}

.desktop-nav a {
	position: relative;
	text-decoration: none;
}

.desktop-nav a::after {
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--green);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-inner > .button {
	justify-self: end;
}

.header-inner > a.button {
	grid-column: 3;
	justify-self: end;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	font-weight: 740;
	letter-spacing: -0.012em;
	line-height: 1.1;
	padding: 14px 20px;
	text-decoration: none;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease,
		transform 160ms ease,
		box-shadow 160ms ease;
}

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

.button:active {
	transform: translateY(0);
}

.button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 160ms ease;
}

.button:hover svg {
	transform: translateX(3px);
}

.button-small {
	min-height: 42px;
	padding: 11px 16px;
	font-size: 14px;
}

.button-dark {
	background: var(--navy);
	color: var(--on-dark);
	box-shadow: 0 8px 18px rgba(20, 43, 58, 0.12);
}

.button-dark:hover {
	background: var(--navy-soft);
	box-shadow: 0 10px 22px rgba(20, 43, 58, 0.17);
}

.button-primary {
	background: var(--green);
	color: var(--on-dark);
	box-shadow: 0 12px 24px rgba(28, 107, 77, 0.18);
}

.button-primary:hover {
	background: var(--green-dark);
	box-shadow: 0 16px 30px rgba(28, 107, 77, 0.24);
}

.button-light {
	background: var(--paper);
	color: var(--navy);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
	background: var(--paper-warm);
}

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

.button-quiet:hover {
	border-color: var(--line-strong);
	background: var(--paper-warm);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 78px;
}

.hero::before {
	position: absolute;
	top: 0;
	right: max(0px, calc((100vw - 1180px) / 2 - 80px));
	width: 1px;
	height: 100%;
	background: var(--line);
	content: "";
	opacity: 0.55;
}

.hero::after {
	position: absolute;
	top: 68px;
	right: max(24px, calc((100vw - 1180px) / 2 - 118px));
	width: 82px;
	height: 82px;
	border-top: 1px solid var(--line-strong);
	border-right: 1px solid var(--line-strong);
	content: "";
	opacity: 0.7;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
	align-items: center;
	gap: clamp(64px, 8vw, 110px);
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 22px;
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.115em;
	line-height: 1.35;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 22px;
	height: 1px;
	background: currentColor;
}

.hero h1,
.section-heading h2,
.offer h2,
.closing h2,
.dialog-intro h2,
.form-success h2,
.exit-shell h2 {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(58px, 5.2vw, 76px);
}

.hero-lede {
	max-width: 670px;
	margin: 28px 0 0;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.62;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 34px;
}

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	border-bottom: 1px solid var(--line-strong);
	color: var(--ink);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition:
		border-color 160ms ease,
		color 160ms ease;
}

.text-link:hover {
	border-color: var(--green);
	color: var(--green);
}

.text-link-strong {
	margin-top: 14px;
	color: var(--green);
}

.hero-assurance {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0 0;
	color: #62716a;
	font-size: 13px;
	font-weight: 650;
}

.recovery-board {
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid var(--line-strong);
	background: var(--paper);
	box-shadow: var(--shadow);
	padding: 26px;
}

.recovery-board::before,
.recovery-board::after {
	position: absolute;
	width: 18px;
	height: 18px;
	content: "";
}

.recovery-board::before {
	top: -7px;
	left: -7px;
	border-top: 2px solid var(--green);
	border-left: 2px solid var(--green);
}

.recovery-board::after {
	right: -7px;
	bottom: -7px;
	border-right: 2px solid var(--green);
	border-bottom: 2px solid var(--green);
}

.board-topline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}

.board-kicker {
	display: block;
	margin-bottom: 4px;
	color: #62716a;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.board-topline strong {
	font-size: 15px;
	letter-spacing: -0.012em;
}

.live-marker {
	display: flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.live-marker i {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
}

.live-marker i::after {
	position: absolute;
	inset: -5px;
	border: 1px solid var(--green);
	border-radius: 50%;
	content: "";
	animation: marker-pulse 2.4s ease-out infinite;
}

.recovery-flow {
	position: relative;
	display: grid;
	gap: 11px;
	padding: 24px 0 4px;
}

.flow-rail {
	position: absolute;
	top: 53px;
	bottom: 34px;
	left: 21px;
	width: 2px;
	overflow: hidden;
	background: var(--line);
}

.flow-rail span {
	position: absolute;
	top: -34%;
	left: 0;
	width: 100%;
	height: 34%;
	background: var(--green);
	animation: rail-travel 3.8s ease-in-out infinite;
}

.flow-row {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	min-height: 70px;
	border: 1px solid #e1e7e2;
	background: var(--paper-warm);
	padding: 11px 13px 11px 9px;
	transition:
		border-color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.flow-row:hover {
	border-color: var(--line-strong);
	box-shadow: 0 8px 20px rgba(20, 43, 58, 0.07);
	transform: translateX(3px);
}

.flow-icon {
	position: relative;
	z-index: 2;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper);
	color: var(--navy);
}

.flow-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.flow-row-recovered .flow-icon,
.flow-row-approved .flow-icon {
	border-color: #b5d6c2;
	background: var(--green-pale);
	color: var(--green-dark);
}

.flow-row div:nth-child(2) > span {
	display: block;
	margin-bottom: 2px;
	color: #62716a;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.flow-row div:nth-child(2) > strong {
	display: block;
	overflow: hidden;
	font-size: 13px;
	font-weight: 720;
	letter-spacing: -0.01em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.status {
	border: 1px solid;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 6px 8px;
	text-transform: uppercase;
}

.status-neutral {
	border-color: var(--line-strong);
	background: var(--paper);
	color: #62716a;
}

.status-attention {
	border-color: #e7c891;
	background: var(--amber-pale);
	color: var(--amber);
}

.status-positive {
	border-color: #acd0ba;
	background: var(--green-pale);
	color: var(--green-dark);
}

.board-note {
	margin: 15px 0 0;
	color: #62716a;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: right;
	text-transform: uppercase;
}

.proof-strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

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

.proof-grid p {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 78px;
	margin: 0;
	padding: 0 32px;
	border-right: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 13px;
	font-weight: 720;
}

.proof-grid p:first-child {
	padding-left: 0;
}

.proof-grid p:last-child {
	padding-right: 0;
	border-right: 0;
}

.proof-grid svg {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--green);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.section {
	padding: 118px 0;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 58px;
}

.section-heading.compact {
	max-width: 520px;
	margin-bottom: 0;
}

.section-heading h2,
.offer h2,
.closing h2 {
	margin: 0;
	font-size: clamp(44px, 4.5vw, 64px);
}

.section-heading > p:last-child {
	max-width: 680px;
	margin: 23px 0 0;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.7;
}

.symptoms {
	background: var(--paper-warm);
}

.symptom-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line-strong);
	border-bottom: 1px solid var(--line-strong);
}

.symptom {
	position: relative;
	min-height: 310px;
	padding: 36px 34px 34px;
	border-right: 1px solid var(--line);
}

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

.symptom::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--green);
	content: "";
	transition: width 260ms ease;
}

.symptom:hover::after {
	width: 100%;
}

.symptom-number {
	display: block;
	margin-bottom: 70px;
	color: var(--green);
	font-size: 12px;
	font-weight: 820;
	letter-spacing: 0.1em;
}

.symptom h3,
.step h3,
.deliverable h3,
.safeguard-list h3 {
	margin: 0;
	font-size: 21px;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.symptom p,
.step p,
.deliverable p,
.safeguard-list p {
	margin: 14px 0 0;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.72;
}

.section-ink {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	color: var(--on-dark);
}

.section-ink::before {
	position: absolute;
	top: 0;
	right: 8%;
	width: 34%;
	height: 1px;
	background: #6fb78e;
	content: "";
}

.section-heading-light .eyebrow {
	color: var(--green-bright);
}

.section-heading-light > p:last-child {
	color: #b9c8c0;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.step {
	min-height: 330px;
	padding: 38px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.17);
}

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

.step > span {
	display: block;
	margin-bottom: 80px;
	color: var(--green-bright);
	font-family: var(--font-display);
	font-size: 25px;
	font-style: italic;
}

.step h3 {
	color: var(--on-dark);
}

.step p {
	color: #b9c8c0;
}

.data-gate {
	max-width: 920px;
	margin: 36px 0 0;
	color: #b9c8c0;
	font-size: 14px;
}

.data-gate strong {
	color: var(--on-dark);
}

.stack-section {
	background: var(--paper);
}

.stack-grid {
	display: grid;
	grid-template-columns: 0.76fr 1.24fr;
	align-items: center;
	gap: 82px;
}

.stack-map {
	display: grid;
	grid-template-columns: 1fr 100px 1fr;
	align-items: stretch;
	margin: 0;
}

.stack-column {
	border: 1px solid var(--line-strong);
	background: var(--paper-warm);
	padding: 30px;
}

.stack-column-recoup {
	border-color: #9fc7ae;
	background: var(--green-pale);
}

.stack-label {
	display: block;
	margin-bottom: 28px;
	color: #536159;
	font-size: 10px;
	font-weight: 820;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.stack-column strong {
	font-size: 18px;
	letter-spacing: -0.02em;
}

.stack-column ul {
	display: grid;
	gap: 0;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.stack-column li {
	padding: 11px 0;
	border-top: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 13px;
	font-weight: 650;
}

.stack-column-recoup li {
	border-color: #b8d5c3;
	color: var(--green-dark);
}

.stack-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	color: var(--amber);
}

.stack-connector span {
	font-size: 9px;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stack-connector svg {
	width: 54px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.deliverables {
	background: var(--canvas);
}

.deliverable-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line-strong);
}

.deliverable {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 24px;
	min-height: 200px;
	padding: 34px 32px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.deliverable:nth-child(even) {
	border-right: 0;
}

.deliverable > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid #a9cdb7;
	color: var(--green);
	font-family: var(--font-display);
	font-size: 17px;
	font-style: italic;
}

.deliverable p {
	max-width: 440px;
}

.offer-section {
	padding-top: 40px;
	background: var(--canvas);
}

.offer {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	border: 1px solid #a8cbb5;
	background: var(--paper);
	box-shadow: 0 24px 70px rgba(20, 43, 58, 0.1);
}

.offer-copy {
	padding: 58px;
}

.offer h2 {
	max-width: 690px;
	font-size: clamp(42px, 4vw, 58px);
}

.offer-copy > p:not(.eyebrow) {
	max-width: 670px;
	margin: 23px 0 0;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.72;
}

.offer-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 30px;
}

.offer-actions span {
	color: #62716a;
	font-size: 12px;
	font-weight: 700;
}

.offer-terms {
	display: grid;
	align-content: center;
	border-left: 1px solid #b8d5c3;
	background: var(--green-pale);
	padding: 38px;
}

.offer-terms p {
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid #b8d5c3;
}

.offer-terms p:last-child {
	border-bottom: 0;
}

.offer-terms span,
.offer-terms strong {
	display: block;
}

.offer-terms span {
	margin-bottom: 3px;
	color: #496653;
	font-size: 9px;
	font-weight: 820;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.offer-terms strong {
	color: var(--green-dark);
	font-size: 14px;
}

.pricing-note {
	max-width: 840px;
	margin: 22px 0 0;
	color: #62716a;
	font-size: 13px;
}

.safeguards {
	background: var(--paper-warm);
}

.safeguards-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 100px;
}

.safeguard-list {
	display: grid;
	border-top: 1px solid var(--line-strong);
}

.safeguard-list article {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 22px;
	padding: 30px 0;
	border-bottom: 1px solid var(--line);
}

.safeguard-list article > span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid #a9cdb7;
	color: var(--green);
	font-family: var(--font-display);
	font-style: italic;
}

.safeguard-list p {
	margin-top: 7px;
}

.faq {
	background: var(--paper);
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.74fr 1.26fr;
	gap: 100px;
}

.faq-list {
	border-top: 1px solid var(--line-strong);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: center;
	gap: 22px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 720;
	letter-spacing: -0.018em;
	list-style: none;
	padding: 25px 0;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary span {
	position: relative;
	width: 20px;
	height: 20px;
}

.faq summary span::before,
.faq summary span::after {
	position: absolute;
	top: 9px;
	left: 3px;
	width: 14px;
	height: 2px;
	background: var(--green);
	content: "";
	transition: transform 180ms ease;
}

.faq summary span::after {
	transform: rotate(90deg);
}

.faq details[open] summary span::after {
	transform: rotate(0);
}

.faq details > p {
	max-width: 690px;
	margin: -4px 40px 24px 0;
	color: var(--ink-soft);
	line-height: 1.75;
}

.closing {
	background: var(--green);
	color: var(--on-dark);
	padding: 80px 0;
}

.closing-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 72px;
}

.closing .eyebrow {
	color: #bde5c8;
}

.closing h2 {
	max-width: 760px;
	font-size: clamp(44px, 4.4vw, 62px);
}

.closing p:last-child {
	max-width: 680px;
	margin: 18px 0 0;
	color: #d8eee0;
	font-size: 17px;
}

.site-footer {
	background: #0d1d18;
	color: var(--on-dark);
	padding: 62px 0 34px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 50px;
}

.footer-wordmark {
	color: var(--on-dark);
}

.footer-wordmark .wordmark-mark {
	border-color: var(--on-dark);
	background: var(--on-dark);
	color: var(--ink);
}

.footer-grid > div:first-child > p {
	margin: 14px 0 0;
	color: #9fb2a8;
	font-size: 13px;
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 25px;
	color: #c2d0c9;
	font-size: 13px;
	font-weight: 650;
}

.footer-links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--on-dark);
}

.footer-legal {
	grid-column: 1 / -1;
	margin: 30px 0 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: #80928a;
	font-size: 11px;
}

.legal-page {
	min-height: 70vh;
	padding: 92px 0 112px;
	background: var(--paper-warm);
}

.legal-shell {
	width: min(860px, calc(100vw - 48px));
	margin: 0 auto;
}

.legal-header {
	padding-bottom: 46px;
	border-bottom: 1px solid var(--line-strong);
}

.section-index {
	margin: 0 0 18px;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.legal-header h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(48px, 7vw, 72px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1;
}

.legal-header > p:last-child {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.7;
}

.legal-content {
	display: grid;
	gap: 0;
}

.legal-content section {
	padding: 38px 0;
	border-bottom: 1px solid var(--line);
}

.legal-content h2 {
	margin: 0 0 15px;
	font-size: 23px;
	letter-spacing: -0.025em;
}

.legal-content h3 {
	margin: 28px 0 8px;
	font-size: 17px;
	letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
	color: var(--ink-soft);
	line-height: 1.78;
}

.legal-content p {
	margin: 0 0 14px;
}

.legal-content p:last-child {
	margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
	display: grid;
	gap: 9px;
	margin: 14px 0 0;
	padding-left: 24px;
}

.legal-content a {
	color: var(--green);
	font-weight: 700;
}

.legal-content .status-box {
	margin-top: 34px;
	padding: 30px;
	border: 1px solid #a8cbb5;
	background: var(--green-pale);
}

.status-box h2,
.status-box p {
	color: var(--green-dark);
}

.last-updated {
	color: #62716a !important;
	font-size: 12px;
	font-weight: 700;
}

.recovery-dialog,
.exit-dialog {
	width: min(calc(100vw - 36px), 760px);
	max-height: calc(100vh - 36px);
	overflow: auto;
	border: 0;
	background: transparent;
	color: var(--ink);
	padding: 0;
}

.exit-dialog {
	width: min(calc(100vw - 36px), 540px);
}

.recovery-dialog::backdrop,
.exit-dialog::backdrop {
	background: rgba(8, 22, 17, 0.76);
	backdrop-filter: blur(5px);
}

.recovery-dialog[open],
.exit-dialog[open] {
	animation: dialog-enter 180ms ease-out;
}

.dialog-shell,
.exit-shell {
	position: relative;
	border: 1px solid var(--line-strong);
	background: var(--paper);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
	padding: 46px;
}

.exit-shell {
	padding: 44px;
	text-align: center;
}

.dialog-close {
	position: absolute;
	top: 15px;
	right: 15px;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper);
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.dialog-close:hover {
	border-color: var(--line-strong);
	background: var(--canvas);
	transform: rotate(4deg);
}

.dialog-close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.7;
}

.dialog-intro {
	max-width: 600px;
	padding-right: 26px;
}

.dialog-intro h2,
.form-success h2,
.exit-shell h2 {
	margin: 0;
	font-size: clamp(36px, 6vw, 50px);
}

.dialog-intro > p:last-child,
.form-success p,
.exit-shell > p:not(.eyebrow) {
	margin: 18px 0 0;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.7;
}

#recovery-form {
	margin-top: 34px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-grid label {
	display: grid;
	gap: 7px;
}

.form-grid label > span {
	color: var(--ink);
	font-size: 12px;
	font-weight: 760;
}

.form-grid label > span small {
	margin-left: 5px;
	color: #78867f;
	font-size: 10px;
	font-weight: 650;
}

.form-wide {
	grid-column: 1 / -1;
}

input,
textarea {
	width: 100%;
	border: 1px solid var(--line-strong);
	border-radius: 5px;
	background: var(--paper);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.4;
	padding: 12px 13px;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease;
}

input {
	min-height: 48px;
}

textarea {
	min-height: 92px;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #8b9791;
}

input:hover,
textarea:hover {
	border-color: #92a69a;
}

input:focus,
textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(28, 107, 77, 0.12);
	outline: none;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
	border-color: #b94335;
	box-shadow: 0 0 0 3px rgba(185, 67, 53, 0.1);
}

.honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-boundary {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 18px 0 0;
	color: #62716a;
	font-size: 11px;
}

.form-boundary svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--green);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
}

.form-actions > p {
	margin: 0;
	color: #62716a;
	font-size: 11px;
}

.form-actions a {
	color: var(--green);
}

.form-status {
	min-height: 24px;
	margin: 12px 0 0;
	color: #a1392e;
	font-size: 13px;
	font-weight: 650;
}

.form-success {
	padding: 38px 8px 12px;
	text-align: center;
}

.form-success > span {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	margin: 0 auto 26px;
	border: 1px solid #a9cdb7;
	border-radius: 50%;
	background: var(--green-pale);
	color: var(--green);
}

.form-success > span svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.form-success .button {
	margin-top: 26px;
}

.exit-mark {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin: 0 auto 24px;
	background: var(--ink);
	color: var(--on-dark);
	font-family: var(--font-display);
	font-size: 27px;
	font-style: italic;
}

.exit-shell .eyebrow {
	justify-content: center;
	margin-bottom: 17px;
}

.exit-actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.js .reveal {
	opacity: 1;
	transform: none;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes marker-pulse {
	0% {
		opacity: 0.7;
		transform: scale(0.65);
	}
	75%,
	100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

@keyframes rail-travel {
	0% {
		transform: translateY(0);
	}
	70%,
	100% {
		transform: translateY(400%);
	}
}

@keyframes dialog-enter {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 1050px) {
	.hero {
		padding-top: 66px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.hero-copy {
		max-width: 820px;
	}

	.hero h1 {
		font-size: clamp(58px, 8vw, 76px);
	}

	.recovery-board {
		width: min(100%, 720px);
	}

	.stack-grid,
	.safeguards-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.section-heading.compact {
		max-width: 690px;
	}

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

	.offer-terms {
		grid-template-columns: repeat(2, 1fr);
		border-top: 1px solid #b8d5c3;
		border-left: 0;
	}

	.offer-terms p:nth-child(odd) {
		padding-right: 24px;
	}

	.offer-terms p:nth-child(even) {
		padding-left: 24px;
		border-left: 1px solid #b8d5c3;
	}

	.offer-terms p:nth-last-child(-n + 2) {
		border-bottom: 0;
	}
}

@media (max-width: 780px) {
	:root {
		--shell: min(calc(100% - 36px), 680px);
	}

	html {
		scroll-padding-top: 76px;
	}

	.header-inner {
		grid-template-columns: 1fr auto;
		min-height: 68px;
		gap: 16px;
	}

	.header-inner > a.button {
		grid-column: 2;
	}

	.desktop-nav {
		display: none;
	}

	.wordmark {
		font-size: 18px;
	}

	.wordmark-mark {
		width: 31px;
		height: 31px;
		font-size: 18px;
	}

	.button-small {
		min-height: 44px;
		padding: 10px 13px;
		font-size: 12px;
	}

	.hero {
		padding: 58px 0 64px;
	}

	.hero::before,
	.hero::after {
		display: none;
	}

	.hero-grid {
		gap: 46px;
	}

	.hero h1 {
		font-size: clamp(52px, 14.5vw, 68px);
		line-height: 0.96;
	}

	.hero-lede {
		margin-top: 23px;
		font-size: 17px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.hero-actions .button {
		align-self: stretch;
	}

	.hero-actions .text-link {
		align-self: flex-start;
	}

	.recovery-board {
		padding: 18px;
	}

	.board-topline {
		gap: 14px;
		padding-bottom: 17px;
	}

	.board-topline strong {
		font-size: 13px;
	}

	.live-marker {
		font-size: 9px;
	}

	.flow-row {
		grid-template-columns: 40px minmax(0, 1fr);
		min-height: 74px;
	}

	.flow-row .status {
		display: none;
	}

	.flow-icon {
		width: 38px;
		height: 38px;
	}

	.flow-rail {
		left: 19px;
	}

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

	.proof-grid p,
	.proof-grid p:first-child,
	.proof-grid p:last-child {
		min-height: 60px;
		padding: 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.proof-grid p:last-child {
		border-bottom: 0;
	}

	.section {
		padding: 82px 0;
	}

	.section-heading {
		margin-bottom: 42px;
	}

	.section-heading h2,
	.offer h2,
	.closing h2 {
		font-size: clamp(40px, 11.5vw, 52px);
	}

	.section-heading > p:last-child {
		font-size: 16px;
	}

	.symptom-grid,
	.steps {
		grid-template-columns: 1fr;
	}

	.symptom,
	.step {
		min-height: 0;
		padding: 30px 8px 34px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.step {
		border-color: rgba(255, 255, 255, 0.17);
	}

	.symptom:last-child,
	.step:last-child {
		border-bottom: 0;
	}

	.symptom-number,
	.step > span {
		margin-bottom: 38px;
	}

	.stack-map {
		grid-template-columns: 1fr;
	}

	.stack-connector {
		min-height: 78px;
	}

	.stack-connector svg {
		transform: rotate(90deg);
	}

	.deliverable-list {
		grid-template-columns: 1fr;
	}

	.deliverable,
	.deliverable:nth-child(even) {
		min-height: 0;
		padding: 28px 0;
		border-right: 0;
	}

	.offer-copy {
		padding: 38px 26px;
	}

	.offer-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.offer-actions span {
		text-align: center;
	}

	.offer-terms {
		grid-template-columns: 1fr;
		padding: 26px;
	}

	.offer-terms p,
	.offer-terms p:nth-child(odd),
	.offer-terms p:nth-child(even) {
		padding: 17px 0;
		border-bottom: 1px solid #b8d5c3;
		border-left: 0;
	}

	.offer-terms p:last-child {
		border-bottom: 0;
	}

	.safeguards-grid,
	.faq-grid {
		gap: 42px;
	}

	.safeguard-list article {
		grid-template-columns: 42px 1fr;
		gap: 16px;
	}

	.closing {
		padding: 66px 0;
	}

	.closing-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.closing .button {
		justify-self: start;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.footer-links {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.footer-legal {
		grid-column: 1;
		margin-top: 10px;
	}

	.legal-page {
		padding: 64px 0 82px;
	}

	.legal-shell {
		width: min(calc(100% - 36px), 680px);
	}

	.legal-header {
		padding-bottom: 36px;
	}

	.legal-header > p:last-child {
		font-size: 16px;
	}

	.legal-content section {
		padding: 31px 0;
	}

	.legal-content .status-box {
		padding: 24px 20px;
	}

	.dialog-shell,
	.exit-shell {
		padding: 38px 22px 28px;
	}

	.dialog-intro {
		padding-right: 20px;
	}

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

	.form-wide {
		grid-column: 1;
	}

	.form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.form-actions > p {
		text-align: center;
	}

	.exit-actions {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 430px) {
	.header-inner > .button {
		padding-right: 11px;
		padding-left: 11px;
	}

	.hero-assurance {
		display: grid;
		gap: 3px;
	}

	.hero-assurance .assurance-separator {
		display: none;
	}

	.board-topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.flow-row div:nth-child(2) > strong {
		font-size: 12px;
	}

	.deliverable {
		grid-template-columns: 44px 1fr;
		gap: 14px;
	}
}

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

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

	.js .reveal {
		opacity: 1;
		transform: none;
	}
}
