/* ============================================================
   MUYII · EPK
   Editorial-meets-brutalist Afrofusion identity
   ============================================================ */

:root {
  --ink:        #0a0d2e;
  --ink-2:      #050719;
  --bone:       #f3ecdf;
  --bone-soft:  #ece3d2;
  --cream:      #fff8ea;
  --blue:       #1d3fff;
  --blue-soft:  #3b5bff;
  --violet:     #a020f0;
  --magenta:    #e91e8b;
  --hot:        #ff5a3c;
  --acid:       #d4ff3c;
  --line:       rgba(243,236,223,0.18);
  --line-soft:  rgba(243,236,223,0.08);

  --display:    "Bagel Fat One", "Arial Black", system-ui, sans-serif;
  --serif:      "Fraunces", "Times New Roman", serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;

  --maxw:       1440px;
  --pad:        clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink-2);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }

::selection { background: var(--magenta); color: var(--cream); }

/* ----- grain ----- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.18; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ----- vertical marquee rail (left edge) ----- */
.rail {
  position: fixed;
  left: 14px;
  top: 0; bottom: 0;
  width: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  z-index: 30;
  pointer-events: none;
}
.rail__label {
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(243,236,223,0.35);
  white-space: nowrap;
  animation: rail-scroll 60s linear infinite;
}
@keyframes rail-scroll {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* ----- topbar ----- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(5,7,25,0.85), rgba(5,7,25,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 22px;
}
.brand__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta), 0 0 24px var(--magenta);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: 0.55; }
}
.nav {
  justify-self: center;
  display: flex; gap: 28px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.nav a {
  position: relative;
  color: rgba(243,236,223,0.7);
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--magenta);
  transform: translate(-50%, 4px) scale(0);
  transition: transform .25s;
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: translate(-50%, 4px) scale(1); }

.label-pill {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 16px 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(243,236,223,0.04);
  font-family: var(--mono);
  transition: border-color .3s, background .3s;
}
.label-pill:hover { border-color: var(--magenta); background: rgba(233,30,139,0.08); }
.label-pill__sm { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243,236,223,0.55); }
.label-pill__logo {
  height: 22px; width: auto;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(255,255,255,0.08));
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px var(--pad) 60px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 36px 1fr auto;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(160,32,240,0.55), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(29,63,255,0.55), transparent 60%),
    linear-gradient(160deg, #0a0d40 0%, #1a0d3e 40%, #2a0b3a 100%);
}
.hero__meta { min-height: 36px; }
.hero__glow {
  position: absolute;
  width: 800px; height: 800px;
  left: -200px; top: -200px;
  background: radial-gradient(circle, rgba(29,63,255,0.65), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}
.hero__glow--2 {
  left: auto; right: -200px; top: auto; bottom: -200px;
  background: radial-gradient(circle, rgba(233,30,139,0.5), transparent 60%);
  animation-duration: 22s; animation-direction: alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(80px,-40px) scale(1.15); }
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex; gap: 14px; align-items: center;
  z-index: 2;
}
.tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: rgba(243,236,223,0.7);
}
.tag--dot::before {
  content: "●"; color: var(--acid); margin-right: 8px;
}

