/* ── TOKENS ───────────────────────────────────────────── */
:root {
	--red:       #c8102e;
	--red-dim:   rgba(200,16,46,0.15);
	--red-border:rgba(200,16,46,0.3);
	--green:	#10c819;
	--gold:      #ffa41c;
	--gold-dim:  rgba(255,164,28,0.15);
	--gold-border:rgba(255,164,28,0.3);
	--dark:      #080808;
	--studio-bg: #0d0505;
	--iw-bg:     #020a12;
	--text:      #e0d4c0;
	--text-dim:  rgba(224,212,192,0.75);
	--font-hud:  'Orbitron', monospace;
	--font-mono: 'Share Tech Mono', monospace;
	--font-body: 'DM Sans', sans-serif;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }

body {
	background: var(--dark);
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 300;
	overflow-x: hidden;
	line-height: 1.7;
}

/* CRT scanline overlay */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent, transparent 3px,
		rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
	);
	pointer-events: none;
	z-index: 9999;
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 500;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(8,2,2,0.94);
	border-bottom: 1px solid var(--red-border);
	backdrop-filter: blur(10px);
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-logo img {
	height: 26px;
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.nav-links a {
	font-family: var(--font-mono);
	font-size: 1rem;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s;
	position: relative;
	padding-bottom: 2px;
}

.nav-links a:hover { color: rgba(255,255,255,0.9); }

.nav-links a.active {
	color: #fff;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 0; right: 0;
	height: 1px;
	background: var(--red);
}

.nav-signal {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.4);
	display: flex;
	align-items: center;
	gap: 7px;
}

.dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 6px var(--green);
	animation: blink 3s step-end infinite;
}

@keyframes blink {
	0%,89%,100% { opacity:1 }
	90%          { opacity:0 }
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
	background: rgba(8,2,2,0.98);
	border-top: 1px solid var(--red-border);
	padding: 32px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
	overflow: hidden;
}

footer::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-65deg,
		transparent 0, transparent 14px,
		rgba(200,16,46,0.06) 14px, rgba(200,16,46,0.06) 16px
	);
	pointer-events: none;
}

.footer-brand img {
	height: 20px;
	object-fit: contain;
	opacity: 0.65;
	filter: grayscale(0.2);
}

.footer-meta {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 6px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.social {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255,255,255,0.5);
	border: 1px solid rgba(200,16,46,0.35);
	padding: 6px 14px;
	clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
	transition: color 0.2s, border-color 0.2s;
}

.social:hover {
	color: #fff;
	border-color: var(--red);
}

.footer-signal {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.55);
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1;
}


/* ══════════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════════ */

