
/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --base:       #0B0B10;
  --base-card:  #111118;
  --base-lift:  #18181f;
  --cyan:       #00C9E8;
  --amber:      #FFB300;
  --terr:       #F96B45;
  --violet:     #C084FC;
  --gold:       #E8A020;
  --white:      #FFFFFF;
  --w70:        rgba(255,255,255,0.70);
  --w50:        rgba(255,255,255,0.50);
  --w30:        rgba(255,255,255,0.30);
  --w12:        rgba(255,255,255,0.12);
  --w06:        rgba(255,255,255,0.06);
  --font-d:     'Barlow Condensed', sans-serif;
  --font-b:     'Inter', sans-serif;
  --r:          8px;
  --r-lg:       16px;
  --max:        700px;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--base);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ──────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 4.5rem 0;
  border-top: 0.5px solid var(--w06);
}

/* ─── TYPE ────────────────────────────────────────────────────── */
.wm  { font-family: var(--font-d); font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; line-height: 1; }
.dp  { font-family: var(--font-d); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; }
.lbl { font-family: var(--font-b); font-weight: 500; font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── EQ BARS ─────────────────────────────────────────────────── */
@keyframes qa { 0%,100%{ height:18px } 50%{ height:52px } }
@keyframes qb { 0%,100%{ height:32px } 50%{ height:78px } }
@keyframes qc { 0%,100%{ height:50px } 50%{ height:100px } }
@keyframes qd { 0%,100%{ height:62px } 50%{ height:110px } }
@keyframes qe { 0%,100%{ height:22px } 50%{ height:60px } }

.eq { display:flex; align-items:flex-end; gap:5px; }
.eq-bar { width:4px; border-radius:2px; animation-timing-function:ease-in-out; animation-iteration-count:infinite; }
.eq-bar.c { background: var(--cyan); }
.eq-bar.a { background: var(--amber); }
.eq-bar:nth-child(1)  { animation: qb 1.1s infinite ease-in-out 0.00s; }
.eq-bar:nth-child(2)  { animation: qc 1.3s infinite ease-in-out 0.10s; }
.eq-bar:nth-child(3)  { animation: qd 1.0s infinite ease-in-out 0.20s; }
.eq-bar:nth-child(4)  { animation: qc 1.2s infinite ease-in-out 0.05s; }
.eq-bar:nth-child(5)  { animation: qd 0.9s infinite ease-in-out 0.15s; }
.eq-bar:nth-child(6)  { animation: qb 1.4s infinite ease-in-out 0.25s; }
.eq-bar:nth-child(7)  { animation: qc 1.1s infinite ease-in-out 0.10s; }
.eq-bar:nth-child(8)  { animation: qa 1.3s infinite ease-in-out 0.30s; }
.eq-bar:nth-child(9)  { animation: qb 0.9s infinite ease-in-out 0.00s; }
.eq-bar:nth-child(10) { animation: qe 1.2s infinite ease-in-out 0.20s; }
.eq-bar:nth-child(11) { animation: qa 0.9s infinite ease-in-out 0.00s; }
.eq-bar:nth-child(12) { animation: qb 1.1s infinite ease-in-out 0.15s; }
.eq-bar:nth-child(13) { animation: qe 1.3s infinite ease-in-out 0.05s; }
.eq-sm .eq-bar { width:3px; }

@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none !important; height: 48px !important; }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.25rem 3.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-eq { height: 110px; margin-bottom: 1.25rem; }
.hero-num {
  font-size: clamp(5.5rem, 20vw, 8.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hero-verse {
  font-size: clamp(0.9rem, 2.5vw, 1.0625rem);
  color: var(--cyan);
  font-style: italic;
  max-width: 420px;
  line-height: 1.55;
  margin-bottom: 0.375rem;
}
.hero-ref { font-size: 0.6875rem; color: var(--w30); letter-spacing: 0.12em; margin-bottom: 2.75rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--r);
  font-family: var(--font-b); font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.01em; cursor: pointer; border: none;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.82; }
.btn-p { background: var(--cyan); color: #000; }
.btn-g { background: var(--w06); color: var(--white); border: 0.5px solid var(--w12); }

/* ─── CONCEPT ─────────────────────────────────────────────────── */
.concept-hl {
  font-family: var(--font-d); font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1.15;
  font-size: clamp(1.875rem, 6vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.concept-body { font-size: 0.9375rem; color: var(--w50); max-width: 500px; line-height: 1.75; margin-bottom: 2rem; }
.pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.pill {
  padding: 0.375rem 0.875rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; border: 0.5px solid;
}

/* ─── COVER ART ───────────────────────────────────────────────── */
.cover {
  aspect-ratio: 1; border-radius: var(--r-lg);
  background: var(--base-card); border: 0.5px solid var(--w12);
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 1.75rem;
  position: relative; overflow: hidden;
  max-width: 340px;
}
.cover.live { border-color: var(--cyan); }
.live-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--cyan); color: #000;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
}
.cover-lbl { font-size: 0.6875rem; letter-spacing: 0.16em; margin-bottom: 0.25rem; }
.cover-vol { font-family: var(--font-d); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; font-size: clamp(2.75rem, 11vw, 3.75rem); }
.cover-sub { font-size: 0.6875rem; color: var(--w30); letter-spacing: 0.1em; margin-top: 0.375rem; }
.cs-badge {
  display: inline-block; padding: 0.25rem 0.625rem; border-radius: 4px;
  font-size: 0.6875rem; letter-spacing: 0.1em; border: 0.5px solid; align-self: flex-start;
}

/* ─── VOLUME GRID ─────────────────────────────────────────────── */
.vol-grid { display: grid; gap: 2.5rem; }
@media (min-width: 580px) {
  .vol-grid { grid-template-columns: auto 1fr; align-items: start; }
}

/* ─── STREAM LINKS ────────────────────────────────────────────── */
.streams { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 0; }
.str-btn {
  padding: 0.5rem 1rem; border-radius: var(--r);
  font-size: 0.8125rem; font-weight: 500;
  background: var(--w06); border: 0.5px solid var(--w12);
  transition: background 0.15s ease; cursor: pointer;
}
.str-btn:hover { background: var(--w12); }

/* ─── TRACKS ──────────────────────────────────────────────────── */
.tracks { margin-top: 2.5rem; }
.t-head {
  font-size: 0.6875rem; letter-spacing: 0.1em; color: var(--w30);
  padding-bottom: 0.625rem; border-bottom: 0.5px solid var(--w06); margin-bottom: 0;
}
details.tr { border-bottom: 0.5px solid var(--w06); }
details.tr summary {
  list-style: none; cursor: pointer;
  padding: 0.875rem 0; display: flex; align-items: center;
  gap: 0.875rem; user-select: none; -webkit-user-select: none;
}
details.tr summary::-webkit-details-marker { display: none; }
details.tr summary:hover .t-name { color: var(--cyan); }
.t-n { font-size: 0.6875rem; color: var(--w30); min-width: 20px; font-variant-numeric: tabular-nums; }
.t-name {
  font-family: var(--font-d); font-weight: 600; font-size: 1.125rem;
  letter-spacing: 0.04em; text-transform: uppercase; flex: 1;
  transition: color 0.15s ease;
}
.t-bpm { font-size: 0.6875rem; color: var(--w30); text-align: right; line-height: 1.4; white-space: nowrap; }
.t-ico {
  width: 16px; height: 16px; color: var(--w30); flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] .t-ico { transform: rotate(45deg); }
.t-body { padding: 0 0 1.25rem 1.875rem; }
.t-verse { font-size: 0.75rem; color: var(--cyan); letter-spacing: 0.07em; margin-bottom: 0.5rem; }
.t-dev { font-size: 0.875rem; color: var(--w50); line-height: 1.75; max-width: 520px; }
.t-tags { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-top: 0.625rem; }
.t-tag {
  font-size: 0.625rem; padding: 2px 7px; border-radius: 4px;
  background: var(--w06); color: var(--w30); letter-spacing: 0.07em;
}

/* ─── EMAIL FORM ──────────────────────────────────────────────── */
.e-form { display: flex; gap: 0.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.e-input {
  flex: 1; min-width: 190px; padding: 0.75rem 1rem; border-radius: var(--r);
  border: 0.5px solid var(--w12); background: var(--w06);
  color: var(--white); font-family: var(--font-b); font-size: 0.875rem; outline: none;
}
.e-input::placeholder { color: var(--w30); }
.e-input:focus { border-color: var(--w30); }

/* ─── CREATOR ─────────────────────────────────────────────────── */
.c-card {
  background: var(--base-card); border-radius: var(--r-lg);
  padding: 2rem; border: 0.5px solid var(--w12);
}
.c-name {
  font-family: var(--font-d); font-weight: 800; font-size: 2.25rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin: 0.5rem 0 0.875rem;
}
.c-bio { font-size: 0.9375rem; color: var(--w50); line-height: 1.75; max-width: 500px; margin-bottom: 1.5rem; }
.disc {
  background: var(--w06); border-radius: var(--r); padding: 1rem 1.25rem;
  border-left: 2.5px solid var(--cyan); font-size: 0.8125rem; color: var(--w50); line-height: 1.65;
}
.disc strong { color: var(--white); font-weight: 500; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.foot {
  padding: 3rem 1.25rem; max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; border-top: 0.5px solid var(--w06);
}
.foot-wm { font-family: var(--font-d); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.22em; }
.foot-r { text-align: right; font-size: 0.75rem; color: var(--w30); line-height: 1.7; }
.foot-r a:hover { color: var(--w50); }
.foot-legal { font-size: 0.6875rem; color: var(--w30); margin-top: 0.5rem; }
.foot-legal a { margin: 0 0.375rem; }
.foot-legal a:hover { color: var(--w50); }

/* ─── PRODUCER PHOTO ──────────────────────────────────────────── */
.c-top { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.c-photo {
  width: 84px; height: 84px; border-radius: 999px;
  object-fit: cover; border: 1.5px solid var(--cyan);
  flex-shrink: 0;
}

/* ─── NAV (legal pages) ───────────────────────────────────────── */
.nav {
  max-width: var(--max); margin: 0 auto; padding: 1.5rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-wm { font-family: var(--font-d); font-weight: 800; font-size: 1.375rem; letter-spacing: 0.2em; }
.nav-back { font-size: 0.8125rem; color: var(--w50); display: flex; align-items: center; gap: 0.375rem; }
.nav-back:hover { color: var(--white); }

/* ─── LEGAL PAGE TYPE ─────────────────────────────────────────── */
.legal-hero { max-width: var(--max); margin: 0 auto; padding: 1.5rem 1.25rem 3rem; }
.legal-title {
  font-family: var(--font-d); font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1.1;
  font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 0.625rem;
}
.legal-updated { font-size: 0.75rem; color: var(--w30); letter-spacing: 0.05em; }
.legal-body { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 5rem; }
.legal-body h2 {
  font-family: var(--font-d); font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; font-size: 1.1875rem; margin: 2.5rem 0 0.875rem;
  color: var(--cyan);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.9375rem; color: var(--w50); line-height: 1.8; margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 0; padding-left: 1.25rem; }
.legal-body li { font-size: 0.9375rem; color: var(--w50); line-height: 1.8; margin-bottom: 0.5rem; }
.legal-body strong { color: var(--white); font-weight: 500; }
.legal-body a { color: var(--cyan); border-bottom: 0.5px solid rgba(0,201,232,0.3); }
.legal-body a:hover { border-bottom-color: var(--cyan); }
.legal-note {
  background: var(--w06); border-radius: var(--r); padding: 1.25rem 1.5rem;
  border-left: 2.5px solid var(--cyan); margin: 1.5rem 0;
}
.legal-note p { margin-bottom: 0; }

/* ─── ETHICAL AI — FRAMEWORK CARDS ────────────────────────────── */
.eth-grid { display: grid; gap: 0.875rem; margin: 1.5rem 0 2rem; }
.eth-card {
  background: var(--base-card); border: 0.5px solid var(--w12);
  border-radius: var(--r); padding: 1.25rem 1.375rem;
}
.eth-card-lbl {
  font-family: var(--font-d); font-weight: 700; font-size: 0.9375rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.5rem;
}
.eth-card p { font-size: 0.875rem; color: var(--w50); line-height: 1.7; margin: 0; }
.eth-tiers { display: grid; gap: 0.5rem; margin: 1rem 0 2rem; }
.eth-tier {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: var(--r); background: var(--w06);
}
.eth-dot { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; margin-top: 0.4em; }
.eth-tier-name { font-size: 0.8125rem; font-weight: 500; min-width: 90px; flex-shrink: 0; }
.eth-tier-desc { font-size: 0.8125rem; color: var(--w50); line-height: 1.6; }



/* ─── NEW RELEASE BADGE ───────────────────────────────────────── */
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.new-release-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: rgba(255,179,0,0.12);
  color: var(--amber);
  border: 0.5px solid rgba(255,179,0,0.5);
  animation: badge-pulse 2.5s ease-in-out infinite;
}