.hero__title {
  grid-column: 1 / 2;
  grid-row: 2;
  align-self: end;
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(110px, 17vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin-left: -0.04em;
  padding-right: clamp(16px, 4vw, 64px); /* breathing room before portrait */
  text-shadow: 0 0 60px rgba(233,30,139,0.25);
  pointer-events: none;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title-line { display: block; }

.hero__portrait {
  position: absolute;
  right: clamp(20px, 4vw, 80px);
  bottom: 6vh;
  width: clamp(360px, 44vw, 640px);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero__portrait img {
  width: 100%; height: auto;
  filter: contrast(1.05) brightness(1.05);
  animation: float 8s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}

.hero__caption {
  grid-column: 1;
  grid-row: 3;
  max-width: 440px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid; gap: 6px;
}
.hero__caption-row { display: grid; grid-template-columns: 70px 1fr; gap: 14px; }
.caption-label {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px;
  color: rgba(243,236,223,0.5);
}
.caption-val { color: var(--bone); }

.hero__scroll {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(243,236,223,0.65);
  z-index: 2;
}
.hero__scroll svg path { animation: arrow 1.8s ease-in-out infinite; }
@keyframes arrow {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50%     { transform: translateY(4px); opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: inline-flex; gap: 28px; align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--bone);
  animation: marquee 38s linear infinite;
  padding-left: 28px;
}
.marquee__track .dot { color: var(--magenta); font-size: 14px; transform: translateY(-6px); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
section { padding: clamp(80px, 10vw, 160px) var(--pad); position: relative; }

.section-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 64px;
}
.section-num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(243,236,223,0.45);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.section-rule {
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
  align-self: center;
  margin-bottom: 22px;
}
.section-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  color: rgba(243,236,223,0.7);
  margin-bottom: 18px;
}
.press__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(243,236,223,0.04);
  margin-bottom: 18px;
  transition: border-color .25s, background .25s, color .25s, transform .25s;
}
.press__cta:hover {
  border-color: var(--magenta);
  background: rgba(233,30,139,0.08);
  color: var(--magenta);
  transform: translateY(-2px);
}
.press__cta svg { transition: transform .25s; }
.press__cta:hover svg { transform: translate(2px,-2px); }

.section-head--light .section-title { color: var(--cream); }

/* ============================================================
   BIO
   ============================================================ */
.bio { background: var(--ink-2); }
.bio__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.bio__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  filter: grayscale(0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.bio__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }
.bio__photo:hover img { transform: scale(1.04); }
.bio__photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); background: rgba(10,13,46,0.75);
  padding: 6px 10px;
  backdrop-filter: blur(8px);
}

.bio__copy { font-size: 19px; line-height: 1.7; color: rgba(243,236,223,0.85); }
.bio__lede { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.4; margin-bottom: 28px; color: var(--bone); font-weight: 300; }
.bio__copy p + p { margin-top: 20px; }
.bio__copy strong { color: var(--cream); font-weight: 600; }

.dropcap {
  float: left;
  font-family: var(--display);
  font-size: 86px;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--magenta);
  text-shadow: 0 0 24px rgba(233,30,139,0.45);
}
.hl {
  background: linear-gradient(180deg, transparent 60%, rgba(233,30,139,0.35) 60%);
  padding: 0 2px;
}

.bio__facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
}
.bio__facts > div { display: grid; gap: 4px; }
.bio__facts dt { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(243,236,223,0.5); }
.bio__facts dd { font-size: 14px; color: var(--bone); }

/* ============================================================
   DISCOGRAPHY
   ============================================================ */
.disco {
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(160,32,240,0.4), transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 100%, rgba(233,30,139,0.3), transparent 65%),
    linear-gradient(180deg, #1a0a3a 0%, #2a0b3a 100%);
}
.disco__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.release--ep {
  position: relative;
  display: grid; gap: 24px;
}
.release__kind {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--acid);
}
.release__art {
  aspect-ratio: 1/1;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(243,236,223,0.05);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.release__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.release__art::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,30,139,0.0) 50%, rgba(160,32,240,0.35) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.release__hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(10,13,46,0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s;
}
.release__hover-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.release__hover-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream);
}
.release--ep:hover .release__art { transform: scale(1.015); }
.release--ep:hover .release__art img { transform: scale(1.04); filter: brightness(0.85); }
.release--ep:hover .release__art::before { opacity: 1; }
.release--ep:hover .release__hover { opacity: 1; }
.release__meta h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.95;
  margin-bottom: 8px;
  color: var(--cream);
}
.release__meta p {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(243,236,223,0.6);
  margin-bottom: 18px;
}
.play {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  background: var(--cream); color: var(--ink);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .25s, background .25s, color .25s;
}
.play:hover {
  background: var(--magenta); color: var(--cream);
  transform: translateY(-2px);
}
.play svg { transition: transform .25s; }
.play:hover svg { transform: scale(1.15); }