/* ── STRIPE MOTIF (from logo) ─────────────────────────── */
.stripes {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.stripes s {
	display: block;
	height: 3px;
	background: var(--red);
	transform: skewX(-20deg);
	text-decoration: none;
}

/* ── HERO — Studio zone ───────────────────────────────── */
#top {
	min-height: 100vh;
	background:
		radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200,16,46,0.07) 0%, transparent 70%),
		var(--studio-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 24px 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* big watermark number */
.hero-watermark {
	position: absolute;
	font-family: var(--font-hud);
	font-size: clamp(100px, 22vw, 260px);
	font-weight: 900;
	color: rgba(200,16,46,0.035);
	letter-spacing: -0.03em;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	top: 50%;
	transform: translateY(-50%);
}

/* corner stripe accents */
.corner-stripes {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0.75;
}

.corner-stripes.tr { top: 72px; right: 40px; align-items: flex-end; }
.corner-stripes.bl { bottom: 48px; left: 40px; }

.corner-stripes s {
	display: block;
	height: 3px;
	background: var(--red);
	transform: skewX(-20deg);
	text-decoration: none;
}

.corner-stripes.tr s:nth-child(1) { width: 56px; }
.corner-stripes.tr s:nth-child(2) { width: 40px; }
.corner-stripes.tr s:nth-child(3) { width: 26px; }
.corner-stripes.tr s:nth-child(4) { width: 14px; }
.corner-stripes.bl s:nth-child(1) { width: 14px; }
.corner-stripes.bl s:nth-child(2) { width: 26px; }
.corner-stripes.bl s:nth-child(3) { width: 40px; }
.corner-stripes.bl s:nth-child(4) { width: 56px; }

/* boot terminal */
.terminal {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: rgba(200,16,46,0.8);
	letter-spacing: 0.07em;
	line-height: 2;
	text-align: left;
	width: 310px;
	margin-bottom: 44px;
	position: relative;
	z-index: 1;
}

.tline {
	opacity: 0;
	animation: appear 0.05s ease forwards;
}
.tline:nth-child(1) { animation-delay: 0.3s; }
.tline:nth-child(2) { animation-delay: 0.9s; }
.tline:nth-child(3) { animation-delay: 1.5s; }
.tline:nth-child(4) { animation-delay: 2.1s; }
.tline:nth-child(5) { animation-delay: 2.7s; }
.tline:nth-child(6) { animation-delay: 3.2s; color: rgba(255,255,255,0.85); }

@keyframes appear { to { opacity: 1; } }

/* studio identity */
.studio-identity {
	position: relative;
	z-index: 1;
	opacity: 0;
	animation: fadein 1s ease 3.8s forwards;
}

@keyframes fadein {
	from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
	to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

.studio-identity img {
	height: clamp(44px, 9vw, 72px);
	object-fit: contain;
	margin: 0 auto;
	filter: drop-shadow(0 0 20px rgba(200,16,46,0.35));
}

.studio-tagline {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
	margin-top: 14px;
}

.studio-blurb {
	max-width: 500px;
	margin: 24px auto 0;
	font-size: 0.92rem;
	color: var(--text-dim);
	opacity: 0;
	animation: fadein 1s ease 4.4s forwards;
	position: relative;
	z-index: 1;
}

.scroll-hint {
	margin-top: 52px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.22em;
	color: rgba(200,16,46,0.65);
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	opacity: 0;
	animation: bob 2s ease-in-out 5s infinite both;
}

@keyframes bob {
	0%,100% { opacity: 0.75; transform: translateY(0); }
	50%      { opacity: 0.9;  transform: translateY(5px); }
}

/* ── ZONE TRANSITION ──────────────────────────────────── */
.zone-sep {
	height: 56px;
	background: linear-gradient(180deg, var(--studio-bg), var(--iw-bg));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.zone-sep::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-65deg,
		transparent 0, transparent 16px,
		rgba(200,16,46,0.1) 16px, rgba(200,16,46,0.1) 18px
	);
}

.zone-label {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.32em;
	color: rgba(255,255,255,0.35);
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--studio-bg), var(--iw-bg));
	padding: 4px 20px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 14px;
}

.zone-stripes {
	display: flex;
	gap: 4px;
	align-items: center;
}

.zone-stripes s {
	display: block;
	width: 7px; height: 13px;
	transform: skewX(-20deg);
	text-decoration: none;
}

.zone-stripes.red  s { background: var(--red); }
.zone-stripes.gold s { background: var(--gold); }

/* ── GAME SECTION — Ironweld zone ────────────────────── */
#ironweld {
	background:
		radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255,164,28,0.05) 0%, transparent 60%),
		var(--iw-bg);
	border-top: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	padding: 80px 24px;
	position: relative;
	overflow: hidden;
}

#ironweld::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,164,28,0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,164,28,0.025) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

/* ── SHARED LAYOUT HELPERS ────────────────────────────── */
.wrap {
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-eyebrow {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.3em;
	color: rgba(255,164,28,0.7);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
	content: '';
	display: block;
	height: 1px;
	width: 70px;
}

.section-eyebrow::before { background: linear-gradient(90deg, transparent, rgba(255,164,28,0.4)); }
.section-eyebrow::after  { background: linear-gradient(90deg, rgba(255,164,28,0.4), transparent); }

.block-label {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	color: rgba(255,164,28,0.65);
	text-transform: uppercase;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.block-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold-border);
}

/* ── CARTRIDGE ────────────────────────────────────────── */
.cartridge { margin-bottom: 40px; }

.iw-logo-above {
	text-align: center;
	margin-bottom: -28px;
	position: relative;
	z-index: 2;
}

.iw-logo-above img {
	height: clamp(72px, 13vw, 130px);
	object-fit: contain;
	margin: 0 auto;
	filter: drop-shadow(0 4px 20px rgba(200,16,46,0.75));
}

.cartridge-frame {
	border: 3px solid var(--gold);
	border-bottom: 20px solid var(--gold);
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	position: relative;
	background: #030d18;
}

.cartridge-frame img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.wave {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg,
		transparent 0%, rgba(255,220,120,0.1) 44%,
		rgba(255,164,28,0.28) 54%, transparent 100%
	);
	animation: sweep 7s ease-in-out infinite;
	pointer-events: none;
	z-index: 3;
}

