/* UNiverse landing — тёмная «фетровая» тема в палитре игры */
:root {
	--gold: #fabf4d;
	--coral: #ef6f63;
	--green: #7dc99b;
	--gold-soft: rgba(250, 191, 77, 0.14);
	--bg: #0e1210;
	--panel: rgba(22, 26, 24, 0.82);
	--text: #ece4d4;
	--muted: #a89e8a;
	--border: rgba(250, 191, 77, 0.16);
	--radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(900px 620px at 8% -10%, rgba(250, 191, 77, 0.11), transparent 66%),
		radial-gradient(900px 620px at 96% 20%, rgba(125, 201, 155, 0.09), transparent 68%),
		var(--bg);
	line-height: 1.55;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* --- Шапка --- */
.top {
	position: sticky; top: 0; z-index: 10;
	background: rgba(14, 18, 16, 0.82);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.top-row { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { font-size: 20px; letter-spacing: 0.14em; color: var(--text); }
.logo b { color: var(--gold); font-weight: 800; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
	color: var(--muted); text-decoration: none; font-size: 15px;
	transition: color 0.15s ease;
}
.nav a:hover { color: var(--gold); }
.lang-toggle {
	background: transparent; color: var(--gold);
	border: 1px solid var(--border); border-radius: 8px;
	padding: 5px 14px; font-size: 14px; cursor: pointer;
	transition: background 0.15s ease;
}
.lang-toggle:hover { background: var(--gold-soft); }

/* --- Hero --- */
.hero { padding: 84px 0 82px; overflow: hidden; }
.hero-grid {
	display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: center; gap: 66px;
}
.hero-copy { min-width: 0; }
.eyebrow {
	margin: 0 0 12px; color: var(--gold); text-transform: uppercase;
	font-size: 12px; font-weight: 800; letter-spacing: 0.17em;
}
.wordmark {
	margin: 0; font-size: clamp(52px, 7vw, 86px); font-weight: 300;
	letter-spacing: 0.10em; color: var(--text);
}
.wordmark b { color: var(--gold); font-weight: 800; }
.tagline {
	max-width: 590px; margin: 18px 0 0;
	font-size: clamp(17px, 2.4vw, 21px); color: var(--muted);
}
.cta-block { margin-top: 34px; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 13px; }
.cta {
	display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
	background: linear-gradient(180deg, #ffd47a, var(--gold) 55%, #e2a332);
	color: #241a05; text-decoration: none;
	font-size: 17px; font-weight: 750;
	padding: 14px 28px 12px; border-radius: 13px;
	box-shadow: 0 6px 30px rgba(250, 191, 77, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(250, 191, 77, 0.35); }
.cta.secondary {
	background: var(--panel); color: var(--text);
	border: 1px solid var(--border);
	box-shadow: none;
}
.cta.secondary:hover { box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35); border-color: var(--gold); }
.cta small { font-size: 13px; font-weight: 500; opacity: 0.75; }
.cta-note { margin-top: 14px; font-size: 14px; color: var(--muted); }
.cta-block.bottom { margin: 44px 0 8px; text-align: center; }

.badges {
	display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 9px;
	margin: 34px 0 0; padding: 0; list-style: none;
}
.badges li {
	border: 1px solid var(--border); border-radius: 999px;
	padding: 6px 16px; font-size: 13.5px; color: var(--muted);
	background: var(--panel);
}

.hero-visual {
	position: relative; padding: 13px; border: 1px solid var(--border);
	border-radius: 24px; background: rgba(24, 29, 26, 0.78);
	box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
	transform: rotate(1deg);
}
.hero-visual::before {
	content: ""; position: absolute; inset: -45px -50px; z-index: -1;
	background: radial-gradient(circle, rgba(250, 191, 77, 0.13), transparent 66%);
}
.hero-visual img {
	display: block; width: 100%; border-radius: 14px; aspect-ratio: 16 / 9;
	object-fit: cover; filter: saturate(0.9) contrast(1.04);
}
.version-pill {
	position: absolute; z-index: 2; top: -18px; right: 24px;
	padding: 8px 13px; border: 1px solid rgba(125, 201, 155, 0.32);
	border-radius: 999px; background: #161d19; color: var(--text);
	font-size: 13px; font-weight: 750; box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.version-pill span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--green); }
.version-pill em { color: var(--muted); font-style: normal; font-weight: 500; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 4px 3px; }
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { color: var(--gold); font-size: 22px; line-height: 1.2; }
.hero-stats span { color: var(--muted); font-size: 11px; text-align: center; }

/* --- Секции --- */
.section { padding: 64px 0; }
h2 {
	margin: 0 0 30px; font-size: clamp(26px, 4vw, 34px);
	font-weight: 700; letter-spacing: 0.02em;
}
h2::after {
	content: ""; display: block; width: 56px; height: 3px;
	margin-top: 10px; border-radius: 2px; background: var(--gold);
}

.release-section {
	border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
	background: linear-gradient(110deg, rgba(250,191,77,.045), rgba(125,201,155,.025));
}
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin: 0 0 10px; color: var(--muted); }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.release-grid article {
	position: relative; min-height: 190px; padding: 23px 20px;
	background: rgba(14,18,16,.62); border: 1px solid var(--border); border-radius: var(--radius);
}
.release-grid article > span { color: rgba(250,191,77,.42); font: 800 12px/1 system-ui; letter-spacing: .12em; }
.release-grid h3 { margin: 46px 0 9px; font-size: 17px; }
.release-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* --- Скриншоты --- */
.shots-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.shots-grid figure {
	margin: 0; border-radius: var(--radius); overflow: hidden;
	border: 1px solid var(--border); background: var(--panel);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shots-grid figure:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.shots-grid img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.shots-grid figcaption {
	padding: 12px 16px; font-size: 14px; color: var(--muted);
}

/* --- Возможности --- */
.features-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
	background: var(--panel); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 24px 22px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(250, 191, 77, 0.45); transform: translateY(-3px); }
.card h3 { margin: 0 0 10px; font-size: 18px; color: var(--gold); }
.card p { margin: 0; font-size: 15px; color: var(--muted); }

/* --- Шаги --- */
.steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
	margin: 0; padding: 0; list-style: none; counter-reset: step;
}
.steps li {
	position: relative; background: var(--panel);
	border: 1px solid var(--border); border-radius: var(--radius);
	padding: 26px 22px 22px;
}
.step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: var(--gold-soft); color: var(--gold);
	font-size: 19px; font-weight: 800; margin-bottom: 14px;
}
.steps h3 { margin: 0 0 8px; font-size: 17px; }
.steps p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* --- Футер --- */
.footer {
	border-top: 1px solid var(--border);
	padding: 36px 0 44px; margin-top: 32px;
	font-size: 14px; color: var(--muted);
}
.footer p { margin: 6px 0; }
.footer .dim { opacity: 0.55; margin-top: 16px; }

/* --- Адаптив --- */
@media (max-width: 820px) {
	.nav { display: none; }
	.hero { padding: 64px 0 52px; }
	.hero-grid { grid-template-columns: 1fr; gap: 52px; }
	.hero-copy { text-align: center; }
	.tagline { margin-left: auto; margin-right: auto; }
	.cta-row, .badges { justify-content: center; }
	.hero-visual { transform: none; }
	.section-heading { align-items: start; flex-direction: column; gap: 4px; }
	.release-grid { grid-template-columns: 1fr 1fr; }
	.shots-grid, .features-grid, .steps { grid-template-columns: 1fr; }
	.cta { width: 100%; padding: 16px 20px 13px; }
}

@media (max-width: 520px) {
	.wrap { padding-left: 18px; padding-right: 18px; }
	.wordmark { font-size: 49px; }
	.release-grid { grid-template-columns: 1fr; }
	.hero-stats span { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.cta, .shots-grid figure, .card { transition: none; }
}