/* singles */
.singles { display: grid; gap: 18px; }
.singles__heading {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 6px;
}
.singles__list { list-style: none; display: grid; gap: 0; }
.single {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 18px 8px;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left .35s, background .35s;
}
.single__cover {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.4);
  transition: transform .35s, box-shadow .35s;
}
.single:hover .single__cover {
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}
.single__hit {
  position: absolute; inset: 0;
  z-index: 1;
}
.single > :not(.single__hit) { position: relative; z-index: 2; pointer-events: none; }
.single:last-child { border-bottom: 1px solid var(--line); }
.single::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent, var(--magenta));
  transition: width .35s;
}
.single:hover { padding-left: 28px; background: rgba(243,236,223,0.02); }
.single:hover::before { width: 4px; }

.single__no {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,236,223,0.5);
}
.single__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 56px);
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color .35s, transform .35s;
  display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.single__feat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.5);
  font-weight: normal;
}
.single:hover .single__feat { color: rgba(243,236,223,0.85); }
.single:hover .single__title { color: var(--accent, var(--magenta)); }
.single__year {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,236,223,0.45);
}
.play--sm {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 12px;
  transition: background .25s, border-color .25s, transform .25s;
}
.single:hover .play--sm {
  background: var(--accent, var(--magenta));
  border-color: var(--accent, var(--magenta));
  transform: scale(1.1);
}

/* ============================================================
   VIDEOS
   ============================================================ */
.videos {
  background: linear-gradient(180deg, #050719 0%, #0a0d2e 100%);
}
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
}
.vid {
  position: relative;
  background: var(--ink-2);
  padding: 24px;
  display: grid; gap: 12px;
  transition: background .35s;
}
.vid:hover { background: #0d1138; }
.vid__thumb {
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vid__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.vid:hover .vid__thumb img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(1.1);
}
.vid__thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c, var(--blue)), transparent 70%);
  mix-blend-mode: color;
  opacity: 0;
  transition: opacity .4s;
  z-index: 1;
}
.vid:hover .vid__thumb::before { opacity: 0.6; }
.vid { --c: var(--blue); }
.vid__play {
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,13,46,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243,236,223,0.3);
  color: var(--cream);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .35s, transform .35s, background .35s, color .35s;
}
.vid:hover .vid__play {
  opacity: 1;
  transform: scale(1);
  background: var(--cream); color: var(--ink);
}
.vid--feat { grid-column: span 1; }
.vid--feat .vid__thumb--feat { aspect-ratio: 16/10; }
.vid h4 {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.vid h4 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vid__meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(243,236,223,0.5);
}

/* per-card accent: set via inline JS */

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(233,30,139,0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(29,63,255,0.4), transparent 60%),
    linear-gradient(180deg, #170a3e 0%, #0a0d2e 100%);
}
.stats__lede {
  max-width: 760px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(243,236,223,0.85);
  margin-bottom: 72px;
}
.stats__lede em {
  background: linear-gradient(180deg, transparent 65%, rgba(212,255,60,0.5) 65%);
  padding: 0 2px;
  font-style: normal;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stats__grid .stat--feat {
  grid-column: 1 / -1;
  padding: 64px 24px 48px;
}
.stat {
  background: transparent;
  padding: 48px 24px;
  display: grid; gap: 18px;
  position: relative;
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  text-stroke: 1.5px var(--cream);
  position: relative;
  display: inline-block;
}
.stat__num::after {
  content: attr(data-suffix);
  -webkit-text-stroke: 1.5px var(--magenta);
  text-stroke: 1.5px var(--magenta);
  margin-left: 6px;
}
.stat__num--xl {
  font-size: clamp(120px, 22vw, 320px);
}
.stat__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}

/* per-platform social impressions */
.impressions {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.impressions__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 28px;
}
.impressions__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.impressions__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(212,255,60,0.18);
  animation: imp-blink 1.6s ease-in-out infinite;
}
@keyframes imp-blink { 50% { opacity: 0.35; } }
.impressions__total {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.6);
}
.impressions__total strong {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.impressions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.imp {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .35s, transform .35s, background .35s;
}
.imp::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 60%);
  opacity: 0.18;
  filter: blur(20px);
  transition: opacity .35s, transform .45s;
  pointer-events: none;
}
.imp:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.04);
}
.imp:hover::before { opacity: 0.42; transform: translate(-20px, 20px); }
.imp:hover .imp__arrow { transform: translateX(6px); color: var(--brand); }

