:root {
	--bg: #0a0e17;
	--bg-soft: #0f1524;
	--panel: #131b2e;
	--panel-2: #18223a;
	--border: #233049;
	--text: #e7ecf5;
	--muted: #9aa7c0;
	--muted-2: #6b7894;
	--brand: #4f8cff;
	--brand-2: #22d3a6;
	--brand-grad: linear-gradient(120deg, #4f8cff 0%, #22d3a6 100%);
	--accent-soft: rgba(79, 140, 255, 0.12);
	--radius: 16px;
	--radius-sm: 10px;
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	--maxw: 1140px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--brand);
	text-decoration: none;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--brand-2);
}

h1,
h2,
h3 {
	line-height: 1.2;
	margin: 0 0 0.5em;
	letter-spacing: -0.02em;
}

p {
	margin: 0 0 1em;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.muted {
	color: var(--muted);
}

.gradient-text {
	background: var(--brand-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
	background: var(--brand-grad);
	color: #05121f;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(34, 211, 166, 0.25);
	color: #05121f;
}

.btn-ghost {
	background: transparent;
	border-color: var(--border);
	color: var(--text);
}

.btn-ghost:hover {
	border-color: var(--brand);
	color: var(--text);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 14, 23, 0.8);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 18px;
	color: var(--text);
	letter-spacing: -0.02em;
}

.brand:hover {
	color: var(--text);
}

.logo-mark {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--brand-grad);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #05121f;
	font-weight: 800;
	font-size: 15px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-links a {
	color: var(--muted);
	font-size: 15px;
	font-weight: 500;
}

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

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--text);
	cursor: pointer;
	font-size: 24px;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	padding: 110px 0 90px;
}

.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 700px;
	background: radial-gradient(circle at center, rgba(79, 140, 255, 0.22), transparent 60%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -250px;
	right: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle at center, rgba(34, 211, 166, 0.16), transparent 60%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--accent-soft);
	border: 1px solid var(--border);
	color: var(--brand);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: clamp(2.4rem, 5.5vw, 3.8rem);
	margin-bottom: 20px;
}

.hero p.lead {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--muted);
	max-width: 640px;
	margin: 0 auto 32px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ---------- Stats ---------- */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 72px;
}

.stat {
	text-align: center;
}

.stat .num {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.stat .label {
	color: var(--muted);
	font-size: 14px;
}

/* ---------- Sections ---------- */
.section {
	padding: 90px 0;
}

.section-soft {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
}

.section-head h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-head p {
	color: var(--muted);
	font-size: 1.08rem;
}

/* ---------- Feature grid ---------- */
.grid {
	display: grid;
	gap: 24px;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--brand);
}

.card .icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--accent-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
}

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

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

/* ---------- Steps ---------- */
.steps {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.step {
	position: relative;
	padding: 28px;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.step::before {
	counter-increment: step;
	content: counter(step);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--brand-grad);
	color: #05121f;
	font-weight: 800;
	margin-bottom: 16px;
}

.step h3 {
	font-size: 1.1rem;
}

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

/* ---------- Partner / rewards ---------- */
.split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.reward-card {
	background: var(--panel-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 34px;
	box-shadow: var(--shadow);
}

.tier {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
}

.tier:last-child {
	border-bottom: 0;
}

.tier .tier-name {
	font-weight: 600;
}

.tier .tier-pay {
	font-weight: 800;
	color: var(--brand-2);
}

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

.check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 14px;
	color: var(--muted);
}

.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--brand-2);
	font-weight: 800;
}

/* ---------- CTA / form ---------- */
.cta-band {
	background: linear-gradient(120deg, rgba(79, 140, 255, 0.12), rgba(34, 211, 166, 0.1));
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 56px;
	text-align: center;
}

.signup-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 620px;
	margin: 28px auto 0;
	text-align: left;
}

.signup-form .full {
	grid-column: 1 / -1;
}

.field label {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 6px;
	font-weight: 500;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 14px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: 15px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--brand);
}

/* ---------- Legal pages ---------- */
.legal {
	padding: 70px 0 90px;
}

.legal .container {
	max-width: 820px;
}

.legal h1 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: 8px;
}

.legal .updated {
	color: var(--muted-2);
	font-size: 14px;
	margin-bottom: 40px;
}

.legal h2 {
	font-size: 1.4rem;
	margin-top: 44px;
}

.legal h3 {
	font-size: 1.1rem;
	margin-top: 28px;
}

.legal p,
.legal li {
	color: var(--muted);
}

.legal ul,
.legal ol {
	padding-left: 22px;
}

.legal li {
	margin-bottom: 8px;
}

.toc {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 28px;
	margin-bottom: 40px;
}

.toc strong {
	display: block;
	margin-bottom: 10px;
}

.toc ol {
	margin: 0;
	color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
	padding: 64px 0 28px;
	margin-top: 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 40px;
}

.footer-brand p {
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 300px;
	margin-top: 16px;
}

.footer-col h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted-2);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	color: var(--muted);
	font-size: 0.95rem;
}

.footer-col a:hover {
	color: var(--text);
}

.footer-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.badge {
	font-size: 12px;
	color: var(--muted);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 5px 12px;
}

.footer-bottom {
	margin-top: 52px;
	padding-top: 26px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-bottom p {
	margin: 0;
	color: var(--muted-2);
	font-size: 0.88rem;
}

.footer-legal-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-legal-links a {
	color: var(--muted-2);
	font-size: 0.88rem;
}

.footer-disclaimer {
	margin-top: 20px;
	color: var(--muted-2);
	font-size: 0.8rem;
	line-height: 1.6;
}

.social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.social a {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	border: 1px solid var(--border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
}

.social a:hover {
	border-color: var(--brand);
	color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.grid-3,
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.split {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 640px) {
	.nav-links {
		display: none;
	}
	.nav-toggle {
		display: block;
	}
	.nav-links.open {
		display: flex;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--bg-soft);
		border-bottom: 1px solid var(--border);
		padding: 20px 24px;
		gap: 18px;
	}
	.grid-3,
	.grid-2,
	.steps {
		grid-template-columns: 1fr;
	}
	.signup-form {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.cta-band {
		padding: 36px 24px;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
