:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #bdbdbd;
  --gold: #ffcc16;
  --blue: #00a6ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 204, 22, 0.25), transparent 28rem),
    radial-gradient(circle at 85% 35%, rgba(0, 166, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  min-height: 100vh;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  z-index: 0;
}
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand img { width: 175px; height: auto; display: block; }
nav { display: flex; gap: 1rem; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .9rem;
}
nav a:hover { color: var(--gold); }
.nav-cta { color: #111; background: var(--gold); padding: .7rem 1rem; border-radius: 999px; }
main, footer { position: relative; z-index: 1; }
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 6rem);
  overflow: hidden;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .45em;
  font-weight: 900;
  font-size: clamp(.7rem, 1vw, .9rem);
  margin: 0 0 1rem;
}
h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: .75;
  text-transform: uppercase;
  letter-spacing: -.08em;
  text-shadow: 0 0 45px rgba(255,204,22,.2);
}
h2 { font-size: clamp(2.2rem, 5vw, 5rem); line-height: .9; margin: .25rem 0 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin: .5rem 0; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.5rem); max-width: 620px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: #111; box-shadow: 0 18px 40px rgba(255,204,22,.22); }
.ghost { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.hero-art { position: relative; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(255,204,22,.35), transparent 60%);
  filter: blur(24px);
}
.hero-art img, .release-card img {
  width: 100%;
  display: block;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
}
.section { padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 6rem); }
.section-head { margin-bottom: 2rem; }
.release-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.release-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.2rem;
  align-items: center;
  backdrop-filter: blur(18px);
}
.release-card p { color: var(--muted); line-height: 1.6; }
.release-card a { color: var(--gold); font-weight: 900; text-decoration: none; }
.tag {
  display: inline-flex;
  color: #111;
  background: var(--gold);
  font-weight: 900;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.video-card { aspect-ratio: 16/9; border-radius: 1.5rem; overflow: hidden; background: #111; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.1); }
.video-card iframe { width: 100%; height: 100%; border: 0; }
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: end;
  background: linear-gradient(90deg, rgba(255,204,22,.08), rgba(0,166,255,.08));
  border-block: 1px solid rgba(255,255,255,.08);
}
.about p:last-child { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.6; }
.cta { margin: clamp(2rem, 5vw, 5rem); padding: clamp(2rem, 5vw, 5rem); border-radius: 2rem; text-align: center; background: var(--panel-strong); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); }
.cta p { color: var(--muted); }
footer { padding: 3rem 1rem; text-align: center; color: var(--muted); }
footer img { width: 150px; display: block; margin: 0 auto 1rem; }
@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .brand img { width: 150px; }
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-art { max-width: 620px; margin-inline: auto; }
  .release-grid, .video-grid, .about { grid-template-columns: 1fr; }
  .release-card { grid-template-columns: 1fr; }
  .release-card img { max-width: 330px; }
}
@media (max-width: 560px) {
  h1 { font-size: 4.5rem; }
  .eyebrow { letter-spacing: .23em; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
}