.imp__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--brand);
  flex-shrink: 0;
  transition: background .35s, border-color .35s, color .35s;
}
.imp__icon svg { width: 22px; height: 22px; }
.imp:hover .imp__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ink-2);
}

.imp__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.imp__platform {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
}
.imp__num {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.imp__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
}
.imp__arrow {
  font-size: 22px;
  color: rgba(243,236,223,0.4);
  transition: transform .35s, color .35s;
}

/* ============================================================
   PRESS
   ============================================================ */
.press { background: var(--ink-2); }
.press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.press__img {
  overflow: hidden;
  position: relative;
  background: var(--ink);
  filter: grayscale(0.5);
  transition: filter .6s;
}
.press__img:hover { filter: grayscale(0); }
.press__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.press__img:hover img { transform: scale(1.06); }
.press__img--tall { grid-row: span 2; }
.press__img--wide { grid-column: span 2; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact {
  position: relative;
  padding: 120px var(--pad) 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,63,255,0.25), transparent 60%),
    var(--ink-2);
  overflow: hidden;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative; z-index: 2;
}
.contact__kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--magenta);
}
.contact__title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 18px 0 28px;
}
.contact__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__copy {
  max-width: 540px;
  color: rgba(243,236,223,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact__copy strong { color: var(--cream); }
.email {
  display: inline-block;
  font-family: var(--mono);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.05em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s, color .25s;
}
.email:hover { border-color: var(--magenta); color: var(--magenta); }

.socials { list-style: none; display: grid; gap: 0; }
.socials li { border-top: 1px solid var(--line); }
.socials li:last-child { border-bottom: 1px solid var(--line); }
.socials a {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 8px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 38px);
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: padding-left .35s, color .35s;
  position: relative;
}
.socials__hash {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,236,223,0.4);
}
.socials__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(243,236,223,0.06);
  border: 1px solid var(--line);
  color: var(--cream);
  flex-shrink: 0;
  transition: background .35s, border-color .35s, color .35s, transform .35s;
}
.socials__icon svg { width: 22px; height: 22px; display: block; }
.socials__name { /* keep the display-font label */ }
.socials__handle {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
  text-transform: lowercase;
  color: rgba(243,236,223,0.4);
  justify-self: end;
  transition: color .35s;
}
.socials__arrow { font-size: 22px; transition: transform .35s, color .35s; }

.socials__reach {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  justify-self: end;
  white-space: nowrap;
  transition: color .35s, border-color .35s, background .35s;
}
.socials__reach:empty {
  border: none;
  padding: 0;
  min-width: 0;
}
.socials__reach strong {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.socials a:hover {
  padding-left: 24px;
  color: var(--brand, var(--magenta));
}
.socials a:hover .socials__icon {
  background: var(--brand, var(--magenta));
  border-color: var(--brand, var(--magenta));
  color: var(--ink-2);
  transform: scale(1.08) rotate(-3deg);
}
.socials a:hover .socials__arrow { transform: translateX(8px); color: var(--brand, var(--magenta)); }
.socials a:hover .socials__handle { color: var(--cream); }
.socials a:hover .socials__reach {
  color: var(--cream);
  border-color: var(--brand, var(--magenta));
}
.socials a:hover .socials__reach strong { color: var(--brand, var(--magenta)); }

@media (max-width: 900px) {
  .socials a { grid-template-columns: auto auto 1fr auto auto; }
  .socials__handle { display: none; }
}

@media (max-width: 640px) {
  .socials a { grid-template-columns: auto auto 1fr auto; gap: 14px; padding: 14px 4px; }
  .socials__reach { display: none; }
  .socials__icon { width: 38px; height: 38px; border-radius: 10px; }
  .socials__icon svg { width: 18px; height: 18px; }
}

.contact__base {
  position: relative; z-index: 2;
  margin-top: 80px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(243,236,223,0.5);
}
.contact__base a { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.contact__base-mid { text-align: center; }

.contact__wordmark {
  position: absolute; left: 0; right: 0; bottom: -2vw;
  text-align: center;
  font-family: var(--display);
  font-size: 32vw;
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243,236,223,0.08);
  text-stroke: 1px rgba(243,236,223,0.08);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  left: 50%; bottom: 32px;
  transform: translate(-50%, 30px);
  opacity: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  z-index: 200;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============================================================
   MINI PLAYER (now-playing)
   ============================================================ */
.mini-player {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 150;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px 10px 10px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--mono);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.4);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .45s ease;
  max-width: 340px;
  min-width: 280px;
}
.mini-player.hidden {
  transform: translateY(160%) scale(0.9);
  opacity: 0;
  pointer-events: none;
}
.mini-player.is-pulsing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--magenta);
  opacity: 0;
  animation: mp-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes mp-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.1); }
}

