:root {
  color-scheme: dark;
  --bg: #07070b;
  --bg-soft: #0f0d14;
  --panel: rgba(15, 13, 20, 0.85);
  --panel-2: rgba(255,255,255,0.04);
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.24);
  --text: #f6f3f5;
  --muted: rgba(246,243,245,0.68);
  --pink: #ff0a74;
  --pink-soft: #ff77b1;
  --rose: #d7a8b5;
  --paper: #ece0da;
  --shadow: 0 30px 80px rgba(0,0,0,0.42);
  --ease: cubic-bezier(.2,.7,.2,1);
  --shell: min(100% - 56px, 1260px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,10,116,.16), transparent 25%),
    radial-gradient(circle at 84% 18%, rgba(203,105,147,.12), transparent 24%),
    linear-gradient(180deg, #050508 0%, #09080d 22%, #0a0a10 48%, #06060a 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 14px;
  top: -100px;
  padding: 11px 14px;
  background: var(--pink);
  color: #fff;
  z-index: 999;
  text-decoration: none;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-inline: clamp(20px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5,5,8,.75), rgba(5,5,8,.35));
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(255,255,255,.08);
  background: rgba(8,8,12,.86);
}
.brand-mark { width: clamp(178px, 24vw, 250px); }
.brand-mark img { width: 100%; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.site-nav a,
.menu-button {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
  text-decoration: none;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  padding: 48px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.02) 0, transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.28) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .08;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 88%);
  pointer-events: none;
}
.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}
.hero-blur-a {
  width: 340px;
  height: 340px;
  left: -90px;
  top: 90px;
  background: radial-gradient(circle, rgba(255,10,116,.42), rgba(255,10,116,0));
}
.hero-blur-b {
  width: 440px;
  height: 440px;
  right: -120px;
  top: 180px;
  background: radial-gradient(circle, rgba(158,70,111,.32), rgba(158,70,111,0));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}
.hero-copy {
  position: relative;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(13,11,18,.84), rgba(7,7,11,.72));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-copy::after {
  inset: auto 16px 16px auto;
  width: 110px;
  height: 110px;
  border-left: 0;
  border-top: 0;
  border-right: 2px solid rgba(255,10,116,.38);
  border-bottom: 2px solid rgba(255,10,116,.38);
}
.eyebrow,
.section-kicker,
.hero-mini-label,
.callout-label {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow, .section-kicker {
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 700;
}
.hero-logo {
  width: min(470px, 88%);
  margin: 18px 0 20px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}
.hero-title-block { max-width: 600px; }
.hero-mini-label {
  color: rgba(255,255,255,.46);
  font-size: 11px;
  margin-bottom: 12px;
}
.sorrow-title {
  margin: 0;
  line-height: .86;
}
.sorrow-title span {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(84px, 15vw, 184px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.055em;
  color: #f8eff2;
  text-shadow:
    0 2px 0 rgba(255,255,255,.12),
    0 16px 34px rgba(255,10,116,.12),
    0 26px 44px rgba(0,0,0,.42);
  position: relative;
}
.sorrow-title span::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 4%;
  bottom: 8px;
  height: 12px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,10,116,.75) 20%, rgba(255,119,177,.65) 62%, transparent 100%);
  filter: blur(8px);
  opacity: .9;
  z-index: -1;
}
.hero-tagline {
  margin: 16px 0 0;
  max-width: 510px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--pink), #ff328d 70%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(255,10,116,.22);
}
.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.03);
}
.quote-strip {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-left: 3px solid var(--pink);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}
.hero-meta-card {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-meta-card small,
.video-status,
.platform-meta,
.footer-links a,
.footer-inner p {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-meta-card small {
  display: block;
  color: var(--pink-soft);
  margin-bottom: 10px;
  font-size: 11px;
}
.hero-meta-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.hero-meta-card span {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.45;
}
.hero-visual { position: relative; }
.cover-wrap {
  position: relative;
  width: min(100%, 530px);
  margin-inline: auto;
}
.cover-backdrop {
  position: absolute;
  inset: 9% -7% -7% 9%;
  background:
    linear-gradient(135deg, rgba(255,10,116,.18), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  transform: rotate(-4deg);
}
.cover-frame {
  position: relative;
  margin: 0;
  background: rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  z-index: 2;
}
.cover-frame img {
  width: 100%;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}
.tape {
  position: absolute;
  width: 110px;
  height: 24px;
  background: rgba(238,230,226,.92);
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  z-index: 3;
}
.tape-a { top: 8px; left: 12px; transform: rotate(-8deg); }
.tape-b { right: 18px; bottom: 18px; transform: rotate(7deg); }
.lyric-collage {
  position: absolute;
  inset: auto -18px -42px auto;
  z-index: 4;
  display: grid;
  gap: 14px;
  width: min(300px, 58%);
}
.lyric-note {
  color: #191419;
  background: rgba(236,224,218,.96);
  box-shadow: 0 22px 36px rgba(0,0,0,.32);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  line-height: 1.2;
}
.note-a {
  padding: 18px 18px 16px;
  font-size: 26px;
  transform: rotate(-4deg);
}
.note-b {
  padding: 16px 17px 14px;
  font-size: 22px;
  transform: rotate(2deg);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
}
.scroll-cue span { color: var(--pink); }

.statement-section {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  padding: 13px 0;
  margin-right: 40px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .2em;
  color: rgba(255,255,255,.22);
  text-transform: uppercase;
  font-size: 12px;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.statement-grid {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 24px;
  align-items: start;
  padding-block: 72px;
}
.statement-copy {
  margin: 0;
  max-width: 940px;
  font-size: clamp(28px, 4.8vw, 54px);
  line-height: 1.05;
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.statement-copy em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  text-transform: none;
  color: var(--pink-soft);
}

.video-section,
.final-art-section { padding-block: 112px; }
.section-heading {
  display: grid;
  grid-template-columns: 170px 1fr 330px;
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}
.section-heading h2,
.listen-copy h2,
.signup-copy h2,
.final-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.section-heading p:last-child,
.listen-copy p:last-child,
.signup-copy p:last-child,
.final-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 54% 44%, rgba(255,10,116,.18), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 30%),
    linear-gradient(135deg, #110f16, #06060a 62%, #140b11);
  box-shadow: var(--shadow);
}
.video-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 4px);
  opacity: .35;
}
.video-wordmark {
  position: absolute;
  inset: auto auto 52px 42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(88px, 16vw, 230px);
  font-style: italic;
  color: rgba(255,255,255,.05);
  letter-spacing: -.08em;
}
.play-button {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(5,5,7,.58);
  display: grid;
  place-items: center;
  cursor: default;
  box-shadow: 0 0 0 0 rgba(255,10,116,.18);
  animation: pulse 2.6s ease-out infinite;
}
.play-triangle {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
  margin-left: 5px;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 24px rgba(255,10,116,0); } 0% { box-shadow: 0 0 0 0 rgba(255,10,116,.22); } }
