:root {
	--bg: #050604;
	--panel: #10130d;
	--panel-2: #171b11;
	--line: rgba(203, 238, 39, 0.24);
	--line-soft: rgba(203, 238, 39, 0.12);
	--text: #f2f5e8;
	--muted: #a9b198;
	--accent: #cbee27;
	--accent-2: #8ba80e;
	--warning: #f1c75b;
	--max: 1120px;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 70% 14%, rgba(203, 238, 39, 0.12), transparent 26rem),
		linear-gradient(180deg, #070806 0%, var(--bg) 42%, #080a06 100%);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

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

a:hover {
	color: var(--accent);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(18px);
	background: rgba(5, 6, 4, 0.82);
	border-bottom: 1px solid var(--line-soft);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 740;
	font-size: 18px;
}

.brand img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(203, 238, 39, 0.32), 0 0 34px rgba(203, 238, 39, 0.2);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--muted);
	font-size: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(203, 238, 39, 0.38);
	border-radius: 8px;
	background: rgba(203, 238, 39, 0.1);
	color: var(--text);
	font-weight: 680;
}

.button.primary {
	background: var(--accent);
	border-color: var(--accent);
	color: #121606;
}

.hero {
	width: min(var(--max), calc(100% - 40px));
	min-height: calc(100vh - 72px);
	margin: 0 auto;
	padding: 72px 0 52px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
	align-items: center;
	gap: 56px;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 760;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

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

h1 {
	max-width: 780px;
	font-size: clamp(48px, 8vw, 104px);
}

h2 {
	font-size: clamp(30px, 4vw, 52px);
}

h3 {
	font-size: 20px;
}

.lead {
	max-width: 720px;
	margin: 24px 0 0;
	color: #d9dfcc;
	font-size: 20px;
}

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

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 42px;
}

.meta-item,
.card,
.notice,
.doc-card {
	border: 1px solid var(--line-soft);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
	border-radius: 8px;
}

.meta-item {
	padding: 14px;
	color: var(--muted);
	font-size: 14px;
}

.meta-item strong {
	display: block;
	color: var(--text);
	font-size: 22px;
	line-height: 1.2;
}

.logo-stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 430px;
}

.logo-stage::before {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(203, 238, 39, 0.16);
	border-radius: 50%;
	box-shadow: 0 0 80px rgba(203, 238, 39, 0.14);
}

.logo-stage img {
	position: relative;
	width: min(100%, 420px);
	height: auto;
	border-radius: 50%;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.section {
	border-top: 1px solid var(--line-soft);
	padding: 84px 0;
}

.section-inner {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 42px;
	align-items: start;
}

.section-copy {
	max-width: 620px;
	margin-top: 16px;
	color: var(--muted);
	font-size: 18px;
}

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

.card {
	padding: 22px;
}

.card p,
.doc-card p,
.notice p {
	margin: 10px 0 0;
	color: var(--muted);
}

.list {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
	color: var(--muted);
}

.list li {
	padding-left: 18px;
	position: relative;
}

.list li::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 0.72em;
	border-radius: 50%;
	background: var(--accent);
}

.notice {
	margin-top: 28px;
	padding: 22px;
	border-color: rgba(241, 199, 91, 0.34);
}

.notice strong {
	color: var(--warning);
}

.doc-shell {
	width: min(860px, calc(100% - 40px));
	margin: 0 auto;
	padding: 64px 0 90px;
}

.doc-shell h1 {
	font-size: clamp(40px, 6vw, 72px);
}

.doc-meta {
	margin: 18px 0 34px;
	color: var(--muted);
}

.doc-card {
	padding: 30px;
}

.doc-card h2 {
	margin-top: 34px;
	font-size: 26px;
}

.doc-card h2:first-child {
	margin-top: 0;
}

.doc-card ul {
	color: var(--muted);
}

.site-footer {
	border-top: 1px solid var(--line-soft);
	padding: 34px 0;
	color: var(--muted);
}

.footer-inner {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-links {
	display: flex;
	gap: 18px;
}

@media (max-width: 860px) {
	.nav {
		width: min(var(--max), calc(100% - 28px));
	}

	.nav-links {
		gap: 12px;
	}

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

	.hero {
		width: min(var(--max), calc(100% - 28px));
		grid-template-columns: 1fr;
		padding-top: 46px;
		gap: 34px;
	}

	.logo-stage {
		min-height: 320px;
	}

	.hero-meta,
	.grid,
	.split {
		grid-template-columns: 1fr;
	}

	.section-inner,
	.doc-shell,
	.footer-inner {
		width: min(var(--max), calc(100% - 28px));
	}
}
