/* The whole stylesheet, one static file (LND-01): Vite cannot resolve CSS through a path holding
   `@@`, so nothing imports a stylesheet and no component carries a <style> block. */

:root {
	--bg: #0a0c11;
	--bg-raised: #10131b;
	--border: #1c2130;
	--text: #e7e9ee;
	--muted: #9aa1ad;
	--gold: #f0b429;
	--violet: #8b7cf6;
	--max: 1060px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	line-height: 1.15;
	margin: 0 0 0.5rem;
}

p {
	margin: 0.4rem 0;
}

a {
	color: inherit;
	text-decoration: none;
}

em {
	color: var(--gold);
	font-style: normal;
}

.brand-m {
	color: var(--gold);
}

/* ---------- gate ---------- */

#gate {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg);
}

.gate-card {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	width: min(320px, 86vw);
	padding: 2rem;
	background: var(--bg-raised);
	border: 1px solid var(--border);
	border-radius: 14px;
	text-align: center;
}

.gate-brand {
	font-size: 1.5rem;
	font-weight: 700;
}

.gate-note {
	color: var(--muted);
	margin: 0;
}

.gate-card input {
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-size: 1rem;
}

.gate-card button {
	padding: 0.6rem;
	border: 0;
	border-radius: 8px;
	background: var(--gold);
	color: #14100a;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
}

.gate-err {
	color: #f87171;
	min-height: 1.2em;
	margin: 0;
	font-size: 0.9rem;
}

/* ---------- nav ---------- */

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--max);
	margin: 0 auto;
	padding: 1.1rem 1.25rem;
}

.brand {
	font-size: 1.25rem;
	font-weight: 700;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.nav-links a:hover {
	color: var(--text);
}

/* ---------- buttons ---------- */

.button {
	display: inline-block;
	padding: 0.65rem 1.15rem;
	border-radius: 9px;
	background: var(--gold);
	color: #14100a;
	font-weight: 700;
}

.button.small {
	padding: 0.45rem 0.85rem;
	font-size: 0.9rem;
}

.button.ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	font-weight: 600;
}

.button:hover {
	filter: brightness(1.08);
}

/* ---------- hero ---------- */

.hero {
	max-width: var(--max);
	margin: 0 auto;
	padding: 4.5rem 1.25rem 3rem;
	text-align: center;
}

.kicker {
	color: var(--violet);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.hero h1 {
	font-size: clamp(2.1rem, 5.5vw, 3.4rem);
	margin: 0.6rem 0 1rem;
}

.lede {
	max-width: 46rem;
	margin: 0 auto;
	color: var(--muted);
	font-size: 1.1rem;
}

.rule {
	margin: 1.4rem auto 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gold);
}

.hero-actions {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	margin-top: 1.6rem;
	flex-wrap: wrap;
}

/* ---------- strip ---------- */

.strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	max-width: var(--max);
	margin: 1rem auto 0;
	padding: 0 1.25rem;
}

.strip-item {
	background: var(--bg-raised);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.2rem 1.3rem;
}

.strip-item h3 {
	font-size: 1.05rem;
}

.strip-item p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- sections ---------- */

.section {
	max-width: var(--max);
	margin: 0 auto;
	padding: 3.5rem 1.25rem 0;
}

.section h2 {
	font-size: clamp(1.5rem, 3.4vw, 2.1rem);
	margin-bottom: 0.4rem;
}

.section-lede {
	color: var(--muted);
	max-width: 44rem;
	margin-bottom: 1.2rem;
}

/* ---------- steps ---------- */

.steps {
	list-style: none;
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 1.4rem 0 0;
}

.steps li {
	counter-increment: step;
	background: var(--bg-raised);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.2rem 1.3rem;
}

.steps li::before {
	content: counter(step);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background: var(--violet);
	color: #0a0c11;
	font-weight: 700;
	margin-bottom: 0.7rem;
}

.steps h3 {
	font-size: 1.05rem;
}

.steps p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- cards ---------- */

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	margin-top: 1.4rem;
}

.card {
	background: var(--bg-raised);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.2rem 1.3rem;
}

.card h3 {
	font-size: 1.05rem;
}

.card p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- pricing ---------- */

.prices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 1.4rem;
}

.price {
	background: var(--bg-raised);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem 1.3rem;
	text-align: center;
}

.price-amount {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--gold);
}

.price-what {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.price p {
	color: var(--muted);
	font-size: 0.92rem;
}

.price-note {
	color: var(--muted);
	max-width: 50rem;
	margin: 1.3rem auto 0;
	text-align: center;
	font-size: 0.95rem;
}

/* ---------- footer ---------- */

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--max);
	margin: 4rem auto 0;
	padding: 1.6rem 1.25rem 2.2rem;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.9rem;
	flex-wrap: wrap;
}

@media (max-width: 560px) {
	.nav-links {
		gap: 0.7rem;
	}

	.nav-links a:not(.button) {
		display: none;
	}
}
