:root {
	--bg: #050505;
	--bg-soft: #0c0c0c;
	--panel: rgba(12, 12, 12, 0.9);
	--panel-strong: rgba(18, 18, 18, 0.95);
	--border: rgba(255, 255, 255, 0.14);
	--ink: #f7f7f7;
	--muted: #b0b0b0;
	--accent: #ffffff;
	--accent-ink: #050505;
	--glow: rgba(255, 255, 255, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 28%),
		radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.07), transparent 24%),
		linear-gradient(180deg, #020202 0%, #090909 100%);
	color: var(--ink);
}

a {
	color: inherit;
	text-decoration: none;
}

.site-shell {
	width: min(1180px, calc(100vw - 32px));
	margin: 0 auto;
	padding: 22px 0 36px;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 8px 0 34px;
}

.brand-lockup {
	display: flex;
	align-items: center;
	gap: 14px;
}

.brand-mark {
	width: 50px;
	height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #050505;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.03em;
	box-shadow: 0 0 22px var(--glow);
}

.brand-name {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.brand-tag {
	color: var(--muted);
	font-size: 12px;
}

.topbar-links,
.footer-links {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--muted);
	font-size: 14px;
}

.topbar-links a:hover,
.footer-links a:hover {
	color: var(--ink);
}

.hero-grid,
.section-grid,
.feature-grid,
.steps-grid,
.dual-panel,
.faq-list {
	display: grid;
	gap: 16px;
}

.hero-grid {
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
	gap: 26px;
}

.hero-copy,
.hero-card,
.panel,
.step-card,
.feature-card,
.download-card,
.faq-list details {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 48px rgba(0, 0, 0, 0.45);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #d7d7d7;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin: 18px 0 16px;
	font-size: clamp(38px, 6vw, 68px);
	line-height: 1;
	letter-spacing: -0.04em;
}

h2 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

p,
li {
	color: var(--muted);
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 24px 0 20px;
}

.hero-actions.centered {
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 700;
}

.btn-primary {
	background: #ffffff;
	color: var(--accent-ink);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	color: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-points,
.checklist {
	margin: 0;
	padding-left: 18px;
}

.section {
	margin-top: 24px;
}

.panel {
	background: var(--panel-strong);
}

.site-footer {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.download-page {
	min-height: 72vh;
	display: grid;
	place-items: center;
}

.download-card {
	max-width: 760px;
	text-align: center;
}

.download-note {
	margin-top: 14px;
	color: var(--muted);
	font-size: 14px;
}

.legal-shell {
	width: min(920px, calc(100vw - 32px));
	margin: 0 auto;
	padding: 26px 0 36px;
}

.legal-header {
	margin-bottom: 18px;
}

.legal-panel {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 48px rgba(0, 0, 0, 0.45);
}

.legal-content h2 {
	margin-top: 24px;
	margin-bottom: 8px;
	font-size: 24px;
}

.legal-content p,
.legal-content li {
	color: var(--muted);
	line-height: 1.72;
}

.legal-content ul {
	margin: 0 0 14px;
	padding-left: 20px;
}

@media (max-width: 980px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.dual-panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.site-shell,
	.legal-shell {
		width: min(100vw - 20px, 1180px);
	}

	.topbar,
	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.topbar-links,
	.footer-links {
		width: 100%;
		flex-wrap: wrap;
		gap: 12px;
	}
}
