:root {
	--bg: #0E1628;
	--panel: #17243D;
	--panel-light: #22335A;
	--yellow: #FFC531;
	--orange: #FF8A1F;
	--green: #3DD68C;
	--white: #F5F0E6;
	--muted: #8A9BC0;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

a { color: var(--yellow); }

.wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 16px;
}

header.site {
	padding: 32px 0 8px;
	text-align: center;
}

header.site img.logo {
	width: 190px;
	max-width: 60%;
	height: auto;
}

header.site h1 {
	font-size: 1.6rem;
	letter-spacing: .04em;
	margin: 12px 0 4px;
}

header.site p.tagline {
	color: var(--muted);
	margin: 0;
}

nav.site {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: center;
	padding: 18px 0 8px;
	border-bottom: 1px solid var(--panel-light);
	margin-bottom: 28px;
}

nav.site a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
}

nav.site a:hover, nav.site a[aria-current="page"] { color: var(--yellow); }

.langs {
	display: inline-flex;
	gap: 4px;
}

.langs button {
	background: none;
	border: 1px solid var(--panel-light);
	border-radius: 999px;
	color: var(--muted);
	font: inherit;
	font-size: .8rem;
	font-weight: 700;
	padding: 2px 10px;
	cursor: pointer;
}

.langs button:hover { color: var(--white); }

.langs button.on {
	color: var(--bg);
	background: var(--yellow);
	border-color: var(--yellow);
}

h2 {
	font-size: 1.35rem;
	margin: 36px 0 12px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.card {
	background: var(--panel);
	border: 1px solid var(--panel-light);
	border-radius: 18px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.card img.icon {
	width: 92px;
	height: 92px;
	border-radius: 20px;
	align-self: flex-start;
}

.card h3 { margin: 4px 0 0; font-size: 1.15rem; }

.card p { margin: 0; color: var(--muted); }

.badge {
	align-self: flex-start;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--panel-light);
	color: var(--muted);
}

.badge.soon { background: #2A2340; color: var(--orange); }
.badge.live { background: #12372A; color: var(--green); }

.card a.more { color: var(--yellow); text-decoration: none; font-weight: 700; margin-top: auto; }

.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	background: var(--panel);
	border: 1px solid var(--panel-light);
	border-radius: 18px;
	padding: 24px;
}

.hero img.icon { width: 120px; height: 120px; border-radius: 26px; }
.hero div { flex: 1 1 260px; }
.hero h2 { margin: 0 0 6px; font-size: 1.6rem; }
.hero p { margin: 0; color: var(--muted); }

img.feature {
	width: 100%;
	height: auto;
	border-radius: 18px;
	margin: 24px 0;
}

.shots {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin: 20px 0;
}

.shots img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid var(--panel-light);
}

.card img.icon.wide {
	width: 100%;
	height: auto;
	border-radius: 14px;
}

figure { margin: 24px 0; }

img.wide-shot {
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid var(--panel-light);
}

figcaption {
	color: var(--muted);
	font-size: .9rem;
	padding-top: 8px;
}

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

ul.features { padding-left: 20px; }
ul.features li { margin-bottom: 8px; }

footer.site {
	border-top: 1px solid var(--panel-light);
	margin-top: 48px;
	padding: 24px 0 40px;
	color: var(--muted);
	font-size: .9rem;
	text-align: center;
}
