:root {
	color: #201c18;
	background: #f7f2ea;
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-synthesis: none;
	text-rendering: optimizelegibility;

	--canvas: #f7f2ea;
	--surface: #fffdf9;
	--surface-soft: #f1e9de;
	--ink: #201c18;
	--muted: #685f55;
	--quiet: #786c60;
	--accent: #92551b;
	--focus: #9c5c1d;
	--accent-soft: #f4dfc5;
	--line: rgb(45 41 37 / 14%);
	--line-strong: rgb(45 41 37 / 24%);
	--shadow: 0 30px 90px rgb(75 54 34 / 14%);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(
			circle at 12% 4%,
			rgb(221 178 125 / 25%),
			transparent 32rem
		),
		linear-gradient(145deg, #fbf8f2 0%, var(--canvas) 50%, #efe7dc 100%);
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover {
	text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 4px;
}

img {
	max-width: 100%;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10;
	padding: 12px 16px;
	border-radius: 999px;
	color: #fffaf2;
	background: #2d2925;
	transform: translateY(-180%);
}

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

.page-shell {
	width: min(100% - 40px, 1180px);
	margin-inline: auto;
}

.site-header {
	display: flex;
	min-height: 96px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.brand {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	gap: 11px;
	font-size: 17px;
	font-weight: 760;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.brand img {
	display: block;
	width: 40px;
	height: 40px;
}

.site-nav,
.site-footer nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav a,
.site-footer a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--muted);
	font-size: 14px;
	font-weight: 680;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current='page'],
.site-footer a:hover {
	color: var(--ink);
}

.site-nav a[aria-current='page'] {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 2px;
}

.hero {
	display: grid;
	align-items: center;
	gap: clamp(48px, 8vw, 96px);
	min-height: calc(100vh - 96px);
	padding: 72px 0 108px;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.eyebrow {
	margin: 0 0 15px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 780;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero h1,
.document-header h1,
.not-found h1 {
	margin: 0;
	font-weight: 780;
	letter-spacing: -0.064em;
	line-height: 0.94;
}

.hero h1 {
	max-width: 9ch;
	font-size: clamp(58px, 7.4vw, 104px);
}

.hero h1 span {
	display: block;
	color: var(--muted);
}

.hero-lede {
	max-width: 51ch;
	margin: 30px 0 0;
	color: var(--muted);
	font-size: clamp(18px, 2.1vw, 22px);
	line-height: 1.58;
}

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

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--ink);
	font-size: 14px;
	font-weight: 740;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 34px 0 0;
	padding: 0;
	color: var(--quiet);
	font-size: 13px;
	font-weight: 660;
	list-style: none;
}

.trust-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trust-list li::before {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
	content: '';
}

.product-shot {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--surface);
	box-shadow: var(--shadow);
	transform: rotate(1.25deg);
}

.product-shot-bar {
	display: flex;
	height: 48px;
	align-items: center;
	gap: 7px;
	padding: 0 17px;
	border-bottom: 1px solid var(--line);
	background: rgb(255 253 249 / 92%);
}

.product-shot-bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d4c9bc;
}

