/* melomi.app landing v3 - "two worlds" golden stage / sunlit lounge.
   Rebuilt from zero per marketing/landing/design-direction-v3.md (2026-07-19).
   Single token block. Mobile-first. No 1px borders, no blur glows, no gradient text.
   Section rhythm is owned entirely by .act (padding-block), so adjacent acts
   never double their padding at the seam. */

@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces72pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces72pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces72pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --espresso: #0E0B08;
  --espresso-soft: #1B140E;
  --cream: #F7EFE2;
  --cream-deep: #EFE3CF;
  --ink: #2B1E16;
  --paper: #FBF6EC;
  --paper-faint: #A89E8F;
  --gold: #FFC93C;
  --gold-pressed: #D89A1E;
  --gold-ink: #3A2400;
  --ember: #FF6B3D;
  /* The app's real CTA material (AppTheme.Paywall.ctaGradient: vinylGold ->
     ember, topLeading -> bottomTrailing) - every solid "gold" shape on this
     page (buttons, badges, pills, checkmarks) uses THIS, not flat --gold.
     Flat --gold is reserved for text accents only (the italic "Get", eyebrow
     labels), where a filled gradient reads as noise, not brand. */
  --cta-start: #F5B942;
  --cta-end: #FF6B3D;
  --cta-gradient: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  --cta-pressed: #C24A1E;

  --radius-lg: 20px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --rhythm: clamp(3.5rem, 7vw, 6.5rem);
  --rhythm-sm: clamp(2.5rem, 5vw, 4rem);

  --sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--espresso);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Focus states ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
details:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Acts (the two-worlds layout engine) ---------- */
.act {
  padding-block: var(--rhythm);
  position: relative;
}
.act--dark {
  background: var(--espresso);
  color: var(--paper);
}
.act--cream {
  background: var(--cream);
  color: var(--ink);
}
.act--sm {
  padding-block: var(--rhythm-sm);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.act--cream .eyebrow { color: var(--gold-pressed); }

.section-title {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0 0 1.25rem;
}

.gold-text { color: var(--gold); }
.act--cream .gold-text { color: var(--gold-pressed); }

/* Marker highlight: rough gold/ember swipe behind emphasis text. */
.marker {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.marker::before {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  top: 0.28em;
  bottom: 0.08em;
  background: var(--ember);
  opacity: 0.85;
  transform: rotate(-1.1deg);
  border-radius: 3px 8px 4px 9px / 6px 3px 8px 3px;
  z-index: 0;
}
.marker span { position: relative; z-index: 1; color: var(--espresso); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cta-gradient);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 1.6rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--cta-pressed);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--gold-pressed); }
.btn-badge { display: inline-flex; color: var(--gold-ink); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary { transition: none; }
}

.btn-text {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.1em;
}
.act--dark .btn-text { color: var(--paper); border-bottom-color: var(--gold); }
.btn-text:hover { border-bottom-color: var(--ember); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--espresso);
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  display: none;
  transform: translateY(110%);
  transition: transform 220ms ease-out;
  z-index: 150;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn-primary { width: 100%; justify-content: center; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* ================= ACT 1: HERO ================= */
.hero-header {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--paper);
  width: fit-content;
}
.hero-nav img { border-radius: 50%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-eyebrow {
  display: inline-block;
  background: var(--cta-gradient);
  color: var(--gold-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 1.1rem;
}

.h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
}
.h1 .gold-italic {
  font-style: italic;
  color: var(--gold);
}

.lede {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--paper);
  max-width: 46ch;
  margin: 1.5rem 0 0;
}

.siri-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--espresso-soft);
  color: var(--paper-faint);
  font-size: 0.92rem;
}
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.eq span {
  display: inline-block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.eq span:nth-child(3) { height: 65%; animation-delay: 0.3s; }
.eq span:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.eq span:nth-child(5) { height: 50%; animation-delay: 0.6s; }
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; height: 70% !important; }
}

/* ---------- Reveal card (signature element, reused in Act 4) ---------- */
.reveal-card {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--espresso-soft);
  overflow: hidden;
  isolation: isolate;
}
.reveal-card.is-hero {
  cursor: pointer;
}
.reveal-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255, 201, 60, 0.22), transparent 62%);
  pointer-events: none;
}
.reveal-tag {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-gradient);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(255, 107, 61, 0.36), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  z-index: 3;
  transition: opacity 250ms ease-out;
}

