/* BA-POW! — Design System, Header + Hero
   Fonts: Bungee (display), Space Grotesk (body), Space Mono (mono).
   Built against design.md (§4–§13, §20–§25) and the approved wireframe. */
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;500;700&display=swap');

:root {
	/* Brand palette — Art 1 (Stylized Summer Nostalgia) */
	--color-primary: #F26A2E;
	--color-secondary: #1496A7;
	--color-neutral: #F3E9D4;
	--color-ink: #171717;
	--color-white: #FFFFFF;
	--color-sun: #E6B83F;
	--color-danger: #D94B3D;

	/* Surfaces */
	--bg: var(--color-neutral);
	--text: var(--color-ink);
	--muted: #5a5a4e;

	/* Typography */
	--font-display: 'Bungee', Impact, 'Arial Black', sans-serif;
	--font-body: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;

	/* Spacing — 4px base scale */
	--space-xs: 4px;
	--space-sm: 8px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 48px;
	--space-3xl: 64px;

	--radius: 6px;
	--radius-lg: 12px;

	--max-width: 1600px;
	--content-padding: clamp(24px, 5vw, 80px);
	--header-h: 88px;

	/* §7 Hero text contrast layer — soft gradient, never a panel */
	--hero-gradient: linear-gradient(
		90deg,
		rgba(10,10,10,.88) 0%,
		rgba(10,10,10,.68) 25%,
		rgba(10,10,10,.25) 42%,
		rgba(10,10,10,0) 58%
	);
	--hero-gradient-mobile: linear-gradient(
		180deg,
		rgba(10,10,10,.90) 0%,
		rgba(10,10,10,.72) 38%,
		rgba(10,10,10,.35) 62%,
		rgba(10,10,10,.10) 82%
	);

	--focus-ring: 0 0 0 3px rgba(242,106,46,.55);
	--ease-snap: cubic-bezier(.2,.9,.3,1.2);
}

/* ═══════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[x-cloak] { display: none !important; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--text);
	font: 16px/1.6 var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-md);
	z-index: 9999;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-primary);
	color: var(--color-white);
	font: 600 14px/1 var(--font-body);
	text-decoration: none;
	border-radius: var(--radius);
	transition: top .2s;
}
.skip-link:focus { top: var(--space-md); outline: none; box-shadow: var(--focus-ring); }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius); }

/* ═══════════════════════════════════════════
   HEADER — §13. Overlays the hero, no chrome until scrolled.
   ═══════════════════════════════════════════ */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: var(--space-lg);
	padding: var(--space-md) var(--content-padding);
	background: transparent;
	transition: background .3s, box-shadow .3s, backdrop-filter .3s, padding .3s;
}
.site-header.scrolled {
	background: rgba(14, 12, 10, 0.92);
	box-shadow: 0 2px 24px rgba(0,0,0,.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding-top: var(--space-sm);
	padding-bottom: var(--space-sm);
}

/* Logo lockup: wordmark + VR RC COMBAT ribbon (§22 sticker language) */
.header-logo {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	text-decoration: none;
	line-height: 1;
	transition: transform .3s var(--ease-snap);
	transform-origin: left top;
}
.header-logo:hover { transform: scale(1.03) rotate(-1deg); }
.site-header.scrolled .header-logo { transform: scale(.72); }
.site-header.scrolled .header-logo:hover { transform: scale(.75) rotate(-1deg); }

.header-logo-mark {
	font: 400 clamp(34px, 3.4vw, 52px)/1 var(--font-display);
	color: var(--color-white);
	letter-spacing: .01em;
	transform: rotate(-3deg);
	text-shadow:
		3px 3px 0 var(--color-danger),
		6px 6px 0 rgba(0,0,0,.55),
		0 10px 26px rgba(0,0,0,.55);
}
.header-logo-tag {
	font: 700 10px/1 var(--font-body);
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--color-ink);
	padding: 5px 10px;
	margin-left: 18px;
	transform: rotate(-3deg);
	border: 1px solid rgba(255,255,255,.18);
}

