/* ==========================================================================
   GAMERANK — corporate site design system
   --------------------------------------------------------------------------
   DESIGN FIRM HANDOFF: everything brand-able lives in the :root token block
   directly below — colors, type, radii, shadows. Replace the tokens (and the
   two Google Fonts families in index.html) and the whole site re-skins.
   ========================================================================== */

:root {
	/* ---- Brand tokens (replace me) ---- */
	--bg: #060a13;
	--bg-alt: #0a101f;
	--surface: #0e1628;
	--surface-2: #131e35;
	--line: rgb(255 255 255 / 0.08);
	--line-strong: rgb(255 255 255 / 0.16);

	--ink: #f4f6fb;
	--muted: #97a3ba;
	--faint: #5d6b84;

	--gold: #f5b93c;
	--gold-hi: #ffd97a;
	--gold-deep: #b57e1e;
	--on-gold: #1a1204;

	--font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, sans-serif;

	--radius: 18px;
	--radius-lg: 26px;

	--shadow-card: 0 18px 50px -18px rgb(0 0 0 / 0.65);
	--glow-gold: 0 0 0 1px rgb(245 185 60 / 0.35), 0 12px 44px -10px rgb(245 185 60 / 0.35);

	/* ---- Layout ---- */
	--container: 1180px;
	--gutter: clamp(20px, 4vw, 48px);
	--nav-h: 68px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

code {
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 0.85em;
	color: var(--gold-hi);
}

::selection {
	background: var(--gold);
	color: var(--on-gold);
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--gold);
	color: var(--on-gold);
	font-weight: 600;
	border-radius: 8px;
	transition: top 0.2s;
}
.skip-link:focus {
	top: 12px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* ---------- Shared type ---------- */
.eyebrow {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold);
}

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

.section {
	padding-block: clamp(88px, 12vw, 150px);
}

.section-alt {
	background:
		radial-gradient(60% 50% at 50% 0%, rgb(245 185 60 / 0.05), transparent 70%),
		var(--bg-alt);
	border-block: 1px solid var(--line);
}

.section-head {
	max-width: 640px;
	margin-bottom: clamp(44px, 6vw, 72px);
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(34px, 5.4vw, 58px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.02em;
	text-wrap: balance;
	margin-top: 14px;
}

.section-sub {
	margin-top: 18px;
	color: var(--muted);
	font-size: clamp(15px, 1.6vw, 17.5px);
	max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 28px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.4), box-shadow 0.25s, background 0.25s, border-color 0.25s;
	will-change: transform;
}

.btn-gold {
	background: linear-gradient(160deg, var(--gold-hi), var(--gold) 45%, var(--gold-deep));
	color: var(--on-gold);
	box-shadow: 0 10px 32px -10px rgb(245 185 60 / 0.55);
}
.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 42px -10px rgb(245 185 60 / 0.7);
}

.btn-ghost {
	border-color: var(--line-strong);
	color: var(--ink);
	background: rgb(255 255 255 / 0.03);
	backdrop-filter: blur(8px);
}
.btn-ghost:hover {
	transform: translateY(-2px);
	border-color: rgb(245 185 60 / 0.5);
	background: rgb(245 185 60 / 0.07);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13.5px;
}

/* ---------- Nav ---------- */
.nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--nav-h);
	transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
	border-bottom: 1px solid transparent;
}
.nav.scrolled {
	background: rgb(6 10 19 / 0.78);
	backdrop-filter: blur(18px) saturate(1.4);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	border-bottom-color: var(--line);
}

.nav-inner {
	max-width: var(--container);
	height: 100%;
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.nav-mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: linear-gradient(160deg, var(--gold-hi), var(--gold) 45%, var(--gold-deep));
	color: var(--on-gold);
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 18px -6px rgb(245 185 60 / 0.6);
}