.reveal-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 320ms ease-out, transform 320ms ease-out;
  z-index: 2;
  cursor: pointer;
}
.giftbox {
  width: 48%;
  aspect-ratio: 1;
  position: relative;
  transform-origin: 50% 82%;
  animation: giftbox-idle 2.4s ease-in-out infinite;
}
.giftbox-body {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 82%;
  height: 58%;
  border-radius: 6px 6px 14px 14px;
  background: linear-gradient(180deg, #FFD34E, #F5A623 62%, #E68A16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.giftbox-ribbon-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 15%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8A5A20, #C98B3A 48%, #7A4E18);
}
.giftbox-lid {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 92%;
  transform: translateX(-50%);
  transform-origin: center bottom;
  height: 23%;
  z-index: 4;
  transition: transform 420ms cubic-bezier(.3,1.4,.5,1), opacity 320ms ease-out;
}
.giftbox-lid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFE49B, #FFC93C 60%, #F0A82A);
}
.giftbox-ribbon-lid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 15%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8A5A20, #C98B3A 48%, #7A4E18);
  z-index: 1;
}
.giftbox-bow {
  position: absolute;
  left: 50%;
  top: -38%;
  transform: translateX(-50%);
  transform-origin: center bottom;
  width: 46%;
  aspect-ratio: 2 / 1;
  z-index: 2;
  animation: giftbox-bow-nudge 3.2s ease-in-out infinite;
}
.giftbox-bow-l,
.giftbox-bow-r {
  position: absolute;
  top: 4%;
  width: 50%;
  height: 84%;
  background: linear-gradient(135deg, #FFE9B8, #FFC93C 58%, #E89A24);
}
.giftbox-bow-l {
  left: 0;
  border-radius: 60% 42% 46% 54%;
  transform: rotate(-24deg);
}
.giftbox-bow-r {
  right: 0;
  border-radius: 42% 60% 54% 46%;
  transform: rotate(24deg);
}
.giftbox-bow-knot {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  width: 26%;
  height: 58%;
  border-radius: 9px;
  background: linear-gradient(155deg, #FFE9B8, #F0A82A);
  z-index: 2;
}
.giftbox-hint {
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  animation: giftbox-hint-pulse 2.2s ease-in-out infinite;
  transition: opacity 250ms ease-out;
}
@keyframes giftbox-idle {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-5%) scaleY(1.015); }
}
@keyframes giftbox-bow-nudge {
  0%, 92%, 100% { transform: translateX(-50%) rotate(0deg); }
  96% { transform: translateX(-50%) rotate(4deg); }
}
@keyframes giftbox-hint-pulse {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.reveal-song {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 380ms ease-out, transform 380ms ease-out;
  z-index: 2;
}
.reveal-cover {
  width: 40%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--espresso);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--espresso-soft);
}
.reveal-cover img { width: 78%; height: auto; aspect-ratio: 1; object-fit: contain; display: block; }
.reveal-song-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0;
}
.reveal-subtitle {
  color: #E4DACB;
  font-weight: 600;
  font-size: 0.85rem;
  margin: -0.4rem 0 0;
}
.reveal-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
}
.reveal-waveform span {
  display: inline-block;
  width: 3px;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: bottom;
  animation: wave-loop 1.6s ease-in-out infinite;
}
@keyframes wave-loop {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}
.reveal-waveform span:nth-child(3n) { animation-delay: 0.15s; }
.reveal-waveform span:nth-child(3n+1) { animation-delay: 0.3s; }
.reveal-waveform span:nth-child(5n) { animation-duration: 1.9s; }
.reveal-waveform span:nth-child(7n) { animation-duration: 1.3s; }
.reveal-lyric {
  font-family: var(--display);
  font-style: italic;
  color: var(--paper-faint);
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
  padding-inline: 0.25rem;
}
.reveal-cta {
  display: inline-block;
  margin-top: 0.25rem;
  background: var(--cta-gradient);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 4px 0 var(--gold-pressed);
}

/* reveal-card state machine */
.reveal-card.is-open .reveal-tag { opacity: 0; }
/* The static, already-open card (Act 4) has no unwrap sequence to hide the
   tag after, so it stays visible instead of fading with .is-open. Placed
   after the rule above so equal-specificity cascade order favors this one. */
.reveal-card.is-final .reveal-tag { opacity: 1; }
.reveal-card.is-open .giftbox-lid { transform: translateX(-50%) translateY(-140%) rotate(-8deg); opacity: 0; }
.reveal-card.is-open .giftbox-hint { opacity: 0; }
.reveal-card.is-open .reveal-wrap { opacity: 0; transform: scale(0.85); }
.reveal-card.is-revealed .reveal-song { opacity: 1; transform: scale(1); }
.reveal-card:not(.is-revealed) .reveal-waveform,
.reveal-card:not(.is-revealed) .reveal-lyric { visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  .reveal-tag, .giftbox-lid, .reveal-wrap, .reveal-song { transition: none; }
  .reveal-waveform span { animation: none; transform: scaleY(0.65); }
  .giftbox, .giftbox-bow, .giftbox-hint { animation: none; }
}

/* ================= ACT 1.5: MARQUEE ================= */
.marquee {
  overflow: hidden;
  border-top: 2px solid var(--espresso-soft);
  border-bottom: 2px solid var(--espresso-soft);
  padding-block: 1.1rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee-scroll 42s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ================= ACT 2: PROBLEM / EVERY OCCASION ================= */
.kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.3;
  max-width: 32ch;
  margin: 0 0 2.5rem;
}