/* Center navigation */
.header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2vw, 34px);
	padding-top: 10px;
}
.header-nav a {
	position: relative;
	font: 700 13px/1 var(--font-body);
	color: rgba(255,255,255,.88);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 12px 2px;
	text-shadow: 0 2px 8px rgba(0,0,0,.6);
	transition: color .2s;
	white-space: nowrap;
}
.header-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 6px;
	height: 2px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s var(--ease-snap);
}
.header-nav a:hover { color: var(--color-white); }
.header-nav a:hover::after { transform: scaleX(1); }

/* Right actions — Wishlist / Pre-Sale / Invest (§13, §14) */
.header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--space-sm);
	padding-top: 6px;
}
.header-actions { display: flex; align-items: center; gap: var(--space-sm); }

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	padding: 9px 16px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font: 700 12px/1 var(--font-body);
	color: var(--color-white);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .08em;
	white-space: nowrap;
	transition: background .2s, transform .15s var(--ease-snap), border-color .2s;
}
.header-cta svg { width: 15px; height: 15px; flex: none; }
.header-cta:hover { transform: translateY(-2px); }

.header-cta--ghost {
	border-color: rgba(255,255,255,.35);
	background: rgba(10,10,10,.35);
	backdrop-filter: blur(4px);
}
.header-cta--ghost:hover { background: rgba(10,10,10,.6); border-color: var(--color-white); }
.header-cta--primary { background: var(--color-primary); box-shadow: 0 4px 14px rgba(242,106,46,.35); }
.header-cta--primary:hover { background: #d95a22; }
.header-cta--invest { background: var(--color-secondary); box-shadow: 0 4px 14px rgba(20,150,167,.3); }
.header-cta--invest:hover { background: #10808e; }

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font: 700 11px/1 var(--font-mono);
}
.lang-switch a {
	color: rgba(255,255,255,.55);
	text-decoration: none;
	padding: 6px 3px;
	transition: color .2s;
}
.lang-switch a:hover, .lang-switch a[aria-current="true"] { color: var(--color-white); }
.lang-switch .sep { color: rgba(255,255,255,.3); }

.hamburger {
	display: none;
	background: rgba(10,10,10,.5);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--radius);
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}
.hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-white);
	border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HERO — §6 split composition, §12 first-viewport rule.
   Layers, bottom to top: background art → gradient → RC vehicle
   → torn bottom edge → copy.
   ═══════════════════════════════════════════ */

.hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(682px, 96.8vh, 1078px);
	display: flex;
	align-items: stretch;
	overflow: hidden;
	background: #0b0a09;
	/* Scroll progress through the hero, 0 → 1. Set by the parallax script;
	   stays 0 when it never runs, so every layer renders at rest. */
	--sy: 0;
}

/* Background art — three directions crossfading in place (§11) */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% 60%;
	opacity: 0;
	transition: opacity 350ms ease;
	/* Overscaled so the parallax drift never exposes an edge. */
	transform: translate3d(0, calc(var(--sy) * 70px), 0) scale(1.12);
	will-change: opacity, transform;
}
.hero-bg img.is-active { opacity: 1; }

.hero-gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--hero-gradient);
	pointer-events: none;
}
/* Extra grounding at the very bottom so the torn edge reads as ground */
.hero-gradient::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 32%;
	background: linear-gradient(180deg, transparent, rgba(10,10,10,.45));
}

/* Dominant RC vehicle — §6 visual priority 1.
   Negative index so it paints behind the headline and the controls: it lives
   inside .hero-inner's stacking context, so this only drops it below that
   block's own text, never behind the environment art or the gradient. */
.hero-vehicle {
	position: absolute;
	z-index: -1;
	right: clamp(-40px, -1vw, 0px);
	bottom: 6%;
	width: clamp(420px, 46vw, 880px);
	pointer-events: none;
	filter: drop-shadow(-18px 26px 34px rgba(0,0,0,.55));
	/* Pulled left off the right edge; the idle keyframes carry the same offset
	   so the animation does not reset it. */
	--vehicle-x: -20%;
	/* Sinks as the page scrolls: it drops faster than the background lags, so
	   the vehicle settles down behind the dirt mound instead of riding up. */
	transform: translate3d(var(--vehicle-x), calc(var(--sy) * 90px), 0);
	will-change: transform;
}
/* The idle bob lives on the images, not the container, so it does not fight
   the container's parallax transform. */
