:root {
  --bg: #050505;
  --bg-elev: #0e0e10;
  --fg: #f5f5f5;
  --fg-dim: #b8b8b8;
  --accent: #ffffff;
  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #050505;
  background-image:
    url('images/background.jpg'),
    radial-gradient(circle at 30% 38%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 8%, rgba(255,255,255,0.05) 18%, rgba(0,0,0,0) 38%),
    radial-gradient(ellipse at 30% 38%, rgba(180,180,180,0.18) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #1a1a1c 0%, #050505 100%);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  filter: grayscale(0.1) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.15), rgba(0,0,0,0.65) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 var(--gap);
  text-align: center;
}

.hero__logo {
  margin: 0;
  display: flex;
  justify-content: center;
}

.hero__logo img {
  width: clamp(280px, 70vw, 880px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
  transition: opacity .2s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(10px); opacity: 1; }
}

/* ---------- RELEASE ---------- */
.release {
  background: var(--bg);
  padding: clamp(3rem, 8vw, 7rem) var(--gap);
}

.release__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 760px) {
  .release__inner {
    grid-template-columns: minmax(180px, 240px) 1fr;
  }
}

.release__cover {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06);
  transition: transform .3s ease;
  aspect-ratio: 1 / 1;
  background: #111;
}
.release__cover:hover { transform: translateY(-4px); }
.release__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release__eyebrow {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.release__title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--fg);
}

.release__subtitle {
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--fg-dim);
  margin: 0 0 2rem;
  max-width: 38ch;
}

.release__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: #fff;
  color: #000;
}
.btn--primary:hover { background: #e8e8e8; }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem var(--gap);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 760px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  margin: 0;
  font-size: 1.1rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.footer__nav a {
  color: var(--fg-dim);
  font-size: 0.9rem;
  transition: color .2s;
}
.footer__nav a:hover { color: #fff; }
.footer__copy {
  margin: 0;
  color: var(--fg-dim);
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll span { animation: none; }
  .release__cover { transition: none; }
}