.mp-cover {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.mp-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  animation: mp-spin 14s linear infinite;
  animation-play-state: paused;
}
.mini-player.is-playing .mp-cover img { animation-play-state: running; }
.mp-cover::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px rgba(243,236,223,0.2);
}
@keyframes mp-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.mp-info { flex: 1; min-width: 0; line-height: 1; display: flex; flex-direction: column; gap: 4px; }
.mp-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 500;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 5px;
}
.mp-tag .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--magenta);
  border-radius: 50%;
  animation: mp-blink 1.4s ease-in-out infinite;
}
.mini-player:not(.is-playing) .mp-tag .dot { animation: none; opacity: 0.4; }
@keyframes mp-blink { 50% { opacity: 0.3; } }

.mp-title {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: color .25s;
  display: block;
}
.mp-title:hover { color: var(--magenta); }
.mp-artist {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
}
.mp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 2px;
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  background: rgba(30,215,96,0.12);
  border: 1px solid rgba(30,215,96,0.35);
  color: #1ed760;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}
.mp-link svg { width: 11px; height: 11px; flex-shrink: 0; }
.mp-link:hover {
  background: #1ed760;
  border-color: #1ed760;
  color: var(--ink);
}

.mp-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .25s, transform .25s, color .25s;
}
.mp-btn:hover { background: rgba(243,236,223,0.12); transform: scale(1.05); }

.mp-play {
  width: 38px; height: 38px;
  background: var(--cream);
  color: var(--ink);
}
.mp-play:hover { background: var(--magenta); color: var(--cream); transform: scale(1.06); }
.mp-play .icon-pause { display: none; }
.mini-player.is-playing .mp-play .icon-play  { display: none; }
.mini-player.is-playing .mp-play .icon-pause { display: block; }
.mp-play svg { width: 13px; height: 13px; }

.mp-close { width: 26px; height: 26px; opacity: 0.55; }
.mp-close:hover { opacity: 1; }
.mp-close svg { width: 11px; height: 11px; }

@media (max-width: 720px) {
  .mini-player {
    bottom: 14px;
    left: 14px;
    right: 14px;
    max-width: none;
    min-width: 0;
    border-radius: 16px;
    padding: 10px 12px;
    gap: 12px;
  }
  .mp-cover { width: 44px; height: 44px; }
  .mp-title { font-size: 15px; }
  .mp-tag { font-size: 8.5px; letter-spacing: 0.24em; margin-bottom: 3px; }
  .mp-artist { font-size: 9px; letter-spacing: 0.2em; }
  .mp-link { font-size: 8.5px; padding: 3px 8px 3px 6px; letter-spacing: 0.16em; }
  .mp-link svg { width: 10px; height: 10px; }
  .mp-play { width: 36px; height: 36px; }
  .mp-close { width: 24px; height: 24px; }
}

@media (max-width: 420px) {
  .mini-player { padding: 9px 10px; gap: 10px; border-radius: 14px; }
  .mp-cover { width: 40px; height: 40px; }
  .mp-title { font-size: 14px; }
  .mp-link span { display: none; }
  .mp-link { padding: 5px; border-radius: 50%; }
  .mp-link svg { width: 11px; height: 11px; }
  .mp-close { display: none; }
}

/* ============================================================
   REVEAL ANIMATIONS — Cinematic
   ============================================================ */

/* Base container — wider travel + smoother curve */
.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 950ms cubic-bezier(.2,.8,.2,1),
    transform 950ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Section header choreography (number, title-mask, rule, tag/cta) --- */