.hero-vehicle img {
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity 350ms ease;
	animation: hero-idle 6s ease-in-out infinite;
}
.hero-vehicle img.is-active { opacity: 1; }
.hero-vehicle img:not(.is-active) { position: absolute; inset: 0; }

@keyframes hero-idle {
	0%, 100% { transform: translateX(var(--vehicle-x)) translateY(0) rotate(0deg); }
	50%      { transform: translateX(var(--vehicle-x)) translateY(-10px) rotate(-.6deg); }
}

/* Torn bottom edge — always pinned to the hero's bottom */
.hero-edge {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 6;
	pointer-events: none;
	line-height: 0;
}
.hero-edge img {
	width: 100%;
	/* Drawn at natural scale: the top half of the source is transparent, so
	   scaling it would flatten the mound into a hard horizontal seam.
	   The source also carries 64px of empty rows under the dirt (64/2172 of its
	   width); pulling that back puts the lowest dirt pixel exactly on the hero's
	   bottom edge. A percentage margin resolves against .hero-edge's width,
	   which is the image's width, so it holds at any viewport. */
	height: auto;
	margin-bottom: -2.95%;
}

/* Content grid — §6: ~38% copy / ~62% artwork */
.hero-inner {
	/* Static so .hero stays the containing block for the absolutely positioned
	   vehicle, which now lives inside .hero-content. As a flex item it can still
	   carry a z-index. */
	position: static;
	z-index: 5;
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: calc(var(--header-h) + var(--space-xl)) var(--content-padding) clamp(110px, 16vh, 210px);
	display: grid;
	grid-template-columns: minmax(0, 38%) minmax(0, 62%);
	align-items: center;
}

.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-lg); min-width: 0; max-width: 100%; }

/* §5 Hero display type */
.hero-headline {
	font: 400 clamp(2.4rem, 4.1vw, 5.4rem)/0.92 var(--font-display);
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin: 0;
}
.hero-headline span { display: block; }
.hero-headline-white {
	color: var(--color-white);
	text-shadow: 0 4px 22px rgba(0,0,0,.7), 0 1px 0 rgba(0,0,0,.9);
}
.hero-headline-accent {
	color: var(--color-sun);
	text-shadow: 0 4px 22px rgba(0,0,0,.7), 0 1px 0 rgba(0,0,0,.9);
}

@media (min-width: 768px) {
	.hero-headline span { white-space: nowrap; }
}

/* Player count — §4 mono for game data */
.hero-player-count {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font: 700 clamp(13px, 1.1vw, 15px)/1 var(--font-mono);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: .08em;
	text-shadow: 0 2px 10px rgba(0,0,0,.7);
	margin-top: calc(var(--space-sm) * -1);
}
.hero-player-count svg { width: 16px; height: 16px; fill: var(--color-sun); flex: none; }

/* Four gameplay indicators — icons carry meaning (§8) */
.hero-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-md);
	width: 100%;
}
.hero-feature {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-sm);
}
.hero-feature-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--color-sun);
}
.hero-feature-icon svg { width: 100%; height: 100%; }
.hero-feature-text {
	font: 700 11px/1.25 var(--font-body);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: .05em;
	text-shadow: 0 2px 8px rgba(0,0,0,.8);
	text-wrap: balance;
}

