:root {
  --bg: #050505;
  --panel: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.10);
  --text: #f4f4f4;
  --muted: rgba(255,255,255,0.66);
  --soft: rgba(255,255,255,0.46);
  --font: 'Audiowide', 'Orbitron', 'Eurostile', 'Microgramma', 'Arial Black', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: -3;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.35) 100%);
  z-index: -1;
  pointer-events: none;
}
.bg-logo {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(1200px, 95vw);
  transform: translate(-50%, -50%);
  opacity: .11;
  filter: blur(70px);
  z-index: -2;
  pointer-events: none;
}
.page {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 80px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.82);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .45em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  transition: .2s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: rgba(255,255,255,.5);
}
.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: end;
  padding-top: 48px;
}
.kicker {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 14px;
}
.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 110px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.copy {
  max-width: 820px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--text);
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  transition: .2s ease;
}
.btn:hover { border-color: rgba(255,255,255,.5); }
.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--panel);
  padding: 24px;
}
.card h2, .card h3 {
  margin: 0;
  text-transform: uppercase;
}
.meta, .meta p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.stack { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 260px;
  background: #111;
}
.media img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  filter: contrast(1.2) saturate(1.15) brightness(.9);
}
.media::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,.45) 100%);
}
.release-layout { display: grid; gap: 32px; grid-template-columns: .86fr 1.14fr; }
.ghost-label {
  position: absolute;
  left: 50%;
  top: 70%;
  width: min(520px, 88%);
  transform: translate(-50%, -50%);
  opacity: .12;
  filter: blur(1px);
  animation: spinSlow 40s linear infinite;
  pointer-events: none;
}
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.relative-z { position: relative; z-index: 1; }
.smallcaps {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  color: var(--soft);
}
.link-list a, .text-link {
  color: var(--muted);
  text-decoration: none;
  transition: .2s ease;
}
.link-list a:hover, .text-link:hover { color: var(--text); }
.footer-space { height: 24px; }

@media (max-width: 900px) {
  .hero, .release-layout, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .page { width: min(100% - 28px, 1200px); }
  .header-inner { width: min(100% - 28px, 1200px); align-items: flex-start; flex-direction: column; }
  .hero h1, .page-title { font-size: clamp(42px, 13vw, 72px); }
}
