:root {
	--bg: #f7f8fb;
	--surface: #ffffff;
	--ink: #171820;
	--muted: #5d6372;
	--line: #dde1ea;
	--accent: #8b2ee6;
	--accent-strong: #6f1fd0;
	--teal: #0f766e;
	--gold: #a16207;
	--radius: 8px;
	--shadow: 0 18px 48px rgba(23, 24, 32, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
}

a {
	color: var(--accent-strong);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 2;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.nav {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 18px;
	color: var(--ink);
	text-decoration: none;
}

.brand img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: block;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
}

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

.hero {
	background:
		linear-gradient(125deg, rgba(139, 46, 230, 0.14), transparent 42%),
		linear-gradient(180deg, #fff, #f7f8fb);
	border-bottom: 1px solid var(--line);
}

.hero-inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	min-height: 560px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: center;
	gap: 48px;
	padding: 64px 0 72px;
}

.eyebrow {
	color: var(--teal);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0 0 12px;
}

h1,
h2,
h3 {
	line-height: 1.1;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(42px, 8vw, 82px);
	margin: 0 0 18px;
}

h2 {
	font-size: clamp(28px, 4vw, 44px);
	margin: 0 0 14px;
}

h3 {
	font-size: 20px;
	margin: 0 0 10px;
}

.lead {
	font-size: clamp(18px, 2vw, 22px);
	color: var(--muted);
	max-width: 720px;
	margin: 0 0 28px;
}

.hero-actions,
.inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-art {
	justify-self: end;
	width: min(100%, 360px);
	aspect-ratio: 1;
	border-radius: 28px;
	background: #8f2ce8;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow);
}

.hero-art img {
	width: 78%;
	height: 78%;
	object-fit: contain;
	display: block;
}

.section {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 64px 0;
}

.section.tight {
	padding: 40px 0;
}

.section-header {
	max-width: 760px;
	margin-bottom: 28px;
}

.section-header p,
.policy p,
.policy li,
.value-list li {
	color: var(--muted);
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: 0 8px 28px rgba(23, 24, 32, 0.04);
}

.card.accent {
	border-color: rgba(139, 46, 230, 0.32);
}

.card.teal {
	border-color: rgba(15, 118, 110, 0.32);
}

.card.gold {
	border-color: rgba(161, 98, 7, 0.32);
}

.value-list {
	margin: 0;
	padding-left: 20px;
}

.code-list {
	display: grid;
	gap: 12px;
}

.code-row {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
}

.code-row span {
	display: block;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}

code,
.code-row code {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 14px;
	word-break: break-word;
}

.notice {
	border-left: 4px solid var(--gold);
	background: #fff8e6;
	padding: 16px 18px;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: #593700;
}

.policy {
	max-width: 880px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
}

.policy h2 {
	font-size: 28px;
	margin-top: 34px;
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 32px 0;
	background: #fff;
}

.footer-inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: 14px;
}

.callback-panel {
	max-width: 760px;
	margin: 72px auto;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
}

.copy-box {
	width: 100%;
	min-height: 120px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 6px;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	resize: vertical;
}

@media (max-width: 840px) {
	.nav {
		align-items: flex-start;
		flex-direction: column;
		padding: 16px 0;
	}

	.nav-links {
		flex-wrap: wrap;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 48px;
	}

	.hero-art {
		justify-self: start;
		width: min(72vw, 320px);
	}

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

	.policy {
		padding: 22px;
	}
}