.nav-word {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.nav-links {
	display: flex;
	gap: 6px;
	margin-left: auto;
}
.nav-links a {
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
	color: var(--ink);
	background: rgb(255 255 255 / 0.06);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-links + .nav-actions {
	margin-left: 0;
}
@media (min-width: 861px) {
	.nav-actions {
		margin-left: 12px;
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: rgb(255 255 255 / 0.04);
	border: 1px solid var(--line);
	border-radius: 12px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}
	.nav-links {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 2px;
		padding: 14px var(--gutter) 20px;
		background: rgb(6 10 19 / 0.96);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--line);
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s, opacity 0.3s;
	}
	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav-links a {
		padding: 13px 16px;
		font-size: 16px;
	}
	.nav-actions .btn {
		display: none;
	}
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

#fx {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

/* Fallback when WebGL is unavailable: static brand gradient */
.hero.no-webgl {
	background:
		radial-gradient(70% 60% at 20% 20%, rgb(245 185 60 / 0.14), transparent 65%),
		radial-gradient(60% 55% at 80% 30%, rgb(66 103 245 / 0.12), transparent 60%),
		radial-gradient(80% 70% at 50% 90%, rgb(20 32 62 / 0.9), transparent 75%),
		var(--bg);
}

.hero-veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 65% at 50% 45%, transparent 30%, rgb(6 10 19 / 0.72) 100%),
		linear-gradient(to bottom, rgb(6 10 19 / 0.35), transparent 30%, transparent 62%, var(--bg) 98%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: calc(var(--nav-h) + 40px) var(--gutter) 80px;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(52px, 9.6vw, 118px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.035em;
	text-wrap: balance;
	margin-top: 22px;
	background: linear-gradient(180deg, #ffffff 30%, #b9c4d9 90%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-title .gold-dot {
	background: linear-gradient(160deg, var(--gold-hi), var(--gold-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-sub {
	margin: 26px auto 0;
	max-width: 560px;
	color: var(--muted);
	font-size: clamp(16px, 2vw, 19px);
	text-wrap: balance;
}

.hero-ctas {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.hero-cue {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	padding: 10px;
}
.hero-cue-line {
	display: block;
	width: 1px;
	height: 52px;
	background: linear-gradient(to bottom, transparent, var(--gold));
	animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
	0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Win-target marquee ---------- */
.strip {
	border-block: 1px solid var(--line);
	background: var(--bg-alt);
	overflow: hidden;
	padding-block: 16px;
}
.strip-track {
	display: flex;
	align-items: center;
	gap: 34px;
	width: max-content;
	animation: strip 36s linear infinite;
}
.strip-track span {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--faint);
	white-space: nowrap;
}
.strip-track i {
	font-style: normal;
	font-size: 8px;
	color: rgb(245 185 60 / 0.5);
}
@keyframes strip {
	to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats {
	padding-block: clamp(56px, 8vw, 96px);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.stat {
	text-align: center;
	padding: 30px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgb(255 255 255 / 0.025), transparent);
}
.stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(38px, 5vw, 56px);
	font-weight: 700;
	letter-spacing: -0.03em;
	background: linear-gradient(160deg, var(--gold-hi), var(--gold) 55%, var(--gold-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-variant-numeric: tabular-nums;
}
.stat-label {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
@media (max-width: 760px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Featured game ---------- */
.game-feature {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 340px) 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	padding: clamp(28px, 4vw, 52px);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(80% 120% at 8% 20%, rgb(245 185 60 / 0.13), transparent 60%),
		linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}
.game-feature::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg, rgb(245 185 60 / 0.55), transparent 30%, transparent 70%, rgb(245 185 60 / 0.3));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.game-feature:hover {
	transform: translateY(-4px);
	border-color: rgb(245 185 60 / 0.4);
	box-shadow: var(--shadow-card), var(--glow-gold);
}

.game-feature-art img {
	width: 100%;
	max-width: 320px;
	margin-inline: auto;
	border-radius: 22%;
	filter: drop-shadow(0 22px 44px rgb(0 0 0 / 0.55));
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.game-feature:hover .game-feature-art img {
	transform: scale(1.04) rotate(-1.5deg);
}

.game-flag {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgb(245 185 60 / 0.12);
	border: 1px solid rgb(245 185 60 / 0.35);
	color: var(--gold-hi);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.game-feature-copy h3 {
	font-family: var(--font-display);
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-top: 16px;
}
.game-sport {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}
.game-desc {
	margin-top: 16px;
	color: var(--muted);
	max-width: 52ch;
}
.game-play {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	color: var(--gold-hi);
}
.game-play svg {
	transition: transform 0.25s;
}
.game-feature:hover .game-play svg {
	transform: translateX(4px);
}
@media (max-width: 780px) {
	.game-feature {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.game-desc {
		margin-inline: auto;
	}
}

/* ---------- Games grid ---------- */
.games-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
	gap: 20px;
}

.game-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px;
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
/* Cursor spotlight (position set from JS) */
.game-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgb(245 185 60 / 0.09), transparent 65%);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
.game-card:hover {
	transform: translateY(-5px);
	border-color: rgb(245 185 60 / 0.35);
	box-shadow: var(--shadow-card);
}
.game-card:hover::after {
	opacity: 1;
}

.game-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}
.game-card img {
	width: 64px;
	height: 64px;
	border-radius: 22%;
	filter: drop-shadow(0 10px 20px rgb(0 0 0 / 0.5));
}
.game-target {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgb(245 185 60 / 0.3);
	background: rgb(245 185 60 / 0.08);
	color: var(--gold-hi);
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	white-space: nowrap;
}
.game-card h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-top: 18px;
}
.game-card .game-sport {
	margin-top: 3px;
	font-size: 11.5px;
	letter-spacing: 0.16em;
}
.game-card .game-desc {
	margin-top: 12px;
	font-size: 14px;
	flex: 1;
}
.game-card .game-play {
	margin-top: 18px;
	font-size: 13.5px;
}
.game-card:hover .game-play svg {
	transform: translateX(4px);
}

/* ---------- Pillars ---------- */
.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.pillar {
	padding: 32px 28px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgb(255 255 255 / 0.025), transparent);
	transition: transform 0.3s, border-color 0.3s;
}
.pillar:hover {
	transform: translateY(-4px);
	border-color: rgb(245 185 60 / 0.3);
}
.pillar-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: rgb(245 185 60 / 0.1);
	border: 1px solid rgb(245 185 60 / 0.28);
	color: var(--gold-hi);
}
.pillar h3 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
}
.pillar p {
	margin-top: 10px;
	color: var(--muted);
	font-size: 14.5px;
}
@media (max-width: 860px) {
	.pillars {
		grid-template-columns: 1fr;
	}
}

/* ---------- Press ---------- */
.press-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 20px;
}
.press-boiler,
.press-facts {
	padding: clamp(26px, 3.4vw, 40px);
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.press-boiler h3,
.press-facts h3 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}
.press-boiler p {
	color: var(--muted);
	font-size: 15px;
}
.press-boiler p + p {
	margin-top: 14px;
}
.press-note {
	padding-top: 14px;
	border-top: 1px dashed var(--line-strong);
	font-size: 13px !important;
	color: var(--faint) !important;
}

.press-facts dl {
	display: flex;
	flex-direction: column;
}
.press-facts dl > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding-block: 10px;
	border-bottom: 1px solid var(--line);
}
.press-facts dl > div:last-child {
	border-bottom: 0;
}
.press-facts dt {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--faint);
	white-space: nowrap;
}
.press-facts dd {
	font-size: 14px;
	font-weight: 500;
	text-align: right;
}
.press-facts a {
	color: var(--gold-hi);
}
.press-facts a:hover {
	text-decoration: underline;
}
@media (max-width: 860px) {
	.press-grid {
		grid-template-columns: 1fr;
	}
}

.press-assets-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	margin: 44px 0 18px;
}
.press-assets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.asset-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 18px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	transition: transform 0.3s, border-color 0.3s;
}
.asset-card:hover {
	transform: translateY(-4px);
	border-color: rgb(245 185 60 / 0.35);
}
.asset-card img {
	width: 84px;
	height: 84px;
	object-fit: contain;
	border-radius: 20%;
}
.asset-swatch {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	border-radius: 20%;
	background: rgb(245 185 60 / 0.1);
	border: 1px solid rgb(245 185 60 / 0.28);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	color: var(--gold-hi);
}
.asset-swatch-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}
.asset-swatch-icons img {
	width: 38px;
	height: 38px;
	margin-inline: -6px;
}
.asset-name {
	margin-top: 16px;
	font-weight: 600;
	font-size: 14.5px;
}
.asset-meta {
	margin-top: 4px;
	font-size: 12px;
	color: var(--faint);
}
@media (max-width: 900px) {
	.press-assets {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.contact-card {
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
	transform: translateY(-4px);
	border-color: rgb(245 185 60 / 0.4);
	box-shadow: var(--shadow-card);
}
.contact-card h3 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
}
.contact-card p {
	margin-top: 10px;
	color: var(--muted);
	font-size: 14.5px;
	flex: 1;
}
.contact-cta {
	margin-top: 22px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--gold-hi);
}
@media (max-width: 860px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Footer ---------- */
.footer {
	border-top: 1px solid var(--line);
	background: var(--bg-alt);
	padding-block: 52px 34px;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
}
.footer-word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
}
.footer-tag {
	font-size: 12.5px;
	color: var(--faint);
}
.footer-links {
	display: flex;
	align-items: center;
	gap: 22px;
}
.footer-links a {
	font-size: 14px;
	color: var(--muted);
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--gold-hi);
}
.footer-legal {
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-legal p {
	font-size: 12px;
	color: var(--faint);
	max-width: 88ch;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
	transition-delay: var(--reveal-delay, 0s);
}
.reveal.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.strip-track {
		animation: none;
	}
	.hero-cue-line {
		animation: none;
	}
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