@keyframes sweep {
	0%   { transform: translateX(-130%); }
	100% { transform: translateX(230%); }
}

.cartridge-pins {
	height: 20px;
	background: repeating-linear-gradient(
		90deg, #111 0, #111 14px, var(--gold) 14px, var(--gold) 26px
	);
	border: 2px solid var(--gold);
	border-top: none;
	border-radius: 0 0 4px 4px;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
	text-align: center;
	margin: 40px 0;
}

.cta p {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.55);
	margin-bottom: 18px;
}

.btn-wish {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-hud);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gold);
	border: 2px solid var(--gold);
	padding: 13px 38px;
	clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
	position: relative;
	overflow: hidden;
	transition: color 0.22s;
}

.btn-wish::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}

.btn-wish:hover { color: #080808; }
.btn-wish:hover::before { transform: scaleX(1); }

.btn-wish span { position: relative; z-index: 1; }

.btn-stripes {
	display: flex;
	flex-direction: column;
	gap: 3px;
	position: relative;
	z-index: 1;
}

.btn-stripes s {
	display: block;
	height: 3px;
	background: currentColor;
	transform: skewX(-20deg);
	text-decoration: none;
	transition: background 0s;
}

.btn-stripes s:nth-child(1) { width: 17px; }
.btn-stripes s:nth-child(2) { width: 11px; }
.btn-stripes s:nth-child(3) { width: 6px; }

/* ── EVENT COVER ──────────────────────────────────────── */
.event-cover {
	margin-bottom: 48px;
}

.event-cover-img {
	border: 1px solid var(--gold-border);
	overflow: hidden;
	position: relative;
}

.event-cover-img img { width: 100%; display: block; }

.event-cover-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2,10,18,0.55) 0%, transparent 45%);
	pointer-events: none;
}

/* ── VIDEO ────────────────────────────────────────────── */
.video-block { margin-bottom: 48px; }

.video-frame {
	border: 1px solid var(--gold-border);
	background: #000;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.video-frame video {
	width: 100%;
	height: 100%;
	display: block;
}

/* ── SCREENSHOTS ──────────────────────────────────────── */
.shots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 64px;
}

.shot {
	border: 1px solid var(--gold-border);
	overflow: hidden;
	aspect-ratio: 16/9;
	cursor: pointer;
	transition: border-color 0.2s;
}

.shot:hover { border-color: var(--gold); }

.shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.shot:hover img { transform: scale(1.04); }

/* ── INTEL PANEL ──────────────────────────────────────── */
.intel {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 16px;
}

.panel {
	border: 1px solid var(--gold-border);
	background: rgba(2,10,18,0.85);
	padding: 22px;
	position: relative;
}

/* top-left gold accent bar */
.panel::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 44px; height: 2px;
	background: var(--gold);
}

/* subtle stripe motif top-right */
.panel::after {
	content: '';
	position: absolute;
	top: 8px; right: 8px;
	width: 24px; height: 18px;
	background: repeating-linear-gradient(
		-65deg,
		rgba(255,164,28,0.18) 0, rgba(255,164,28,0.18) 2px,
		transparent 2px, transparent 7px
	);
}

.panel-title {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	color: rgba(255,164,28,0.7);
	text-transform: uppercase;
	margin-bottom: 18px;
}

.fact { margin-bottom: 14px; }

.fact-key {
	font-family: var(--font-hud);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
	margin-bottom: 2px;
}

.fact-val {
	font-family: var(--font-body);
	font-size: 0.7rem;
	color: #fff;
	letter-spacing: 0.04em;
}

.fact-val a {
	color: var(--gold);
	text-decoration: none;
}

.fact-val a:hover { text-decoration: underline; }

/* right-side desc panels */
.desc-col { display: flex; flex-direction: column; gap: 12px; }

.desc {
	border: 1px solid var(--gold-border);
	background: rgba(2,10,18,0.85);
	padding: 18px 22px;
	position: relative;
}

.desc::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 2px; height: 100%;
	background: rgba(255,164,28,0.35);
}

.desc h4 {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	color: rgba(255,164,28,0.75);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.desc p {
	font-size: 0.88rem;
	color: var(--text-dim);
	line-height: 1.75;
}

.desc p strong { color: var(--gold); font-weight: 500; }

/* tags */
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.tag {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255,164,28,0.8);
	border: 1px solid rgba(255,164,28,0.3);
	padding: 3px 10px;
	background: rgba(255,164,28,0.04);
	clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

/* ── LIGHTBOX ─────────────────────────────────────────── */
#lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.92);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

#lightbox.open { display: flex; }

#lightbox img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	border: 1px solid var(--gold-border);
}