/* §9 Primary CTA */
.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 34px;
	border-radius: var(--radius);
	background: var(--color-primary);
	color: var(--color-white);
	font: 400 clamp(16px, 1.4vw, 20px)/1 var(--font-display);
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .02em;
	box-shadow: 0 8px 24px rgba(0,0,0,.45), inset 0 -3px 0 rgba(0,0,0,.25);
	transition: transform .18s var(--ease-snap), background .2s;
}
.hero-cta svg { width: 18px; height: 18px; }
.hero-cta:hover { background: #ff7c3c; transform: translateY(-2px) scale(1.02); }
.hero-cta:active { transform: translateY(1px) scale(.99); }

.hero-platforms-text {
	font: 600 12px/1 var(--font-body);
	color: rgba(255,255,255,.8);
	text-transform: uppercase;
	letter-spacing: .1em;
	text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

/* §11 Art switch + §10 platform badges — visible without scrolling */
.hero-bottom-row {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: var(--space-lg);
}
.hero-art-switch { display: flex; flex-direction: column; gap: var(--space-sm); }
.hero-art-switch-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font: 700 11px/1 var(--font-body);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: .12em;
	text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.hero-art-switch-label svg { width: 14px; height: 14px; opacity: .7; }
.hero-art-switch-options { display: flex; gap: 6px; }

.art-option {
	min-height: 40px;
	padding: 10px 18px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: var(--radius);
	background: rgba(12,12,12,.55);
	color: rgba(255,255,255,.82);
	font: 700 12px/1 var(--font-body);
	text-transform: uppercase;
	letter-spacing: .08em;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background .25s, color .25s, border-color .25s, transform .18s var(--ease-snap);
}
.art-option:hover { color: var(--color-white); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }
.art-option.active {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-white);
	box-shadow: 0 4px 16px rgba(20,150,167,.4);
}

.hero-platforms { display: flex; align-items: center; gap: var(--space-lg); padding-bottom: 10px; }
.platform-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font: 600 12px/1 var(--font-body);
	color: rgba(255,255,255,.9);
	text-transform: uppercase;
	letter-spacing: .08em;
	text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.platform-badge img { width: 22px; height: 22px; object-fit: contain; }

/* Badge whose logo already contains the wordmark: no text beside it, so the
   asset gets the full height of the row instead of an icon-sized box. */
.platform-badge--logo img {
	width: auto;
	height: 19px;
	max-width: none;
}
/* ═══════════════════════════════════════════
   VOTING SECTION — Choose Your Art Style
   ═══════════════════════════════════════════ */

.section-vote {
	padding: var(--space-2xl) var(--content-padding) var(--space-xl);
	text-align: center;
	position: relative;
	z-index: 10;
	background: transparent;
	max-width: var(--max-width);
	margin: 0 auto;
}

.section-vote-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.vote-lightning {
	width: 24px;
	height: 24px;
	fill: var(--color-primary);
}
.section-vote h2 {
	font: 700 clamp(28px, 3vw, 48px)/1 var(--font-display);
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}
.vote-subtitle {
	font: 400 14px/1.5 var(--font-body);
	color: rgba(255,255,255,.6);
	margin-top: 8px;
}

/* Vote cards — 3 columns */
.vote-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: var(--space-xl);
}

.vote-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 12px;
	padding: 16px;
	text-align: left;
	transition: border-color .25s, box-shadow .25s;
}
.vote-card--active {
	border-color: var(--color-primary);
	box-shadow: 0 0 20px rgba(242,106,46,.15);
}

.vote-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.vote-card-label {
	font: 700 12px/1 var(--font-body);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Toggle switch */
.vote-card-toggle {
	width: 36px;
	height: 20px;
	border-radius: 10px;
	background: rgba(255,255,255,.15);
	border: none;
	cursor: pointer;
	position: relative;
	transition: background .25s;
	padding: 0;
}
.vote-card-toggle.active {
	background: var(--color-primary);
}
.vote-card-toggle-dot {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-white);
	transition: transform .25s;
}
.vote-card-toggle.active .vote-card-toggle-dot {
	transform: translateX(16px);
}

.vote-card-preview {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 12px;
	aspect-ratio: 16/9;
}
.vote-card-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vote-card-title {
	font: 700 16px/1.2 var(--font-body);
	color: var(--color-white);
	text-transform: uppercase;
	margin: 0 0 8px;
}
.vote-card-desc {
	font: 400 12px/1.5 var(--font-body);
	color: rgba(255,255,255,.6);
	margin: 0 0 16px;
}

