@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
	--cream: #f4f1ea;
	--ink: #14130f;
	--panel: #eae5da;
	--line: #d2ccbf;
	--body: #4a473e;
	--muted: #746f62;
	--red: #b3261e;
	--green: #2e6b45;
	--amber: #a65f00;
	--white: #fff;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

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

.skip-link {
	position: fixed;
	left: 1rem;
	top: -5rem;
	z-index: 100;
	background: var(--ink);
	color: var(--cream);
	padding: 0.75rem 1rem;
}

.skip-link:focus {
	top: 1rem;
}

.site-header {
	border-bottom: 1px solid var(--line);
	background: rgba(244, 241, 234, 0.94);
	backdrop-filter: blur(14px);
	position: sticky;
	top: 0;
	z-index: 20;
}

.nav {
	max-width: var(--max);
	min-height: 72px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.brand svg {
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
}

.brand small {
	display: block;
	color: var(--muted);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.1;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 13px;
	font-weight: 600;
}

.nav-links a {
	text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--cream);
	font-size: 14px;
	font-weight: 600;
	padding: 0 22px;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
	box-shadow: 5px 5px 0 var(--line);
	transform: translate(-2px, -2px);
}

.button.secondary {
	background: transparent;
	color: var(--ink);
}

.eyebrow {
	margin: 0 0 14px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero {
	max-width: var(--max);
	margin: 0 auto;
	padding: 96px 24px 72px;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	align-items: center;
	gap: clamp(48px, 8vw, 110px);
}

.hero h1,
.page-hero h1 {
	font-family: 'Newsreader', Georgia, serif;
	font-size: clamp(52px, 8vw, 104px);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.92;
	margin: 0;
}

.hero-copy {
	max-width: 640px;
	color: var(--body);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	margin: 28px 0 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.coverage-note {
	color: var(--muted);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.05em;
	margin-top: 18px;
	text-transform: uppercase;
}

.radar-card {
	background: var(--ink);
	color: var(--cream);
	min-height: 480px;
	padding: clamp(28px, 5vw, 52px);
	position: relative;
	overflow: hidden;
}

.radar-card::before,
.radar-card::after {
	border: 1px solid rgba(244, 241, 234, 0.24);
	border-radius: 50%;
	content: '';
	position: absolute;
	width: 360px;
	height: 360px;
	right: -64px;
	top: 48px;
}

.radar-card::after {
	width: 228px;
	height: 228px;
	right: 2px;
	top: 114px;
}

.radar-sweep {
	border-top: 3px solid var(--cream);
	position: absolute;
	width: 240px;
	right: -8px;
	top: 228px;
	transform: rotate(-42deg);
	transform-origin: right center;
}

.radar-dot {
	background: var(--cream);
	border-radius: 50%;
	box-shadow: 0 0 0 10px rgba(244, 241, 234, 0.08);
	height: 11px;
	position: absolute;
	right: 112px;
	top: 217px;
	width: 11px;
}

.radar-result {
	position: absolute;
	left: clamp(28px, 5vw, 52px);
	right: clamp(28px, 5vw, 52px);
	bottom: 42px;
}

.radar-result strong {
	display: block;
	font-family: 'Newsreader', Georgia, serif;
	font-size: 46px;
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
}

.radar-result span {
	display: block;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
	margin-top: 12px;
	opacity: 0.68;
	text-transform: uppercase;
}

.band {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.band-inner,
.section,
.page-shell {
	max-width: var(--max);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.band-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 24px;
	padding-bottom: 24px;
}

.band-item {
	padding: 8px 24px;
	border-left: 1px solid var(--line);
}

.band-item:first-child {
	border-left: 0;
	padding-left: 0;
}

.band-item strong {
	display: block;
	font-family: 'Newsreader', Georgia, serif;
	font-size: 25px;
	font-weight: 500;
}

.band-item span {
	color: var(--muted);
	font-size: 12px;
}

.section {
	padding-top: 96px;
	padding-bottom: 96px;
}

.section-heading {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 60px;
	margin-bottom: 50px;
}

.section-heading h2,
.callout h2 {
	font-family: 'Newsreader', Georgia, serif;
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0;
}

.section-heading p {
	color: var(--body);
	font-size: 18px;
	margin: 0;
	max-width: 680px;
}

.feature-grid,
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.feature,
.step {
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	min-height: 290px;
	padding: 32px;
}

.feature-number,
.step-number {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
}

.feature h3,
.step h3 {
	font-family: 'Newsreader', Georgia, serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.05;
	margin: 58px 0 14px;
}

.feature p,
.step p {
	color: var(--body);
	font-size: 14px;
	margin: 0;
}

.callout {
	background: var(--panel);
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 50px;
	padding: clamp(36px, 7vw, 72px);
}

.callout-copy {
	color: var(--body);
}

.callout-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.callout-list li {
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	font-size: 13px;
}

.callout-list code {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
}

.page-hero {
	max-width: var(--max);
	margin: 0 auto;
	padding: 88px 24px 58px;
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	font-size: clamp(48px, 7vw, 82px);
}

.page-hero p {
	color: var(--body);
	font-size: 18px;
	max-width: 720px;
	margin: 24px 0 0;
}

.page-shell {
	display: grid;
	grid-template-columns: 240px minmax(0, 760px);
	gap: clamp(38px, 8vw, 96px);
	padding-top: 64px;
	padding-bottom: 96px;
}

.toc {
	align-self: start;
	position: sticky;
	top: 108px;
}

.toc strong {
	display: block;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.toc a {
	color: var(--muted);
	display: block;
	font-size: 13px;
	padding: 5px 0;
	text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
	color: var(--ink);
	text-decoration: underline;
}

.legal-content section,
.support-content section {
	border-top: 1px solid var(--line);
	padding: 34px 0;
	scroll-margin-top: 100px;
}

.legal-content section:first-child,
.support-content section:first-child {
	border-top: 0;
	padding-top: 0;
}

.legal-content h2,
.support-content h2 {
	font-family: 'Newsreader', Georgia, serif;
	font-size: 31px;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 16px;
}

.legal-content h3,
.support-content h3 {
	font-size: 15px;
	margin: 24px 0 8px;
}

.legal-content p,
.legal-content li,
.support-content p,
.support-content li {
	color: var(--body);
}

.legal-content ul,
.support-content ul {
	padding-left: 20px;
}

.legal-content a,
.support-content a {
	text-underline-offset: 3px;
}

.notice {
	border-left: 4px solid var(--ink);
	background: var(--panel);
	color: var(--body);
	padding: 20px 22px;
	margin: 24px 0;
}

.notice.warning {
	border-left-color: var(--amber);
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 42px;
}

.support-card {
	border: 1px solid var(--ink);
	min-height: 190px;
	padding: 26px;
}

.support-card h2 {
	font-size: 25px;
	margin-top: 26px;
}

.support-card p {
	font-size: 14px;
	margin-bottom: 0;
}

.contact-panel {
	background: var(--ink);
	color: var(--cream);
	padding: clamp(30px, 6vw, 58px);
	margin-top: 44px;
}

.contact-panel p {
	color: rgba(244, 241, 234, 0.72);
}

.contact-panel a {
	color: var(--cream);
}

.site-footer {
	background: var(--ink);
	color: var(--cream);
}

.footer-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 46px 24px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
}

.footer-inner p {
	color: rgba(244, 241, 234, 0.55);
	font-size: 12px;
	margin: 8px 0 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 12px;
}

@media (max-width: 840px) {
	.nav-links a:not(.button) {
		display: none;
	}

	.hero,
	.section-heading,
	.callout,
	.page-shell {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 68px;
	}

	.radar-card {
		min-height: 420px;
	}

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

	.feature,
	.step {
		min-height: auto;
	}

	.feature h3,
	.step h3 {
		margin-top: 36px;
	}

	.toc {
		display: none;
	}
}

@media (max-width: 620px) {
	.nav {
		min-height: 64px;
		padding: 0 18px;
	}

	.nav-links .button {
		min-height: 40px;
		padding: 0 13px;
	}

	.hero,
	.section,
	.page-hero,
	.page-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.band-inner {
		grid-template-columns: 1fr;
		padding-left: 18px;
		padding-right: 18px;
	}

	.band-item,
	.band-item:first-child {
		border-left: 0;
		border-top: 1px solid var(--line);
		padding: 16px 0;
	}

	.band-item:first-child {
		border-top: 0;
	}

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

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.toc,
	.hero-actions {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.page-shell {
		display: block;
		max-width: none;
	}
}