.reveal .section-num {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 120ms;
}
.reveal.is-visible .section-num { opacity: 1; transform: none; }

.reveal .section-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.06em 0.04em 0.08em;
  margin: -0.06em -0.04em -0.08em;
}
.reveal .section-title .word > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1000ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms + 200ms);
}
.reveal.is-visible .section-title .word > span { transform: translateY(0); }

.reveal .section-rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 380ms;
}
.reveal.is-visible .section-rule { transform: scaleX(1); }

.reveal .section-tag,
.reveal .press__cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 500ms;
}
.reveal.is-visible .section-tag,
.reveal.is-visible .press__cta { opacity: 1; transform: none; }

/* --- Bio --- */
.reveal .bio__photo {
  opacity: 0;
  clip-path: inset(8% 10%);
  transition: opacity 900ms ease-out, clip-path 1200ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 200ms;
}
.reveal.is-visible .bio__photo { opacity: 1; clip-path: inset(0); }
.reveal .bio__photo img {
  transform: scale(1.18);
  transition: transform 1500ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 200ms;
}
.reveal.is-visible .bio__photo img { transform: scale(1); }

.reveal .bio__copy > p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 110ms + 350ms);
}
.reveal.is-visible .bio__copy > p { opacity: 1; transform: none; }

.reveal .bio__facts > div {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms, transform 700ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms + 700ms);
}
.reveal.is-visible .bio__facts > div { opacity: 1; transform: none; }

.reveal .dropcap {
  display: inline-block;
  opacity: 0;
  transform: scale(.55) rotate(-10deg);
  transform-origin: 50% 70%;
  transition: opacity 600ms, transform 900ms cubic-bezier(.34,1.45,.6,1);
  transition-delay: 850ms;
}
.reveal.is-visible .dropcap { opacity: 1; transform: scale(1) rotate(0); }

/* --- Discography --- */
.reveal .release--ep {
  opacity: 0;
  transform: perspective(1400px) rotateY(-12deg) translateY(40px);
  transform-origin: center;
  transition: opacity 1000ms, transform 1200ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 200ms;
}
.reveal.is-visible .release--ep {
  opacity: 1;
  transform: perspective(1400px) rotateY(0deg) translateY(0);
}

.reveal .singles__heading {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 700ms, transform 700ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 300ms;
}
.reveal.is-visible .singles__heading { opacity: 1; transform: none; }

.reveal .singles__list .single {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 750ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 95ms + 420ms);
}
.reveal.is-visible .singles__list .single { opacity: 1; transform: none; }

/* --- Videos: diagonal cascade --- */
.reveal .videos__grid .vid {
  opacity: 0;
  transform: translateY(45px) scale(.95);
  transition: opacity 800ms, transform 900ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 105ms + 250ms);
}
.reveal.is-visible .videos__grid .vid { opacity: 1; transform: none; }

/* --- Stats / Reach --- */
.reveal .stats__lede {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 200ms;
}
.reveal.is-visible .stats__lede { opacity: 1; transform: none; }

.reveal .stat,
.reveal .imp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 110ms + 360ms);
}
.reveal.is-visible .stat,
.reveal.is-visible .imp { opacity: 1; transform: none; }

.reveal .impressions__head {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms, transform 700ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 400ms;
}
.reveal.is-visible .impressions__head { opacity: 1; transform: none; }

/* Subtle scan-line sweeping across stats grid on entry */
.reveal .stats__grid { position: relative; overflow: hidden; }
.reveal .stats__grid::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.07) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.07) 55%,
    transparent 100%);
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 1;
}
.reveal.is-visible .stats__grid::after {
  animation: scanline 1400ms cubic-bezier(.2,.8,.2,1) 400ms forwards;
}
@keyframes scanline {
  to { transform: translateX(110%); }
}

/* --- Press: alternating-direction reveals --- */
.reveal .press__img {
  opacity: 0;
  transition: opacity 950ms, transform 950ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 110ms + 220ms);
}
.reveal .press__img:nth-child(odd)  { transform: translateY(60px); }
.reveal .press__img:nth-child(even) { transform: translateY(-50px); }
.reveal.is-visible .press__img { opacity: 1; transform: translateY(0); }