.product-shot-bar strong {
	margin-left: auto;
	color: var(--quiet);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-shot img {
	display: block;
	width: 160%;
	max-width: none;
	height: auto;
	margin-left: -25%;
}

.product-shot picture {
	display: block;
}

.product-demo-mobile {
	display: none;
}

.principles {
	display: grid;
	overflow: hidden;
	margin: 0 0 140px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: rgb(255 253 249 / 64%);
	grid-template-columns: repeat(3, 1fr);
}

.principles article {
	min-height: 250px;
	padding: 38px;
}

.principles article + article {
	border-left: 1px solid var(--line);
}

.step-number {
	margin: 0 0 50px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 780;
	letter-spacing: 0.12em;
}

.principles h2,
.content-section h2,
.privacy-panel h2,
.closing-section h2,
.contact-panel h2 {
	margin: 0;
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.03;
}

.principles h2 {
	font-size: 25px;
}

.principles article > p:last-child {
	margin: 16px 0 0;
	color: var(--muted);
	line-height: 1.65;
}

.content-section {
	padding: 120px 0;
	border-top: 1px solid var(--line);
}

.split-section {
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.content-section h2,
.closing-section h2 {
	max-width: 11ch;
	font-size: clamp(42px, 5vw, 68px);
}

.section-copy {
	padding-top: 26px;
}

.section-copy p,
.closing-section > p:not(.eyebrow) {
	max-width: 55ch;
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.section-copy p + p {
	margin-top: 24px;
}

.privacy-panel {
	display: grid;
	gap: clamp(36px, 7vw, 90px);
	margin: 40px 0 140px;
	padding: clamp(42px, 7vw, 84px);
	border-radius: 32px;
	color: #f8efe5;
	background:
		radial-gradient(circle at 10% 10%, rgb(146 85 27 / 35%), transparent 24rem),
		#201c18;
	box-shadow: 0 34px 100px rgb(32 28 24 / 22%);
	grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.privacy-panel .eyebrow {
	color: #eab375;
}

.privacy-panel h2 {
	font-size: clamp(42px, 5vw, 66px);
}

.privacy-panel p:not(.eyebrow) {
	max-width: 60ch;
	margin: 24px 0 0;
	color: #d5cabf;
	font-size: 17px;
	line-height: 1.68;
}

.privacy-panel .text-link {
	margin-top: 24px;
	color: #fff7ed;
}

.local-diagram {
	width: 100%;
	max-width: 360px;
	align-self: center;
	margin: 0;
}

.local-boundary {
	padding: 28px;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 24px;
}

.local-boundary-label {
	margin-bottom: 24px;
	color: #eab375;
	font-size: 11px;
	font-weight: 780;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.local-signals {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.local-signals li {
	display: flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border: 1px solid rgb(255 255 255 / 12%);
	border-radius: 999px;
	color: #d5cabf;
	background: rgb(255 255 255 / 5%);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
}

.local-process {
	margin-top: 28px;
	color: #f8efe5;
	font-size: 16px;
	font-weight: 760;
	text-align: center;
}

.local-process::before {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 auto 12px;
	border-right: 1px solid #eab375;
	border-bottom: 1px solid #eab375;
	transform: rotate(45deg);
	content: '';
}

.local-diagram figcaption {
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 12px;
	padding: 14px 18px;
	border-left: 3px solid #eab375;
	border-radius: 4px 14px 14px 4px;
	color: #d5cabf;
	background: rgb(255 255 255 / 6%);
	font-size: 13px;
	line-height: 1.35;
}

.local-diagram figcaption strong {
	color: #eab375;
	font-size: 14px;
	font-weight: 780;
}

.closing-section {
	display: flex;
	min-height: 550px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 100px 0 140px;
}

.closing-section > p:not(.eyebrow) {
	margin-top: 28px;
}

.site-footer {
	display: flex;
	min-height: 112px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 13px;
}

.site-footer p {
	margin: 0;
}

.document-layout {
	width: min(100%, 900px);
	margin: 0 auto;
	padding: 84px 0 140px;
}

.document-header {
	padding-bottom: 72px;
	border-bottom: 1px solid var(--line);
}

.document-header h1 {
	font-size: clamp(60px, 9vw, 112px);
}

.document-lede {
	max-width: 45ch;
	margin: 30px 0 0;
	color: var(--muted);
	font-size: clamp(19px, 2.5vw, 24px);
	line-height: 1.55;
}

.effective-date {
	margin: 24px 0 0;
	color: var(--quiet);
	font-size: 14px;
	font-weight: 650;
}

.prose {
	padding-top: 24px;
}

.prose section {
	padding: 56px 0;
	border-bottom: 1px solid var(--line);
}

.prose section:last-child {
	border-bottom: 0;
}

.prose h2,
.support-steps h2,
.report-grid h2 {
	margin: 0 0 20px;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.prose p,
.prose li,
.support-steps li,
.report-grid p,
.report-grid li {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.prose p {
	margin: 0;
}

.prose p + p,
.prose ul + p {
	margin-top: 20px;
}

.prose ul,
.report-grid ul {
	margin: 18px 0 0;
	padding-left: 24px;
}

.prose li + li,
.report-grid li + li {
	margin-top: 8px;
}

.support-layout {
	width: min(100%, 980px);
}

.support-steps {
	padding: 72px 0;
}

.support-steps ol {
	display: grid;
	margin: 34px 0 0;
	padding: 0;
	counter-reset: support-step;
	gap: 14px;
	list-style: none;
}

.support-steps li {
	position: relative;
	padding: 24px 24px 24px 74px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgb(255 253 249 / 58%);
	counter-increment: support-step;
}

.support-steps li::before {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 32px;
	height: 32px;
	align-content: center;
	border-radius: 50%;
	color: #6c3e11;
	background: var(--accent-soft);
	content: counter(support-step, decimal-leading-zero);
	font-size: 11px;
	font-weight: 780;
	text-align: center;
}

.support-steps strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ink);
}

.contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	padding: clamp(36px, 6vw, 68px);
	border-radius: 28px;
	color: #f8efe5;
	background: #201c18;
}

.contact-panel h2 {
	max-width: 15ch;
	font-size: clamp(34px, 4vw, 50px);
}

.contact-panel .eyebrow {
	color: #eab375;
}

.contact-panel p:not(.eyebrow) {
	max-width: 48ch;
	margin: 20px 0 0;
	color: #d5cabf;
	line-height: 1.65;
}

.button {
	display: inline-flex;
	min-height: 48px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 740;
	text-align: center;
	text-decoration: none;
}

.button-primary {
	color: #201c18;
	background: #f4dfc5;
}

.button-primary:hover {
	background: #fff0dd;
}

.hero-actions .button-primary {
	color: #fffaf2;
	background: #2d2925;
}

.hero-actions .button-primary:hover {
	background: #453c34;
}

.report-grid {
	display: grid;
	gap: 18px;
	padding: 72px 0 24px;
	grid-template-columns: repeat(2, 1fr);
}

.report-grid article {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgb(255 253 249 / 58%);
}

.report-grid p {
	margin: 0;
}

.report-grid p + p {
	margin-top: 18px;
}

.support-faq {
	padding-top: 24px;
}

.not-found {
	display: flex;
	width: min(100% - 40px, 740px);
	min-height: 100vh;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin: 0 auto;
	padding: 72px 0;
}

.not-found .brand {
	margin-bottom: 90px;
}

.not-found h1 {
	max-width: 8ch;
	font-size: clamp(58px, 10vw, 108px);
}

.not-found > p:not(.eyebrow) {
	margin: 28px 0 34px;
	color: var(--muted);
	font-size: 20px;
}

.not-found .button-primary {
	color: #fffaf2;
	background: #2d2925;
}

@media (width <= 900px) {
	.hero {
		min-height: auto;
		padding-top: 80px;
		grid-template-columns: 1fr;
	}

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

	.product-shot {
		width: min(100%, 760px);
		justify-self: center;
		transform: none;
	}

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

	.principles article {
		min-height: 0;
	}

	.principles article + article {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.step-number {
		margin-bottom: 28px;
	}

	.split-section,
	.privacy-panel {
		grid-template-columns: 1fr;
	}

	.local-diagram {
		max-width: 420px;
	}

	.contact-panel {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (width <= 660px) {
	.page-shell {
		width: min(100% - 28px, 1180px);
	}

	.site-header {
		min-height: 84px;
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		padding: 18px 0;
	}

	.site-nav {
		width: 100%;
		gap: 10px;
	}

	.site-nav a {
		flex: 1;
		justify-content: center;
		text-align: center;
	}

	.hero {
		padding: 66px 0 88px;
	}

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

	.product-shot {
		display: none;
	}

	.product-demo-mobile {
		display: block;
		padding: 14px;
		border: 1px solid var(--line);
		border-radius: 20px;
		background:
			radial-gradient(
				circle at 12% 12%,
				rgb(221 178 125 / 30%),
				transparent 18rem
			),
			var(--surface-soft);
		box-shadow: var(--shadow);
	}

	.product-demo-card {
		padding: 24px 20px 22px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: var(--surface);
	}

	.product-demo-brand {
		display: flex;
		align-items: center;
		gap: 9px;
		font-size: 15px;
	}

	.product-demo-brand img {
		display: block;
	}

	.product-demo-body {
		margin-top: 42px;
	}

	.product-demo-eyebrow {
		margin: 0;
		color: var(--accent);
		font-size: 11px;
		font-weight: 780;
		letter-spacing: 0.11em;
		text-transform: uppercase;
	}

	.product-demo-title {
		margin: 12px 0 0;
		font-size: clamp(32px, 10vw, 42px);
		font-weight: 780;
		letter-spacing: -0.05em;
		line-height: 1;
	}

	.product-demo-copy {
		margin: 22px 0 0;
		color: var(--muted);
		font-size: 15px;
		line-height: 1.55;
	}

	.product-demo-actions {
		display: grid;
		gap: 10px;
		margin-top: 24px;
	}

	.product-demo-primary,
	.product-demo-secondary {
		min-height: 44px;
		align-content: center;
		padding: 0 12px;
		border-radius: 999px;
		font-size: 12px;
		font-weight: 740;
		text-align: center;
	}

	.product-demo-primary {
		color: #fffaf2;
		background: #2d2925;
	}

	.product-demo-secondary {
		border: 1px solid var(--line-strong);
	}

	.product-demo-note {
		margin: 24px 0 0;
		color: var(--muted);
		font-size: 12px;
		line-height: 1.45;
	}

	.principles {
		margin-bottom: 90px;
		border-radius: 20px;
	}

	.principles article {
		padding: 30px;
	}

	.content-section {
		padding: 88px 0;
	}

	.privacy-panel {
		margin-bottom: 90px;
		border-radius: 24px;
	}

	.local-diagram {
		max-width: none;
	}

	.closing-section {
		min-height: 460px;
		padding-bottom: 100px;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding: 28px 0;
	}

	.site-footer nav {
		width: 100%;
		gap: 10px;
	}

	.site-footer a {
		flex: 1;
	}

	.document-layout {
		padding: 66px 0 100px;
	}

	.document-header {
		padding-bottom: 52px;
	}

	.prose section {
		padding: 44px 0;
	}

	.support-steps {
		padding: 56px 0;
	}

	.support-steps li {
		padding: 70px 22px 24px;
	}

	.support-steps li::before {
		top: 22px;
		left: 22px;
	}

	.contact-panel {
		padding: 32px 24px;
		border-radius: 22px;
	}

	.contact-panel .button {
		width: 100%;
	}

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

	.report-grid article {
		padding: 28px 24px;
	}
}

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

@media (prefers-color-scheme: dark) {
	:root {
		color: #f7efe5;
		background: #15120f;

		--canvas: #15120f;
		--surface: #201c18;
		--surface-soft: #27211c;
		--ink: #f7efe5;
		--muted: #c9bfb4;
		--quiet: #b1a69a;
		--accent: #e2a362;
		--focus: #f0b878;
		--accent-soft: #422d1c;
		--line: rgb(255 255 255 / 12%);
		--line-strong: rgb(255 255 255 / 22%);
		--shadow: 0 30px 90px rgb(0 0 0 / 35%);
	}

	body {
		background:
			radial-gradient(
				circle at 12% 4%,
				rgb(156 91 35 / 22%),
				transparent 32rem
			),
			linear-gradient(145deg, #181511 0%, var(--canvas) 55%, #0f0d0b 100%);
	}

	.product-shot-bar,
	.principles,
	.support-steps li,
	.report-grid article {
		background: rgb(32 28 24 / 72%);
	}

	.product-shot-bar span {
		background: #6c6258;
	}

	.support-steps li::before {
		color: #f3c99e;
	}

	.product-demo-primary {
		color: #1b1713;
		background: #f0dfca;
	}
}

@media (forced-colors: active) {
	.product-shot,
	.principles,
	.privacy-panel,
	.local-boundary,
	.local-signals li,
	.local-diagram figcaption,
	.support-steps li,
	.contact-panel,
	.report-grid article {
		border: 1px solid CanvasText;
	}

	.trust-list li::before {
		background: CanvasText;
	}
}