.vote-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.vote-btn {
	padding: 8px 20px;
	font: 700 11px/1 var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	color: var(--color-white);
	min-height: 36px;
	transition: opacity .2s;
}
.vote-btn:hover { opacity: 0.85; }
.vote-btn--art1 { background: var(--color-primary); }
.vote-btn--art2 { background: #78A953; }
.vote-btn--art3 { background: #D93632; }

.vote-count {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font: 500 12px/1 var(--font-mono);
	color: rgba(255,255,255,.5);
}
.vote-count svg { width: 14px; height: 14px; }

.vote-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font: 500 11px/1 var(--font-body);
	color: rgba(255,255,255,.4);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: var(--space-xl);
}


/* The voting block above still uses light-on-dark card styling, so it needs a
   dark surface under it. Unchanged otherwise — that section is a separate task. */
.section-vote { background: #16130f; max-width: none; padding-inline: var(--content-padding); }
.section-vote > * { max-width: var(--max-width); margin-inline: auto; }

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ═══════════════════════════════════════════
   TABLET — 768–1279px (§25)
   ═══════════════════════════════════════════ */

@media (max-width: 1279px) {
	:root { --header-h: 76px; }

	/* Nav collapses; the logo and conversion actions stay */
	.header-nav { display: none; }
	.site-header { display: flex; align-items: center; justify-content: space-between; }
	.hamburger { display: flex; }

	.hero-inner { grid-template-columns: minmax(0, 52%) minmax(0, 48%); }
	.hero-vehicle { width: clamp(380px, 52vw, 640px); bottom: 4%; }
	.hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md) var(--space-lg); }
	.hero-feature { flex-direction: row; text-align: left; align-items: center; }
	.hero-feature-icon { width: 28px; height: 28px; }
	.vote-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ═══════════════════════════════════════════
   MOBILE — < 768px (§25: re-composed, not shrunk)
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
	.site-header { display: flex; padding: var(--space-sm) var(--space-md); align-items: center; justify-content: space-between; gap: var(--space-sm); }
	.header-logo-mark { font-size: 30px; }
	.header-logo-tag { font-size: 8px; letter-spacing: .2em; margin-left: 10px; }
	.header-right { flex-direction: row; align-items: center; gap: var(--space-sm); }
	.header-cta, .lang-switch { display: none; }
	.header-cta--primary { display: inline-flex; padding: 8px 12px; font-size: 11px; }
	.hamburger { display: flex; }

	.hero { min-height: auto; }
	.hero-bg img { object-position: 66% 55%; }
	.hero-gradient { background: var(--hero-gradient-mobile); }

	.hero-inner {
		grid-template-columns: 1fr;
		padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) clamp(90px, 22vw, 150px);
	}

	.hero-content { gap: var(--space-md); align-items: center; text-align: center; }
	.hero-headline { font-size: clamp(1.9rem, 9.5vw, 3rem); }

	/* Artwork gets its own band under the headline instead of a side column */
	.hero-vehicle {
		position: relative;
		right: auto; bottom: auto;
		width: min(112%, 420px);
		max-width: calc(100% + var(--space-lg));
		transform: none;
		will-change: auto;
		/* No `auto` side margins: the artwork is deliberately wider than the
		   column, and auto margins collapse to 0 on an overflowing flex item —
		   which pins it left. align-self does centre it, overflow included. */
		align-self: center;
		margin: calc(var(--space-md) * -1) 0 calc(var(--space-lg) * -1);
		/* The idle keyframes carry the desktop horizontal offset; zero it here
		   or the image sits 20% left of its centred container. */
		--vehicle-x: 0px;
	}
	.hero-vehicle img { animation: none; }
	.hero-vehicle img:not(.is-active) { display: none; }

	.hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); }
	.hero-feature { flex-direction: column; text-align: center; }
	.hero-feature-text { font-size: 10px; }
	.hero-cta-group { align-items: center; width: 100%; }
	.hero-cta { width: 100%; justify-content: center; }
	.hero-bottom-row { flex-direction: column; align-items: center; gap: var(--space-md); }
	.hero-art-switch { align-items: center; }
	.hero-platforms { padding-bottom: 0; }

	/* Without this the three-column card grid sets the page's min width and
	   pushes the hero out of the viewport. */
	.vote-cards { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION — §28
   ═══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.hero-vehicle img { animation: none; }
}