/* --- Contact / Footer --- */
.contact .contact__left > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 100ms + 200ms);
}
.contact.is-visible .contact__left > * { opacity: 1; transform: none; }

.contact .socials li {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 750ms, transform 800ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 95ms + 350ms);
}
.contact.is-visible .socials li { opacity: 1; transform: none; }

.contact .contact__wordmark {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1200ms, transform 1400ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 800ms;
}
.contact.is-visible .contact__wordmark { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO TITLE — letter mask on load
   ============================================================ */
.hero__letter {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.08em 0 0.14em;
  margin: -0.08em 0 -0.14em;
  line-height: inherit;
}
.hero__letter > span {
  display: inline-block;
  transform: translateY(115%);
  animation: hero-letter-in 1100ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 250ms);
}
@keyframes hero-letter-in {
  to { transform: translateY(0); }
}

/* Hero scroll hint — fade as you leave hero */
.hero__scroll {
  transition: opacity 400ms ease-out;
}
.hero.is-scrolled-past .hero__scroll { opacity: 0; pointer-events: none; }

/* ============================================================
   SCROLL PROGRESS (left side)
   ============================================================ */
.scroll-progress {
  position: fixed;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(243,236,223,0.06);
  z-index: 31;
  pointer-events: none;
}
.scroll-progress__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--scroll-progress, 0%);
  background: linear-gradient(180deg,
    var(--magenta) 0%,
    var(--violet) 45%,
    var(--blue) 100%);
  box-shadow:
    0 0 12px rgba(233,30,139,0.55),
    0 0 4px rgba(160,32,240,0.7);
}
.scroll-progress__dot {
  position: absolute;
  left: 50%;
  top: var(--scroll-progress, 0%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow:
    0 0 0 2px rgba(233,30,139,0.55),
    0 0 14px rgba(233,30,139,0.7);
}
@media (max-width: 760px) { .scroll-progress { display: none; } }

/* ============================================================
   NAV — active state underline
   ============================================================ */
.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .35s;
}
.nav a.is-active {
  color: var(--bone);
  border-bottom-color: var(--magenta);
}

