:root {
	color-scheme: dark;
	--bg: #090a0d;
	--panel: rgba(20, 22, 29, 0.84);
	--text: #f8f4ef;
	--muted: #b8b0a8;
	--accent: #e8509a;
	--gold: #d7b46a;
	--line: rgba(255, 255, 255, 0.12);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background:
		radial-gradient(circle at 50% 0%, rgba(232, 80, 154, 0.18), transparent 34%),
		linear-gradient(145deg, #090a0d 0%, #11131a 52%, #08080a 100%);
	color: var(--text);
	min-height: 100vh;
}

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

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px clamp(18px, 5vw, 64px);
	border-bottom: 1px solid var(--line);
	background: rgba(9, 10, 13, 0.78);
	backdrop-filter: blur(18px);
}

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

.brand img {
	width: 34px;
	height: 34px;
	border-radius: 8px;
}

nav {
	display: flex;
	gap: 18px;
	color: var(--muted);
	font-size: 14px;
}

nav a,
.footer-links a {
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 8px 12px;
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

nav a:hover,
.footer-links a:hover {
	color: var(--text);
	border-color: rgba(232, 80, 154, 0.45);
	background: rgba(232, 80, 154, 0.12);
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 138px);
	display: grid;
	place-items: center;
	padding: 48px 20px;
}

.hero-content {
	position: relative;
	z-index: 1;
	width: min(820px, 100%);
	text-align: center;
	padding: clamp(18px, 4vw, 42px);
}

.page {
	width: min(760px, 100%);
}

.hero-logo {
	width: clamp(92px, 16vw, 138px);
	height: clamp(92px, 16vw, 138px);
	object-fit: contain;
	border-radius: 26px;
	box-shadow: 0 22px 70px rgba(232, 80, 154, 0.26);
}

.glow {
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	filter: blur(12px);
	opacity: 0.46;
	pointer-events: none;
}

.glow-a {
	left: -120px;
	top: 20%;
	background: radial-gradient(circle, rgba(232, 80, 154, 0.32), transparent 68%);
}

.glow-b {
	right: -120px;
	bottom: 8%;
	background: radial-gradient(circle, rgba(215, 180, 106, 0.24), transparent 68%);
}

.eyebrow {
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
}

h1 {
	font-size: clamp(38px, 8vw, 76px);
	line-height: 1;
	margin: 12px 0 18px;
}

h2 {
	margin-top: 34px;
	font-size: 20px;
}

p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.65;
}

.hero-content p:not(.eyebrow) {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.stores {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.store {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	font-weight: 800;
	min-width: 190px;
	box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
	transition: transform 160ms ease, border-color 160ms ease;
}

.store:hover {
	transform: translateY(-2px);
	border-color: rgba(232, 80, 154, 0.7);
}

.store small {
	display: block;
	color: var(--muted);
	font-size: 11px;
	font-weight: 400;
}

.store-icon {
	color: var(--accent);
	font-size: 22px;
}

.page {
	margin: 0 auto;
	padding: 56px 20px 80px;
}

.page h1 {
	font-size: clamp(34px, 6vw, 56px);
}

.page a {
	color: var(--accent);
}

.legal {
	padding-top: 48px;
}

.lead {
	color: var(--gold);
}

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

.legal ul {
	margin: 12px 0 0;
	padding-left: 22px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
}

.legal li + li {
	margin-top: 7px;
}

.contact-box {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	padding: 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.contact-box p {
	margin: 6px 0;
}

footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 20px clamp(18px, 5vw, 64px);
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
	background: rgba(9, 10, 13, 0.62);
}

footer span {
	display: block;
	color: var(--text);
	font-weight: 700;
}

footer small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.footer-links a {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--line);
}

@media (max-width: 560px) {
	.topbar {
		align-items: flex-start;
		flex-direction: column;
	}

	nav {
		width: 100%;
		justify-content: space-between;
	}

	.store {
		width: 100%;
		justify-content: center;
	}

	footer,
	.footer-links {
		justify-content: flex-start;
	}
}
