/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gutter);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--steel);
  transition: background 0.3s ease;
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__mark img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav__mark span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  display: none;
}

@media (min-width: 640px) {
  .nav__mark span { display: block; }
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  padding-bottom: 3px;
  color: var(--paper-dim);
  transition: color 0.2s ease;
}
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--paper); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--signal-red);
  transition: width 0.25s ease;
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { width: 100%; }

.nav__cta {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--hazard);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
@media (min-width: 860px) { .nav__cta { display: inline-block; } }
.nav__cta:hover { background: var(--paper); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(228,0,43,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 82% 78%, rgba(255,212,0,0.07), transparent 60%),
    var(--void);
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 3px
  );
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero__lion {
  width: clamp(64px, 9vw, 96px);
  border-radius: 50%;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero__wordmark {
  width: min(90vw, 900px);
  animation: fadeUp 0.8s 0.18s ease both;
}

.hero__tagline {
  margin-top: 1.75rem;
  max-width: 42ch;
  font-size: var(--step-1);
  color: var(--paper-dim);
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__tagline strong {
  color: var(--paper);
  font-weight: 500;
}

.hero__dates {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--hazard);
  letter-spacing: 0.04em;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero__dates span { white-space: nowrap; }
.hero__dates b { color: var(--paper); font-weight: 500; }

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--steel-light), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--steel-light);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--solid {
  background: var(--signal-red);
  border-color: var(--signal-red);
  color: var(--paper);
}
.btn--solid:hover { background: var(--paper); border-color: var(--paper); color: var(--void); }
.btn--ghost {
  color: var(--paper);
  border-color: var(--steel-light);
}
.btn--ghost:hover { border-color: var(--paper); }
.btn--yellow {
  background: var(--hazard);
  border-color: var(--hazard);
  color: var(--void);
}
.btn--yellow:hover { background: var(--paper); border-color: var(--paper); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.7rem; }

/* ============================================
   MARQUEE (artist roster strip)
   ============================================ */
.marquee {
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  overflow: hidden;
  padding-block: 1.75rem;
  background: var(--void-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 6vw, 5rem);
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  height: clamp(22px, 3.4vw, 32px);
  width: auto;
  opacity: 0.82;
  filter: grayscale(1) brightness(1.5);
  transition: opacity 0.2s ease;
}
.marquee__track img:hover { opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.about__body p + p { margin-top: 1.3em; }
.about__body { color: var(--paper-dim); font-size: var(--step-0); }
.about__body strong { color: var(--paper); font-weight: 500; }

.callout {
  border: 1px solid var(--signal-red);
  background: linear-gradient(180deg, rgba(228,0,43,0.08), transparent);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: relative;
}
.callout__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-red);
  display: block;
  margin-bottom: 0.9rem;
}
.callout p { font-size: var(--step-0); }
.callout p + p { margin-top: 0.9em; color: var(--paper-dim); }

.stat-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  padding: 1.1rem 0.9rem;
  text-align: center;
  border-right: 1px solid var(--steel);
}
.stat:last-child { border-right: none; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--hazard);
}
.stat span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

/* ============================================
   RELEASE CARDS (digital + vinyl)
   ============================================ */
.release-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.release {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--steel);
}
.release-list > .release:last-child { border-bottom: none; padding-bottom: 0; }

@media (min-width: 880px) {
  .release {
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.release__meta {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.release__logo-frame {
  background: var(--void-2);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.release__logo-frame img {
  width: 100%;
  filter: brightness(1.6);
}
.release__logo-frame.is-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.release__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.release__tags .catno { color: var(--paper-dim); }
.release__tags .date {
  color: var(--void);
  background: var(--hazard);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.release__body h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.3em;
}
.release__body .subtitle {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--signal-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.3rem;
}

.release__text {
  color: var(--paper-dim);
  max-width: 68ch;
  margin-bottom: 1.6rem;
}
.release__text p + p { margin-top: 1em; }

.release__embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel);
  background: var(--void-2);
}
.release__embed iframe { display: block; }

/* Vinyl side labels */
.side-split {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 620px) {
  .side-split { grid-template-columns: 1fr 1fr; }
}
.side {
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.side__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hazard);
  display: block;
  margin-bottom: 0.6rem;
}
.side h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.25;
}
.side p {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--paper-dim);
}

/* ============================================
   TEASER / LOCKED SIGNAL CARDS
   ============================================ */
.teaser-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.teaser {
  position: relative;
  border: 1px dashed var(--steel-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 3px),
    linear-gradient(160deg, rgba(228,0,43,0.10), var(--void-2) 70%);
  filter: blur(2px);
}

.teaser__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hazard);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.teaser__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hazard);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.teaser h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--paper-dim);
  filter: blur(3px);
  user-select: none;
  letter-spacing: 0.03em;
}

.teaser__cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}

/* ============================================
   MAILING LIST
   ============================================ */
.signup {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(228,0,43,0.14), transparent 65%);
  z-index: -1;
}
.signup h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  text-transform: uppercase;
  max-width: 20ch;
  margin-inline: auto;
}
.signup p {
  margin-top: 1rem;
  color: var(--paper-dim);
  max-width: 46ch;
  margin-inline: auto;
}

.signup-form {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.signup-form input[type="email"] {
  flex: 1 1 240px;
  background: var(--void-2);
  border: 1px solid var(--steel-light);
  color: var(--paper);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.signup-form input[type="email"]::placeholder { color: var(--steel-light); }
.signup-form input[type="email"]:focus { border-color: var(--signal-red); outline: none; }

.signup__note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--steel-light);
  letter-spacing: 0.04em;
}

.signup__status {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--hazard);
  display: none;
}
.signup__status.is-visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--steel);
  padding-block: 2.5rem;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer__mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__mark img { width: 30px; height: 30px; border-radius: 50%; }
.footer__mark span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
}
.footer__links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__links a { color: var(--paper-dim); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--paper); }
.footer__legal {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--steel-light);
  letter-spacing: 0.02em;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