/* No-JS / print / reduced-motion fallbacks */
.no-js .reveal,
.no-js .reveal *,
.no-js .hero__letter > span {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  animation: none !important;
}
@media print {
  .reveal, .reveal *, .hero__letter > span {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal *,
  .hero__letter > span,
  .scroll-progress__fill,
  .scroll-progress__dot {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal .stats__grid::after { display: none; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__portrait { position: relative; right: auto; top: auto; margin: 0 auto; }
  .bio__grid { grid-template-columns: 1fr; }
  .disco__layout { grid-template-columns: 1fr; gap: 60px; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid .stat--feat { grid-column: 1 / -1; }
  .press__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .contact__inner { grid-template-columns: 1fr; }
  .impressions__grid { gap: 12px; }
  .imp { padding: 20px 18px; gap: 14px; }
  .imp__num { font-size: clamp(32px, 5.4vw, 48px); }
}

/* ---- phones (iPhone 17 Pro is ~393px) ---- */
@media (max-width: 760px) {
  :root { --pad: 18px; }

  .topbar { grid-template-columns: 1fr auto; padding: 14px var(--pad); }
  .label-pill { display: none; }
  .rail { display: none; }
  .brand { font-size: 20px; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 12px auto auto auto;
    padding: 100px var(--pad) 40px;
    gap: 18px;
    min-height: auto;
  }
  .hero__meta { min-height: 12px; }
  .hero__portrait {
    position: relative;
    width: 78%;
    max-width: 320px;
    right: auto; bottom: auto; top: auto;
    margin: 4px auto 0;
    grid-row: 2;
  }
  .hero__title {
    grid-row: 3;
    grid-column: 1;
    font-size: clamp(72px, 26vw, 140px);
    padding-right: 0;
    margin-left: -2px;
    text-align: center;
  }
  .hero__caption {
    grid-row: 4;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .hero__caption-row { grid-template-columns: 64px 1fr; gap: 10px; }
  .hero__scroll { display: none; }

  /* MARQUEE — smaller */
  .marquee__track { font-size: 24px; gap: 18px; }
  .marquee__track .dot { font-size: 10px; }

  /* SECTION HEADS — stack onto 2 rows */
  section { padding: 70px var(--pad); }
  .section-head {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 14px;
    margin-bottom: 36px;
    align-items: center;
  }
  .section-num { grid-column: 1; grid-row: 1; }
  .section-rule { grid-column: 2; grid-row: 1; margin-bottom: 0; height: 1px; }
  .section-title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(54px, 14vw, 84px);
  }
  .section-tag, .press__cta {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
    margin-bottom: 0;
  }

  /* BIO */
  .bio__photo { aspect-ratio: 4/5; }
  .bio__lede { font-size: 19px; }
  .bio__copy { font-size: 16px; line-height: 1.65; }
  .dropcap { font-size: 56px; margin: 4px 10px 0 0; }
  .bio__facts { grid-template-columns: 1fr; gap: 14px; }

  /* DISCO */
  .release--ep { gap: 16px; }
  .release__meta h3 { font-size: 32px; }

  .single {
    grid-template-columns: auto 56px 1fr auto;
    gap: 14px;
    padding: 14px 4px;
  }
  .single__no { font-size: 10px; }
  .single__cover { width: 56px; height: 56px; }
  .single__title { font-size: 24px; gap: 6px; }
  .single__feat { font-size: 9px; letter-spacing: 0.15em; }
  .single__year { font-size: 10px; }
  .single .play--sm { display: none; }
  .single:hover { padding-left: 12px; }

  /* VIDEOS — single column, comfortable */
  .videos__grid { grid-template-columns: 1fr; }
  .vid { padding: 16px; }
  .vid h4 { font-size: 20px; }

  /* STATS */
  .stats__grid { grid-template-columns: 1fr; }
  .stats__grid .stat--feat { grid-column: auto; padding: 32px 16px; }
  .stat { padding: 28px 16px; gap: 12px; }
  .stat__num { font-size: clamp(56px, 18vw, 96px); }
  .stat__num--xl { font-size: clamp(96px, 30vw, 160px); }
  .stat__label { font-size: 10px; letter-spacing: 0.22em; }
  .stats__lede { font-size: 17px; margin-bottom: 48px; }

  /* IMPRESSIONS — stack to 1 column, dense layout */
  .impressions { margin-top: 48px; padding-top: 32px; }
  .impressions__head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 20px; }
  .impressions__kicker { font-size: 10px; letter-spacing: 0.28em; }
  .impressions__total { font-size: 11px; letter-spacing: 0.16em; }
  .impressions__grid { grid-template-columns: 1fr; gap: 10px; }
  .imp { padding: 16px 16px 16px 14px; gap: 14px; border-radius: 14px; }
  .imp__icon { width: 40px; height: 40px; border-radius: 10px; }
  .imp__icon svg { width: 20px; height: 20px; }
  .imp__num { font-size: clamp(34px, 11vw, 48px); }
  .imp__platform { font-size: 9px; letter-spacing: 0.26em; }
  .imp__label { font-size: 9px; letter-spacing: 0.28em; }
  .imp__arrow { font-size: 18px; }

  /* PRESS */
  .press__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .press__img--wide { grid-column: span 2; }
  .press__img--tall { grid-row: span 2; }

  /* CONTACT */
  .contact { padding: 80px var(--pad) 30px; }
  .contact__title { font-size: clamp(48px, 14vw, 72px); }
  .contact__copy { font-size: 15px; }
  .email { font-size: 17px; word-break: break-all; }
  .contact__base {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 9px;
    margin-top: 56px;
  }
  .contact__base-mid { text-align: center; }
  .contact__wordmark { font-size: 38vw; }

}

/* very narrow phones */
@media (max-width: 380px) {
  .hero__title { font-size: 64px; }
  .section-title { font-size: 44px; }
  .single { grid-template-columns: 48px 1fr auto; }
  .single__no { display: none; }
  .single__cover { width: 48px; height: 48px; }
  .single__title { font-size: 22px; }
  .imp { padding: 14px; gap: 12px; }
  .imp__num { font-size: clamp(30px, 12vw, 42px); }
  .imp__arrow { display: none; }
}