#lightbox-close {
	position: absolute;
	top: 20px; right: 24px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.6);
	cursor: pointer;
	background: none;
	border: none;
	text-transform: uppercase;
	transition: color 0.2s;
}

#lightbox-close:hover { color: #fff; }


/* ══════════════════════════════════════════════════════════
   PRESS KIT PAGE
   ══════════════════════════════════════════════════════════ */

/* ── PAGE LAYOUT ─────────────────────────────────────── */
.page {
	max-width: 900px;
	margin: 0 auto;
	padding: 96px 24px 64px;
}

.page-header {
	text-align: center;
	margin-bottom: 56px;
}

.page-eyebrow {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.3em;
	color: rgba(200,16,46,0.75);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.page-title {
	font-family: var(--font-hud);
	font-size: clamp(1.4rem, 4vw, 2rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
}

.page-subtitle {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	color: var(--text-dim);
	margin-top: 10px;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.pk-section {
	margin-bottom: 56px;
}

.pk-heading {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	color: rgba(200,16,46,0.75);
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.pk-heading::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--red-border);
}

.pk-heading.gold { color: rgba(255,164,28,0.75); }
.pk-heading.gold::after { background: var(--gold-border); }

/* ── FACTSHEET ────────────────────────────────────────── */
.factsheet {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--red-border);
	border: 1px solid var(--red-border);
	margin-bottom: 24px;
}

.fact-cell {
	background: rgba(13,5,5,0.95);
	padding: 16px 20px;
}

.fact-cell .fact-key {
	margin-bottom: 4px;
}

.fact-cell .fact-val {
	font-size: 0.85rem;
}

/* ── DESCRIPTION BLOCK ────────────────────────────────── */
.pk-text {
	font-size: 0.92rem;
	color: var(--text-dim);
	line-height: 1.8;
	border-left: 2px solid var(--red-border);
	padding-left: 20px;
}

.pk-text strong { color: var(--text); font-weight: 500; }

.pk-text + .pk-text { margin-top: 16px; }

/* ── ASSET GRID ───────────────────────────────────────── */
.asset-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}

.asset-card {
	border: 1px solid var(--gold-border);
	background: rgba(2,10,18,0.85);
	overflow: hidden;
	position: relative;
	transition: border-color 0.2s;
}

.asset-card:hover { border-color: var(--gold); }

.asset-thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #0a0a0a;
	display: flex;
	align-items: center;
	justify-content: center;
}

.asset-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.asset-thumb.cover img { object-fit: cover; }

.asset-info {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	border-top: 1px solid rgba(255,164,28,0.1);
}

.asset-name {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.asset-dl {
	font-family: var(--font-mono);
	font-size: 0.54rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gold);
	border: 1px solid var(--gold-border);
	padding: 4px 10px;
	white-space: nowrap;
	clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
	transition: background 0.2s, color 0.2s;
}

.asset-dl:hover {
	background: var(--gold);
	color: #080808;
}

/* ── WIDE CARDS (key art) ─────────────────────────────── */
.asset-grid.wide {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── CHARACTER GRID ───────────────────────────────────── */
.asset-grid.chars {
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.asset-grid.chars .asset-thumb {
	aspect-ratio: 3/4;
	background: rgba(13,5,5,0.6);
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-box {
	border: 1px solid var(--red-border);
	background: rgba(13,5,5,0.9);
	padding: 28px;
	text-align: center;
	position: relative;
}

.contact-box::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 60px; height: 2px;
	background: var(--red);
}

.contact-label {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.contact-email {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--gold);
	text-decoration: none;
	letter-spacing: 0.06em;
}

.contact-email:hover { text-decoration: underline; }

.contact-note {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: rgba(255,255,255,0.4);
	letter-spacing: 0.08em;
	margin-top: 12px;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
	nav { padding: 0 20px; }
	.nav-signal { display: none; }
	.corner-stripes { display: none; }
	.intel { grid-template-columns: 1fr; }
	.shots { grid-template-columns: repeat(2,1fr); }
	.factsheet { grid-template-columns: 1fr; }
	.asset-grid.wide { grid-template-columns: 1fr; }
	footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
	.shots { grid-template-columns: 1fr; }
	.asset-grid { grid-template-columns: 1fr; }
	.asset-grid.chars { grid-template-columns: repeat(2, 1fr); }
}