.video-status-wrap {
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 2;
}
.video-status {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 700;
}
.video-status strong { color: #fff; font-size: 13px; }
.video-status-detail {
  margin: 10px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 14px;
}
.video-frame-corners::before,
.video-frame-corners::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: rgba(255,119,177,.95);
}
.video-frame-corners::before {
  top: 20px;
  right: 20px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.video-frame-corners::after {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.listen-section {
  position: relative;
  padding-block: 112px 120px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, #09090d, #100d15);
}
.listen-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -260px;
  top: -100px;
  border-radius: 50%;
  border: 1px solid rgba(255,10,116,.11);
  box-shadow: 0 0 0 88px rgba(255,10,116,.018), 0 0 0 176px rgba(255,10,116,.012);
}
.listen-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px,.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
}
.listen-copy { position: sticky; top: 120px; }
.listen-callout {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--pink);
  background: rgba(255,255,255,.04);
}
.callout-label {
  display: inline-block;
  font-size: 11px;
  color: var(--pink-soft);
  margin-bottom: 8px;
}
.listen-callout p { margin: 0; color: rgba(255,255,255,.72); }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.platform-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025));
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,10,116,.58);
  background: rgba(255,10,116,.055);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
.platform-card.is-placeholder { cursor: default; }
.platform-glyph {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,119,177,.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--pink-soft);
}
.platform-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
}
.platform-meta {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.44);
  font-size: 10px;
}
.platform-arrow { color: rgba(255,255,255,.36); font-size: 18px; }

