:root {
	color-scheme: dark;
	--ink: #f4efe4;
	--ink-soft: rgba(244, 239, 228, 0.78);
	--black: #070a14;
	--panel: rgba(10, 16, 36, 0.92);
	--panel-alt: rgba(16, 28, 58, 0.96);
	--neon: #ff3d81;
	--cyan: #39d7ff;
	--gold: #ffd166;
	--line: rgba(57, 215, 255, 0.55);
	--line-soft: rgba(57, 215, 255, 0.2);
}

@font-face {
	font-family: "RnR Jost";
	src: url("./media/fonts/Jost-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "RnR Federo";
	src: url("./media/fonts/Federo-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

html, body {
	min-height: 100%;
	margin: 0;
}

body {
	background:
		radial-gradient(ellipse at 20% 0%, rgba(255, 61, 129, 0.18), transparent 45%),
		radial-gradient(ellipse at 90% 10%, rgba(57, 215, 255, 0.16), transparent 50%),
		linear-gradient(180deg, #0a1230 0%, #05070f 100%);
	color: var(--ink);
	font-family: "RnR Federo", "Segoe UI", system-ui, sans-serif;
	letter-spacing: 0.01em;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 100% 3px,
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 40%);
	opacity: 0.35;
	mix-blend-mode: soft-light;
}

a {
	color: inherit;
}

code {
	font-family: ui-monospace, "Cascadia Code", monospace;
	font-size: 0.9em;
	color: var(--cyan);
}

.site-shell {
	width: min(1280px, calc(100vw - 28px));
	margin: 0 auto;
	padding: 28px 0 48px;
}

.hero,
.feature-strip article,
.play-copy,
.playframe-wrap,
.download-section {
	border: 1px solid var(--line-soft);
	background:
		linear-gradient(180deg, rgba(14, 22, 48, 0.94), rgba(6, 10, 22, 0.97)),
		radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 48%);
	box-shadow:
		0 26px 70px rgba(0, 0, 0, 0.45),
		inset 0 0 0 1px rgba(255, 240, 210, 0.03);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 28px;
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 12px;
	pointer-events: none;
	border: 1px solid rgba(255, 61, 129, 0.22);
}

.eyebrow {
	margin: 0 0 10px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--cyan);
}

h1 {
	margin: 0 0 14px;
	font-family: "RnR Jost", "RnR Federo", sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--neon), var(--gold), var(--cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lede {
	margin: 0 0 20px;
	line-height: 1.65;
	color: var(--ink-soft);
	max-width: 46ch;
	font-size: 1.08rem;
}

.hero-actions,
.player-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(8, 14, 32, 0.8);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	cursor: pointer;
	color: var(--ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cta:hover {
	transform: translateY(-2px);
	border-color: var(--neon);
	box-shadow: 0 12px 28px rgba(255, 61, 129, 0.25);
}

.cta.primary {
	background: linear-gradient(90deg, #ff3d81, #ff8a3d);
	border-color: transparent;
	color: #12040a;
}

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

.hero-stats div {
	padding: 12px;
	border: 1px solid var(--line-soft);
	background: rgba(0, 0, 0, 0.25);
}

.hero-stats span {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.hero-stats strong {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink);
}

.hero-visual {
	position: relative;
	z-index: 1;
}

.poster {
	display: block;
	width: 100%;
	border-radius: 12px;
	border: 1px solid var(--line);
	object-fit: cover;
	aspect-ratio: 16 / 11;
	background: #000;
}

.poster-caption {
	margin: 10px 0 0;
	font-size: 0.92rem;
	color: var(--ink-soft);
	text-align: center;
}

.divider {
	text-align: center;
	color: var(--neon);
	margin: 28px 0;
	letter-spacing: 0.4em;
}

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

.feature-strip article {
	padding: 22px;
}

.feature-strip h2 {
	margin: 0 0 10px;
	font-family: "RnR Jost", sans-serif;
	font-size: 1.15rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
}

.feature-strip p {
	margin: 0;
	line-height: 1.6;
	color: var(--ink-soft);
}

.play-section {
	display: grid;
	gap: 18px;
}

.play-copy {
	padding: 22px 24px;
}

.play-copy h2,
.download-section h2 {
	margin: 0 0 10px;
	font-family: "RnR Jost", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.play-copy p,
.download-lede,
.note {
	color: var(--ink-soft);
	line-height: 1.6;
}

.playframe-wrap {
	position: relative;
	padding: 10px;
	min-height: 70vh;
}

.playframe-wrap iframe {
	width: 100%;
	height: min(78vh, 820px);
	border: 0;
	border-radius: 8px;
	background: #000;
	display: block;
}

.playframe-wrap.is-fullscreen {
	position: fixed;
	inset: 0;
	z-index: 50;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #000;
}

.playframe-wrap.is-fullscreen iframe {
	height: 100vh;
	border-radius: 0;
}

.download-section {
	padding: 24px;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0 10px;
}

.download-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px;
	border-radius: 12px;
	border: 1px solid var(--line-soft);
	text-decoration: none;
	background: rgba(0, 0, 0, 0.28);
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.download-card:hover {
	border-color: var(--cyan);
	transform: translateY(-2px);
}

.download-card strong {
	font-family: "RnR Jost", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.download-card span {
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.site-footer {
	margin-top: 36px;
	text-align: center;
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.site-footer a {
	color: var(--cyan);
}

@media (max-width: 900px) {
	.hero,
	.feature-strip,
	.download-grid {
		grid-template-columns: 1fr;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}
}
