:root {
	--bg: #0a0a08;
	--bg-raised: #131310;
	--gold: #d8bb1b;
	--gold-bright: #f3d94a;
	--ink: #f5f2e6;
	--ink-dim: #b8b39f;
	--line: #2a2a20;
	--radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Inter', system-ui, sans-serif;
	line-height: 1.5;
}

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

/* --- scrolling ticker --- */
.ticker {
	background: var(--gold);
	color: #0a0a08;
	overflow: hidden;
	white-space: nowrap;
	border-bottom: 1px solid #000;
}
.ticker-track {
	display: inline-block;
	padding: 6px 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	animation: scroll-left 28s linear infinite;
}
@keyframes scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* --- Nav --- */
.topnav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px clamp(20px, 5vw, 64px) 0;
}
.brand {
	font-family: 'Archivo Black', sans-serif;
	font-size: 20px;
	letter-spacing: 0.04em;
}
.navlinks { display: flex; gap: 28px; }
.navlinks a {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-dim);
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.navlinks a:hover { color: var(--gold); border-color: var(--gold); }

/* -- Background image/video -- */
.top-visual {
	position: relative;
	overflow: hidden;
}

/* --- Hero --- */
.hero {
	padding-bottom: 72px;
	background: radial-gradient(ellipse at top, rgba(216,187,27,0.10), transparent 60%);
}
.hero-inner {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: 56px 24px 0;
}

/* equalizer bars */
.eq {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 5px;
	height: 40px;
	margin: 0 auto 20px;
}
.eq span {
	width: 5px;
	background: var(--gold);
	border-radius: 1px;
	animation: bounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(1){ height: 30%; animation-delay: -1.0s; }
.eq span:nth-child(2){ height: 70%; animation-delay: -0.8s; }
.eq span:nth-child(3){ height: 45%; animation-delay: -0.6s; }
.eq span:nth-child(4){ height: 95%; animation-delay: -0.4s; }
.eq span:nth-child(5){ height: 55%; animation-delay: -0.2s; }
.eq span:nth-child(6){ height: 80%; animation-delay: 0s; }
.eq span:nth-child(7){ height: 40%; animation-delay: -0.5s; }
.eq span:nth-child(8){ height: 65%; animation-delay: -0.3s; }
@keyframes bounce {
	0%, 100% { transform: scaleY(0.4); }
	50% { transform: scaleY(1); }
}

.hero h1 {
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(56px, 12vw, 110px);
	margin: 0;
	color: var(--gold);
	letter-spacing: 0.01em;
	text-shadow: 0 0 40px rgba(216,187,27,0.25);
}

.hero-inner img {
	display: block;
	margin: 0 auto;
	width: clamp(220px, 40vw, 420px);
	height: auto;
	filter: drop-shadow(0 0 40px rgba(216,187,27,0.25));
}
/* Full-bleed background photo behind the ticker + header */
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: brightness(0.7);
}

.tagline {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: clamp(15px, 2.2vw, 18px);
	color: var(--ink-dim);
	max-width: 520px;
	margin: 16px auto 32px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 999px;
	border: 1px solid var(--gold);
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-solid { background: var(--gold); color: #0a0a08; }
.btn-solid:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline { color: var(--gold); }
.btn-outline:hover { background: rgba(216,187,27,0.1); transform: translateY(-1px); }

/* --- Sections --- */
.section {
	max-width: 1040px;
	margin: 0 auto;
	padding: 64px 24px;
	border-top: 1px solid var(--line);
}
.section-head { margin-bottom: 28px; }
.eyebrow {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
.section-head h2 {
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(26px, 4vw, 36px);
	margin: 0;
}

/* Feature card (releases) */
.feature-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.15s ease;
}
.feature-card:hover { border-color: var(--gold); }
.feature-art {
	background: linear-gradient(135deg, #1c1a10, #0a0a08 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--gold);
	text-align: center;
	padding: 20px;
}
.feature-copy { padding: 28px 28px 28px 0; align-self: center; }
.feature-copy h3 { margin: 0 0 8px; font-family: 'Oswald', sans-serif; font-size: 22px; }
.feature-copy p { margin: 0 0 16px; color: var(--ink-dim); }
.link-arrow {
	display: inline-block;
	color: var(--gold);
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.link-arrow:hover,
.link-arrow:focus-visible { color: var(--gold-bright); border-color: var(--gold-bright); }

@media (max-width: 640px) {
	.feature-card { grid-template-columns: 1fr; }
	.feature-copy { padding: 20px; }
}

/* Grid of cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) {
	.grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
	display: block;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card-tag {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}
.card h3 { margin: 0 0 6px; font-family: 'Oswald', sans-serif; font-size: 18px; }
.card p { margin: 0; color: var(--ink-dim); font-size: 14px; }
.card-small { padding: 18px; }

/* Socials row */
.social-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.social-row a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 1px solid var(--line);
	padding: 10px 22px 10px 16px;
	border-radius: 999px;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.social-row svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.social-row svg .eye { fill: var(--bg); }

/* Footer */
.site-footer {
	text-align: center;
	padding: 48px 24px 64px;
	border-top: 1px solid var(--line);
	color: var(--ink-dim);
	font-size: 14px;
}
.site-footer a { color: var(--gold); }
.footer-fine { margin-top: 6px; font-size: 12px; opacity: 0.6; }

/* Focus states for accessibility */
a:focus-visible, .btn:focus-visible {
	outline: 2px solid var(--gold-bright);
	outline-offset: 2px;
}

/* 404 page */

.notfound {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}
.notfound img {
	display: block;
	margin: 0 auto;
	width: clamp(220px, 40vw, 420px);
	height: auto;
	filter: drop-shadow(0 0 40px rgba(216,187,27,0.25));
}
.notfound-code {
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(72px, 18vw, 160px);
	color: var(--gold);
	margin: 0;
	line-height: 1;
	text-shadow: 0 0 40px rgba(216,187,27,0.25);
}
.notfound-msg {
	font-family: 'Oswald', sans-serif;
	color: var(--ink-dim);
	font-size: clamp(15px, 2.2vw, 18px);
	max-width: 420px;
	margin: 12px 0 32px;
}