.guilt-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  border-top: 2px solid var(--ink);
}
.guilt-list li { border-bottom: 2px solid var(--ink); }
.guilt-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.3;
  text-decoration: none;
  color: var(--ink);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 4px;
  background-position: 0 100%;
  transition: background-size 220ms ease-out;
}
.guilt-link:hover, .guilt-link:focus-visible {
  background-size: 100% 4px;
}
.guilt-arrow {
  flex: none;
  color: var(--ember);
  font-size: 1.3rem;
  transform: translateX(0);
  transition: transform 220ms ease-out;
}
.guilt-link:hover .guilt-arrow { transform: translateX(4px); }

.pull-quote {
  width: 100%;
  background: var(--cream-deep);
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
  text-align: center;
}
.pull-quote-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-pressed);
  margin: 0 0 1rem;
}
.pull-quote-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto;
}

/* ================= ACT 3: HOW IT WORKS (zigzag) ================= */
.zigzag {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.zigzag-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 800px) {
  .zigzag-step { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .zigzag-step:nth-child(even) .zigzag-copy { order: 2; }
  .zigzag-step:nth-child(even) .zigzag-shot { order: 1; }
}
.zigzag-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold-pressed);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.zigzag-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 0.6rem;
}
.zigzag-body {
  color: var(--ink);
  max-width: 42ch;
  margin: 0;
}
.zigzag-shot {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: min(100%, 240px);
  border-radius: 28px;
  background: var(--espresso);
  padding: 10px;
  box-shadow: 0 18px 0 -8px rgba(43, 30, 22, 0.18);
}
.phone-frame img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  display: block;
}
.phone-frame img.is-gift-shot {
  aspect-ratio: 390 / 844;
}

.mid-cta { margin-top: 3rem; }

/* ================= ACT 4: THE GIFT ================= */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .gift-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.gift-lede {
  color: var(--paper);
  max-width: 48ch;
  margin: 1rem 0 2rem;
}
.check-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.check-rows li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.check-mark {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cta-gradient);
  color: var(--gold-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.check-rows p { margin: 0; }
.check-rows strong { color: var(--paper); }

/* ================= ACT 5: BATTLES ================= */
.battles-body {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 56ch;
  color: var(--paper);
  margin: 0;
}
.battles-body strong { color: var(--paper); }

/* ================= ACT 6: FAQ ================= */
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 2px solid var(--ink);
  padding-block: 1.2rem;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--gold-pressed);
  transition: transform 200ms ease-out;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--ink);
  max-width: 60ch;
}

/* ================= ACT 7: FINAL CLOSE ================= */
.close-act {
  text-align: left;
  position: relative;
}
.close-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 201, 60, 0.14), transparent 55%);
  pointer-events: none;
}
.close-body {
  color: var(--paper);
  max-width: 52ch;
  margin: 1.25rem 0 2rem;
}

/* ---------- Footer (quiet, inside final dark act) ---------- */
.site-footer {
  background: var(--espresso);
  padding-top: clamp(3rem, 6vw, 4rem);
  border-top: 2px solid var(--espresso-soft);
  margin-top: clamp(3rem, 6vw, 4rem);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2.5rem;
}
.footer-wordmark {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
  color: var(--paper-faint);
}
.footer-links { display: flex; gap: 1.5rem; font-size: 0.9rem; }
.footer-links a { text-decoration: none; color: var(--paper-faint); }
.footer-links a:hover { color: var(--gold); }
.copyright { font-size: 0.85rem; color: var(--paper-faint); margin: 0; }

/* ================= OCCASION PAGES (/songs/*) ================= */
.article-header {
  background: var(--espresso);
  padding-block: 1.5rem;
}
.article-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--paper);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
.article-wordmark img { border-radius: 50%; }

.song-act { padding-block: var(--rhythm-sm); }
.song-act--dark { background: var(--espresso); color: var(--paper); }
.song-act--cream { background: var(--cream); color: var(--ink); }

.article-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.04;
  margin: 0 0 1.25rem;
  max-width: 20ch;
}
.article-lede {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 2rem;
}
.article-cta { margin-bottom: 0.5rem; }

.article-block {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 62ch;
}
.article-block h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 0.75rem;
}
.article-block p { margin: 0; color: var(--ink); }

.article-close {
  padding-block: 0.5rem 2.5rem;
}
.article-crosslinks {
  color: var(--paper-faint);
  font-size: 0.95rem;
}
.article-crosslinks a { color: var(--gold); text-decoration: none; border-bottom: 2px solid transparent; }
.article-crosslinks a:hover { border-bottom-color: var(--gold); }

/* ============ HEAR IT: the before/after pair ============
   Two cards, the spoken brief and the song that came back. Both are real product
   output. The gold left border on the "after" card is the only visual difference
   and it carries the whole point: same words, transformed. Uses the existing
   cream-act tokens rather than introducing any new colour. */
.hear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 860px) {
  .hear-grid { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
.hear-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.25rem;
}
.hear-card--after { border-left: 4px solid var(--gold); }
.hear-step {
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin: 0 0 .85rem;
}
.hear-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}
/* Full width so the scrubber is usable on a phone, which is where this gets heard. */
.hear-audio { width: 100%; display: block; }
.hear-note {
  margin: .85rem 0 0;
  font-size: .85rem;
  color: var(--paper-faint);
}