.lyric-break {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 110px 24px;
  background: radial-gradient(circle at center, rgba(255,10,116,.11), transparent 42%), #06060a;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lyric-paper {
  position: relative;
  max-width: 920px;
  padding: 66px 82px;
  color: #171217;
  background: var(--paper);
  box-shadow: 0 32px 85px rgba(0,0,0,.55);
  transform: rotate(-1.3deg);
  clip-path: polygon(1% 5%, 5% 2%, 11% 4%, 18% 1%, 28% 3%, 35% 1%, 44% 3%, 52% 0, 61% 2%, 69% 1%, 78% 4%, 86% 1%, 95% 4%, 99% 2%, 98% 12%, 100% 23%, 98% 36%, 100% 48%, 98% 62%, 100% 76%, 98% 88%, 99% 97%, 91% 99%, 83% 97%, 73% 100%, 62% 97%, 52% 99%, 42% 97%, 33% 100%, 22% 97%, 12% 100%, 3% 97%, 2% 85%, 0 70%, 2% 56%, 0 42%, 2% 28%);
}
.lyric-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.4' numOctaves='5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.lyric-paper blockquote {
  position: relative;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.18;
  letter-spacing: -.025em;
  text-align: center;
}
.paper-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  background: #5b1533;
  box-shadow: 0 4px 5px rgba(0,0,0,.3);
}

.signup-section {
  position: relative;
  padding-block: 112px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,10,116,.96), rgba(232,17,113,.95)),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}
.signup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 35%);
  opacity: .35;
  pointer-events: none;
}
.signup-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.signup-section .section-kicker { color: rgba(255,255,255,.82); }
.signup-copy p:last-child { color: rgba(255,255,255,.82); }
.signup-form {
  padding: 26px;
  background: rgba(15,8,13,.18);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
}
.signup-form label[for="email"] {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.signup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.signup-row input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 0 16px;
  outline: none;
}
.signup-row input::placeholder { color: rgba(255,255,255,.68); }
.signup-row input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.16);
}
.signup-section .button-primary {
  min-width: 170px;
  background: #08080a;
  box-shadow: none;
}
.signup-section .button-primary:hover { background: #181319; }
.consent-row {
  margin-top: 13px;
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,.82);
}
.consent-row input { margin-top: 2px; accent-color: #09090a; }
.form-message {
  min-height: 18px;
  margin: 12px 0 0;
  font-weight: 700;
}

.final-art-section { background: linear-gradient(180deg, #09090b, #050507); }
.final-art-grid {
  display: grid;
  grid-template-columns: minmax(280px, 450px) 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.final-cover {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  transform: rotate(-1.6deg);
}
.final-copy h2 { font-size: clamp(66px, 10vw, 144px); }
.release-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.release-checklist span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--pink-soft);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050506;
}
.footer-inner {
  min-height: 146px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
}
.footer-inner > img { width: 190px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 11px;
}
.footer-inner p {
  color: rgba(255,255,255,.35);
  font-size: 11px;
  white-space: nowrap;
}

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .listen-inner, .signup-grid, .final-art-grid { grid-template-columns: 1fr; }
  .listen-copy { position: static; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 34px, 820px); }
  .site-header { min-height: 72px; padding-inline: 17px; }
  .brand-mark { width: 156px; }
  .menu-button { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 17px 18px;
    background: rgba(7,7,11,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero { min-height: auto; padding: 34px 0 82px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 24px 22px; }
  .hero-logo { width: min(390px, 92%); }
  .sorrow-title span { font-size: clamp(76px, 19vw, 128px); }
  .quote-strip { font-size: clamp(22px, 6vw, 28px); }
  .hero-meta-grid { grid-template-columns: 1fr; }
  .lyric-collage {
    position: relative;
    inset: auto;
    width: min(100%, 340px);
    margin: 24px 0 0 auto;
  }
  .statement-grid { grid-template-columns: 1fr; gap: 16px; padding-block: 56px; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .signup-form { padding: 22px 18px; }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 34px;
    gap: 18px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero-actions,
  .signup-row,
  .platform-grid { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .platform-grid { display: grid; }
  .cover-frame { padding: 12px; }
  .lyric-paper { padding: 54px 28px; }
  .video-wordmark { left: 20px; bottom: 38px; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 28px, 560px); }
  .hero-copy::before,
  .hero-copy::after,
  .video-frame-corners,
  .scroll-cue { display: none; }
  .hero-copy { padding: 22px 18px; }
  .sorrow-title span { font-size: clamp(68px, 20vw, 110px); }
  .statement-copy { font-size: clamp(24px, 10vw, 40px); }
  .section-heading h2,
  .listen-copy h2,
  .signup-copy h2,
  .final-copy h2 { font-size: clamp(38px, 12vw, 68px); }
  .quote-strip { width: 100%; padding-block: 10px; }
  .video-status-wrap { left: 18px; bottom: 18px; }
  .video-wordmark { font-size: clamp(70px, 22vw, 140px); }
  .note-a { font-size: 21px; }
  .note-b { font-size: 18px; }
  .signup-section { padding-block: 84px; }
}
