:root{
  --ink:#251b1b;
  --muted:#7f6f6a;
  --cream:#fffaf5;
  --paper:#fffdf9;
  --rose:#b33a4e;
  --rose-dark:#942b3e;
  --coral:#ff6f4d;
  --blush:#f8e4df;
  --line:#ead9cf;
  --green:#28775b;
  --shadow:0 22px 60px rgba(76,42,35,.10);
  --radius:24px;
  --page-max:1280px;
}

*{
  box-sizing:border-box;
}

html{
  background:var(--cream);
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 50% -10%,#fff 0,#fff8f3 35%,var(--cream) 70%);
  font-family:"Trebuchet MS","Segoe UI",Arial,sans-serif;
  min-height:100vh;
  overflow-x:hidden;
}

button,
input,
textarea{
  font:inherit;
}

button{
  color:inherit;
}

/* =========================
   TOP HEADER
   ========================= */

.topbar{
  height:76px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;

  padding-inline:max(18px, calc((100vw - var(--page-max)) / 2));

  border-bottom:1px solid rgba(234,217,207,.75);
  background:rgba(255,250,245,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:10;
}

.brand{
  grid-column:2;
  justify-self:center;

  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
  font-size:22px;
  text-decoration:none;
  color:var(--ink);
  letter-spacing:-.02em;
  white-space:nowrap;
}

.brand span{
  color:var(--rose);
}

.top-progress{
  grid-column:3;
  justify-self:end;

  display:flex;
  gap:12px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  width:230px;
  max-width:100%;
}

.top-progress > span{
  white-space:nowrap;
}

.progress-track{
  height:7px;
  border-radius:99px;
  background:#eee2da;
  overflow:hidden;
  flex:1;
}

.progress-fill{
  height:100%;
  width:0;
  background:linear-gradient(90deg,var(--rose),var(--coral));
  border-radius:inherit;
  transition:width .35s ease;
}

/* =========================
   MAIN APP SHELL
   ========================= */

.app-shell{
  width:min(760px,calc(100% - 32px));
  margin:0 auto;
  padding:56px 0 70px;
  min-height:calc(100vh - 140px);
}

.step-screen{
  display:none;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:44px 46px;
  box-shadow:var(--shadow);
  animation:fadeUp .25s ease;
}

.step-screen.active{
  display:block;
}

.step-screen[data-step="language"]{
  text-align:center;
  padding-top:52px;
}

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

/* =========================
   TYPOGRAPHY
   ========================= */

.eyebrow{
  font-size:11px;
  font-weight:850;
  letter-spacing:.18em;
  color:var(--rose);
  margin-bottom:10px;
}

h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,6vw,50px);
  line-height:1.05;
  letter-spacing:-.035em;
  margin:0 0 14px;
  text-wrap:balance;
}

.lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
  margin:0 0 32px;
}

.subhead{
  font-size:17px;
  margin:30px 0 12px;
}

.subhead.spaced{
  margin-top:36px;
}

.back-link{
  border:0;
  background:transparent;
  padding:0;
  margin:0 0 24px;
  color:var(--muted);
  font-weight:650;
  cursor:pointer;
}

.back-link:hover{
  color:var(--ink);
}

/* =========================
   CHOICE CARDS
   ========================= */

.choice-grid{
  display:grid;
  gap:12px;
}

.language-grid{
    grid-template-columns:repeat(2,220px);
    justify-content:center;
    gap:16px;
    margin-top:30px;
}

.choice-card{
  border:1px solid var(--line);
  background:white;
  border-radius:16px;
  padding:18px;
  text-align:left;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  min-height:60px;
  transition:.16s ease;
  position:relative;
  width:100%;
}

.choice-card:hover{
  border-color:#d9aaa8;
  transform:translateY(-1px);
}

.choice-card.selected{
  border-color:var(--rose);
  box-shadow:0 0 0 2px rgba(179,58,78,.10);
  background:#fff7f7;
}

.choice-card strong{
  font-size:15px;
}

.choice-card small{
  display:block;
  color:var(--muted);
  font-size:11px;
  line-height:1.35;
  margin-left:auto;
  text-align:right;
  max-width:130px;
}

.choice-dot{
  width:20px;
  height:20px;
  border:2px solid #d9beb8;
  border-radius:50%;
  flex:none;
  position:relative;
}

.selected .choice-dot{
  border-color:var(--rose);
}

.selected .choice-dot:after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  background:var(--rose);
  border-radius:50%;
  inset:0;
  margin:auto;
}

.choice-grid.compact{
  grid-template-columns:repeat(2,1fr);
}

.choice-grid.compact.three{
  grid-template-columns:repeat(3,1fr);
}

.compact .choice-card{
  min-height:54px;
  padding:13px 15px;
}

.compact .choice-card small{
  display:none;
}

/* =========================
   FORM FIELDS
   ========================= */

.field{
  margin-top:20px;
}

.field label{
  display:block;
  font-weight:800;
  margin-bottom:8px;
  font-size:14px;
}

.field small{
  display:block;
  color:var(--muted);
  margin-top:7px;
  font-size:12px;
}

.optional{
  font-weight:500;
  color:var(--muted);
}

input,
textarea{
  width:100%;
  border:1px solid #dbc8be;
  background:#fff;
  border-radius:12px;
  padding:14px 15px;
  color:var(--ink);
  outline:none;
  transition:border .15s,box-shadow .15s;
}

textarea{
  resize:vertical;
  line-height:1.5;
}

input:focus,
textarea:focus{
  border-color:var(--rose);
  box-shadow:0 0 0 3px rgba(179,58,78,.09);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.fields-after-choices{
  margin-top:8px;
}

/* =========================
   ACTION BUTTONS
   ========================= */

.actions{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.primary,
.secondary{
  border-radius:12px;
  padding:13px 22px;
  font-weight:850;
  cursor:pointer;
  border:1px solid transparent;
  transition:.15s;
}

.primary{
  background:linear-gradient(135deg,var(--rose),#c34456);
  color:white;
  box-shadow:0 10px 25px rgba(179,58,78,.16);
}

.primary:hover{
  background:linear-gradient(135deg,var(--rose-dark),var(--rose));
  transform:translateY(-1px);
}

.primary.big{
  padding:16px 26px;
  font-size:16px;
}

.secondary{
  background:white;
  border-color:var(--line);
  color:var(--ink);
}

.secondary:hover{
  border-color:#cfaeaa;
  background:#fffaf8;
}

.primary:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

/* =========================
   INFO NOTES
   ========================= */

.prompt-tip,
.privacy-note{
  color:var(--muted);
  font-size:12px;
  background:#f8f0eb;
  border-radius:10px;
  padding:11px 13px;
  margin-top:12px;
}

.privacy-note{
  margin-top:22px;
}

.hidden{
  display:none!important;
}

/* =========================
   GENERATION SCREEN
   ========================= */

.generation-screen{
  text-align:center;
  padding-top:52px;
}

.music-pulse{
  width:82px;
  height:82px;
  border-radius:50%;
  background:linear-gradient(145deg,var(--rose),var(--coral));
  margin:0 auto 24px;
  display:grid;
  place-items:center;
  color:white;
  font-size:33px;
  box-shadow:
    0 0 0 12px rgba(179,58,78,.06),
    0 16px 45px rgba(179,58,78,.22);
  animation:pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
  50%{
    transform:scale(1.035);
    box-shadow:
      0 0 0 20px rgba(179,58,78,.035),
      0 18px 50px rgba(179,58,78,.25);
  }
}

.generation-list{
  display:grid;
  gap:10px;
  text-align:left;
  margin:28px auto;
  max-width:560px;
}

.generation-item{
  display:flex;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  opacity:.46;
  transition:.25s;
}

.generation-item.active,
.generation-item.done{
  opacity:1;
}

.generation-item.done{
  border-color:#cce2d8;
}

.gen-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#eee1da;
  display:grid;
  place-items:center;
  font-weight:850;
  flex:none;
}

.generation-item.active .gen-icon{
  background:var(--rose);
  color:#fff;
}

.generation-item.done .gen-icon{
  background:var(--green);
  color:#fff;
  font-size:0;
}

.generation-item.done .gen-icon:after{
  content:"✓";
  font-size:15px;
}

.generation-item strong,
.generation-item small{
  display:block;
}

.generation-item small{
  color:var(--muted);
  margin-top:3px;
}

.progress-track.large{
  height:10px;
  max-width:560px;
  margin:0 auto;
}

.generation-error{
  color:#9c2a2a;
  background:#fff0f0;
  border:1px solid #f0cccc;
  border-radius:12px;
  padding:13px 15px;
  max-width:560px;
  margin:20px auto 10px;
  text-align:left;
}

/* =========================
   PREVIEW SCREEN
   ========================= */

.preview-screen{
  text-align:center;
}

.song-card{
  margin:28px 0 24px;
  background:linear-gradient(145deg,#fff,#fff6f1);
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  text-align:left;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
  align-items:center;
}

.album-mark{
  width:64px;
  height:64px;
  border-radius:16px;
  background:linear-gradient(145deg,var(--rose),var(--coral));
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
}

.song-meta small,
.song-meta strong,
.song-meta span{
  display:block;
}

.song-meta small{
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.song-meta strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:23px;
  margin:2px 0;
}

.song-meta span{
  color:var(--muted);
  font-size:13px;
}

.song-card audio{
  display:none;
}

.preview-audio-player{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:48px auto minmax(120px,1fr) auto minmax(92px,140px);
  align-items:center;
  gap:12px;
  width:100%;
  margin-top:12px;
  padding:12px 14px;
  border-radius:999px;
  background:#f3f5f6;
}

.audio-play-button,
.audio-volume-button{
  border:0;
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
}

.audio-play-button{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 14px rgba(40,28,28,.08);
  font-size:17px;
}

.audio-volume-button{
  width:30px;
  height:30px;
  font-size:16px;
}

.audio-play-button:focus-visible,
.audio-volume-button:focus-visible,
.audio-seek:focus-visible,
.audio-volume:focus-visible{
  outline:3px solid rgba(196,58,82,.22);
  outline-offset:2px;
}

.audio-time{
  font-size:12px;
  font-variant-numeric:tabular-nums;
  color:var(--muted);
  white-space:nowrap;
}

.audio-seek,
.audio-volume{
  width:100%;
  accent-color:var(--rose);
  cursor:pointer;
}

.audio-volume-control{
  display:grid;
  grid-template-columns:30px 1fr;
  align-items:center;
  gap:6px;
  min-width:0;
}

@media(max-width:640px){
  .preview-audio-player{
    grid-template-columns:44px auto minmax(90px,1fr) auto;
    gap:8px;
    padding:10px 12px;
  }

  .audio-volume-control{
    grid-column:1/-1;
    display:flex;
    justify-content:flex-end;
    width:min(180px,55%);
    justify-self:end;
  }

  .audio-play-button{
    width:40px;
    height:40px;
  }
}

.preview-actions{
  display:grid;
  gap:12px;
  justify-items:center;
}


.preview-secondary{
  min-width:280px;
  max-width:100%;
  padding:13px 22px;
  border-color:#ddc2c2;
  background:#fff;
  color:var(--ink);
  box-shadow:0 6px 18px rgba(76,42,35,.05);
}

.preview-secondary:hover{
  border-color:var(--rose);
  background:#fff7f7;
  color:var(--rose-dark);
  transform:translateY(-1px);
}

.secondary-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.test-note{
  font-size:11px;
  color:var(--muted);
  margin-top:24px;
}

/* =========================
   DIALOG
   ========================= */

dialog{
  border:0;
  border-radius:22px;
  padding:32px;
  width:min(520px,calc(100% - 28px));
  box-shadow:0 30px 100px rgba(30,20,20,.28);
  color:var(--ink);
}

dialog::backdrop{
  background:rgba(37,27,27,.52);
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
}

dialog h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
  margin:10px 0;
}

dialog p{
  color:var(--muted);
  line-height:1.55;
}

.dialog-close{
  position:absolute;
  right:16px;
  top:12px;
  border:0;
  background:transparent;
  font-size:26px;
  cursor:pointer;
  color:var(--muted);
}

.dialog-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#e5f3ed;
  color:var(--green);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:20px;
}

/* =========================
   FOOTER
   ========================= */

footer{
  text-align:center;
  color:var(--muted);
  font-size:11px;
  padding:0 20px 34px;
}

.dev-status{
  margin-top:8px;
  font-family:ui-monospace,Consolas,monospace;
}

/* =========================
   TABLET / SMALL LAPTOP
   ========================= */

@media(max-width:1100px){
  .topbar{
    padding-inline:24px;
  }
}

/* =========================
   PHONE / TABLET
   ========================= */

@media(max-width:760px){
  .topbar{
    height:64px;
    grid-template-columns:1fr auto 1fr;
    padding-inline:16px;
    gap:8px;
  }

  .brand{
    grid-column:2;
    justify-self:center;
    font-size:19px;
  }

  .top-progress{
    grid-column:3;
    justify-self:end;
    width:90px;
    min-width:0;
    max-width:90px;
    gap:8px;
  }

  .top-progress > span{
    display:none;
  }

  .app-shell{
    width:calc(100% - 20px);
    padding:26px 0 48px;
  }

  .step-screen{
    padding:30px 22px;
    border-radius:20px;
  }

  .step-screen[data-step="language"]{
    padding-top:34px;
  }

  .language-grid{
    grid-template-columns:1fr;
  }

  .language-card small{
    max-width:none;
  }

  .choice-grid.compact,
  .choice-grid.compact.three,
  .two-col{
    grid-template-columns:1fr;
  }

  .choice-card small{
    margin-left:auto;
  }

  h1{
    font-size:clamp(32px,10vw,40px);
  }

  .lead{
    font-size:15px;
    margin-bottom:26px;
  }

  .actions{
    margin-top:24px;
  }

  .primary,
  .secondary{
    min-height:46px;
  }

  .song-card{
    grid-template-columns:54px 1fr;
    padding:18px;
    gap:13px;
  }

  .album-mark{
    width:54px;
    height:54px;
    border-radius:14px;
    font-size:24px;
  }

  .song-meta strong{
    font-size:20px;
  }

  .secondary-actions{
    width:100%;
  }

  .secondary-actions .secondary{
    flex:1 1 100%;
  }
}

/* =========================
   SMALL PHONES
   ========================= */

@media(max-width:480px){
  .topbar{
    height:60px;
    padding-inline:12px;
  }

  .brand{
    font-size:18px;
  }

  .top-progress{
    width:65px;
    max-width:65px;
  }

  .app-shell{
    width:calc(100% - 14px);
    padding-top:18px;
  }

  .step-screen{
    padding:24px 16px;
    border-radius:18px;
  }

  .step-screen[data-step="language"]{
    padding-top:28px;
  }

  h1{
    font-size:clamp(30px,11vw,36px);
  }

  .lead{
    font-size:14px;
  }

  .choice-card{
    padding:15px;
    min-height:56px;
  }

  .choice-card strong{
    font-size:14px;
  }

  input,
  textarea{
    padding:13px 14px;
  }

  .primary,
  .secondary{
    width:100%;
  }

  .actions{
    width:100%;
  }

  .song-card{
    grid-template-columns:48px 1fr;
    padding:16px;
  }

  .album-mark{
    width:48px;
    height:48px;
    font-size:21px;
  }

  .song-meta strong{
    font-size:18px;
  }
}

/* =========================
   CONTACT STEP ALIGNMENT
   ========================= */

#step-contact .privacy-note{
  text-align:center;
}

/* =========================
   PREVIEW MESSAGE
   ========================= */

.preview-note{
  text-align:center;
  font-size:15px;
  color:var(--muted);
  margin:4px 0 20px;
  line-height:1.5;
}

.preview-note strong{
  color:var(--ink);
  font-weight:850;
}


/* =========================
   EMAIL VERIFICATION
   ========================= */

.verify-screen{
  text-align:center;
  padding-top:52px;
}

.mail-mark{
  width:72px;
  height:72px;
  margin:0 auto 22px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,var(--rose),var(--coral));
  color:#fff;
  font-size:29px;
  box-shadow:0 14px 38px rgba(179,58,78,.18);
}

.verify-screen .lead{
  max-width:590px;
  margin-left:auto;
  margin-right:auto;
}

.verification-card{
  max-width:520px;
  margin:24px auto 12px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.verification-card small,
.verification-card strong{
  display:block;
}

.verification-card small{
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:4px;
}

.verification-card strong{
  font-size:16px;
  overflow-wrap:anywhere;
}

.verification-status{
  color:var(--muted);
  font-size:13px;
  margin:14px 0 20px;
}

.verify-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.dev-verify-link{
  display:inline-block;
  margin-top:20px;
  color:var(--rose);
  font-size:12px;
  font-weight:800;
}

@media(max-width:760px){
  .verify-screen{
    padding-top:34px;
  }

  .mail-mark{
    width:64px;
    height:64px;
    font-size:25px;
  }

  .verify-actions{
    width:100%;
  }

  .verify-actions .primary,
  .verify-actions .secondary{
    width:100%;
  }
}

/* =========================
   PREVIEW VERSION / ADJUSTMENTS
   ========================= */

.preview-version-picker{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:0 0 16px;
}

.version-pill{
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  border-radius:999px;
  padding:8px 14px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}

.version-pill.selected{
  border-color:var(--rose);
  background:#fff4f5;
  color:var(--rose-dark);
}

.secondary.subtle{
  border-color:transparent;
  background:transparent;
  color:var(--muted);
  box-shadow:none;
  padding:10px 14px;
}

.secondary.subtle:hover{
  color:var(--rose-dark);
  background:#fff7f7;
  border-color:#f1d5d8;
}

.adjust-dialog{
  max-width:560px;
}

.adjust-options{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.adjust-option{
  width:100%;
  text-align:left;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:15px 16px;
  cursor:pointer;
  transition:.15s;
}

.adjust-option:hover{
  border-color:#d4aaa6;
  transform:translateY(-1px);
  background:#fffaf8;
}

.adjust-option.featured{
  background:#fff7f7;
  border-color:#ecc9cf;
}

.adjust-option strong,
.adjust-option span,
.adjust-option small{
  display:block;
}

.adjust-option strong{
  color:var(--ink);
  font-size:14px;
  margin-bottom:4px;
}

.adjust-option span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.adjust-option small{
  color:var(--rose-dark);
  font-size:11px;
  font-weight:800;
  margin-top:7px;
}

.adjust-option:disabled{
  opacity:.52;
  cursor:not-allowed;
  transform:none;
}

.adjust-note{
  min-height:18px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}

.new-song-wrap{
  display:grid;
  justify-items:center;
  gap:7px;
  margin-top:12px;
}
.new-song-wrap small{
  color:var(--muted);
  font-size:11px;
  line-height:1.4;
  text-align:center;
}

@media(max-width:480px){
  .preview-version-picker{
    width:100%;
  }

  .version-pill{
    flex:1;
  }

  .adjust-dialog{
    padding:26px 18px;
  }
}


/* =========================
   V3.2 — TERTIARY NEW SONG ACTION
   Keep "Start a New Song" visibly tertiary to purchasing the current song.
   ========================= */
#startNewSong{
  min-width:220px;
  padding:10px 18px;
  font-size:14px;
  font-weight:800;
  box-shadow:none;
  border-color:var(--line);
  color:#5f514d;
}

#startNewSong:hover{
  border-color:#cfaeaa;
  background:#fffaf8;
  color:var(--ink);
  transform:none;
}

@media(max-width:480px){
  #startNewSong{
    min-width:200px;
    min-height:42px;
    padding:9px 16px;
    font-size:13px;
  }
}


/* =========================
   V3.3 — PREVIEW OFFER / PRICING
   ========================= */
.preview-offer{
  margin:22px auto 18px;
  max-width:520px;
  padding:18px 20px;
  border:1px solid #ead7cf;
  border-radius:16px;
  background:#fffaf7;
  text-align:center;
}

.preview-price-row{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

.regular-price{
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.regular-price s{
  display:block;
  margin-top:2px;
  font-size:17px;
}

.offer-price-main{
  display:grid;
  gap:2px;
  color:var(--rose-dark);
}

.offer-price-main span{
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.offer-price-main strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  line-height:1;
}

.offer-timer{
  display:flex;
  justify-content:center;
  gap:7px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:13px;
  color:#5f514d;
  font-size:13px;
}

.offer-timer strong{
  color:var(--rose-dark);
  font-variant-numeric:tabular-nums;
  letter-spacing:.03em;
}

.offer-status{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
}

.delivery-line{
  margin:14px 0 0;
  font-size:13px;
  font-weight:800;
  color:var(--ink);
}

.expedited-line{
  margin:5px 0 0;
  color:var(--muted);
  font-size:12px;
}

.preview-saved-note{
  max-width:520px;
  margin:15px auto 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  text-align:center;
}

@media(max-width:480px){
  .preview-offer{
    padding:16px 14px;
  }
  .preview-price-row{
    gap:18px;
  }
  .offer-price-main strong{
    font-size:31px;
  }
}
\n\n/* =========================\n   V3.5 — 30-MINUTE FULL-SONG OFFER\n   ========================= */\n.preview-offer{\n  padding:24px 24px 22px;\n  border:1px solid #dfbdb7;\n  box-shadow:0 14px 36px rgba(179,58,78,.08);\n}\n\n.offer-price-main{\n  gap:5px;\n}\n\n.offer-price-main span{\n  font-size:12px;\n  letter-spacing:.11em;\n}\n\n.offer-price-main strong{\n  font-size:44px;\n}\n\n.offer-timer{\n  display:grid;\n  justify-items:center;\n  gap:4px;\n  margin:18px auto 4px;\n  padding:14px 18px 12px;\n  max-width:300px;\n  border-top:1px solid #edd8d2;\n  border-bottom:1px solid #edd8d2;\n  color:var(--rose-dark);\n}\n\n.offer-timer span{\n  font-size:11px;\n  font-weight:900;\n  letter-spacing:.14em;\n  text-transform:uppercase;\n}\n\n.offer-timer strong{\n  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;\n  font-size:46px;\n  line-height:1;\n  font-weight:850;\n  letter-spacing:.025em;\n  color:var(--rose-dark);\n  font-variant-numeric:tabular-nums;\n}\n\n.offer-status{\n  margin:15px auto 2px;\n  max-width:380px;\n  font-size:13px;\n  font-weight:700;\n  line-height:1.45;\n}\n\n@media(max-width:480px){\n  .preview-offer{\n    padding:20px 14px 18px;\n  }\n  .offer-price-main strong{\n    font-size:40px;\n  }\n  .offer-timer strong{\n    font-size:42px;\n  }\n}\n

/* =========================
   V3.6 — PREVIEW FIRST / OFFER BELOW THE FOLD
   Keep the first viewport focused on listening before showing price.
   ========================= */
.preview-screen{
  padding-top:28px;
  padding-bottom:38px;
}

.preview-listen-stage{
  min-height:calc(100svh - 165px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
}

.preview-listen-stage .song-card{
  margin:30px auto 24px;
  width:100%;
  max-width:620px;
  padding:28px;
  grid-template-columns:76px 1fr;
  gap:18px;
}

.preview-listen-stage .album-mark{
  width:76px;
  height:76px;
  font-size:31px;
}

.preview-listen-stage .song-meta strong{
  font-size:26px;
}

.preview-listen-stage .song-card audio{
  margin-top:12px;
}

.preview-listen-stage .preview-note{
  margin-top:0;
}

.preview-purchase-stage{
  margin-top:28px;
  padding-top:58px;
  padding-bottom:8px;
  border-top:1px solid var(--line);
}

.preview-purchase-stage .preview-offer{
  margin-top:0;
}

@media(max-width:760px){
  .preview-screen{
    padding-top:22px;
  }
  .preview-listen-stage{
    min-height:calc(100svh - 130px);
  }
  .preview-purchase-stage{
    margin-top:20px;
    padding-top:44px;
  }
}

@media(max-width:480px){
  .preview-screen{
    padding-top:18px;
    padding-bottom:28px;
  }
  .preview-listen-stage{
    min-height:calc(100svh - 105px);
    justify-content:flex-start;
    padding-top:18px;
  }
  .preview-listen-stage h1{
    font-size:clamp(35px,11vw,47px);
  }
  .preview-listen-stage .lead{
    margin-bottom:22px;
  }
  .preview-listen-stage .song-card{
    margin:16px auto 18px;
    padding:20px 18px;
    grid-template-columns:60px 1fr;
    gap:14px;
  }
  .preview-listen-stage .album-mark{
    width:60px;
    height:60px;
    font-size:26px;
  }
  .preview-listen-stage .song-meta strong{
    font-size:22px;
  }
  .preview-purchase-stage{
    padding-top:38px;
  }
}


/* =========================
   V3.7 — STORY-TO-PURCHASE BRIDGE
   Use the scroll space to deepen value before showing price.
   ========================= */
.full-song-story{
  width:min(620px,100%);
  margin:0 auto 42px;
  text-align:center;
}

.full-song-story-intro{
  max-width:570px;
  margin:0 auto 28px;
}

.full-song-story-intro h2{
  margin:0 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(29px,4.5vw,40px);
  line-height:1.08;
  letter-spacing:-.025em;
  text-wrap:balance;
}

.full-song-story-intro p{
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width:540px;
}

.full-song-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:26px auto 28px;
}

.full-song-benefit{
  min-height:190px;
  padding:22px 18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(160deg,#fff,#fff9f5);
  text-align:left;
  box-shadow:0 8px 24px rgba(76,42,35,.045);
}

.benefit-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:var(--blush);
  color:var(--rose-dark);
  font-size:19px;
  font-weight:900;
}

.full-song-benefit strong{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:15px;
  line-height:1.3;
}

.full-song-benefit p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.full-song-emotion{
  max-width:560px;
  margin:30px auto 0;
  padding:22px 26px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(20px,3vw,25px);
  font-weight:700;
  line-height:1.4;
  color:var(--ink);
  text-wrap:balance;
}

.preview-purchase-stage{
  padding-top:48px;
}

.preview-purchase-stage .preview-offer{
  margin-top:0;
}

@media(max-width:760px){
  .full-song-story{
    margin-bottom:34px;
  }

  .full-song-benefits{
    grid-template-columns:1fr;
    gap:10px;
    max-width:520px;
  }

  .full-song-benefit{
    min-height:0;
    display:grid;
    grid-template-columns:40px 1fr;
    gap:14px;
    align-items:start;
    padding:18px;
  }

  .benefit-icon{
    margin:0;
  }

  .full-song-emotion{
    margin-top:24px;
  }
}

@media(max-width:480px){
  .preview-purchase-stage{
    padding-top:34px;
  }

  .full-song-story-intro h2{
    font-size:30px;
  }

  .full-song-story-intro p{
    font-size:14px;
  }

  .full-song-benefit{
    padding:16px 14px;
  }

  .full-song-emotion{
    padding:18px 10px;
    font-size:21px;
  }
}

/* =========================
   V3.8 — PREVIEW / STORY SPACING REFINEMENT
   Keep the preview as the first-screen focus without leaving a large dead area.
   ========================= */
.preview-listen-stage{
  justify-content:flex-start;
  padding-top:58px;
  padding-bottom:30px;
}

.preview-purchase-stage{
  margin-top:0;
  padding-top:34px;
}

.full-song-story{
  margin-bottom:24px;
}

.full-song-story-intro{
  margin-bottom:22px;
}

.full-song-benefits{
  margin-top:20px;
  margin-bottom:22px;
}

.full-song-emotion{
  margin-top:22px;
  padding-top:18px;
  padding-bottom:18px;
}

.preview-purchase-stage .preview-offer{
  margin-top:26px;
}

@media(max-width:760px){
  .preview-listen-stage{
    padding-top:42px;
    padding-bottom:24px;
  }

  .preview-purchase-stage{
    padding-top:28px;
  }

  .full-song-story{
    margin-bottom:20px;
  }

  .preview-purchase-stage .preview-offer{
    margin-top:22px;
  }
}

@media(max-width:480px){
  .preview-listen-stage{
    padding-top:22px;
    padding-bottom:20px;
  }

  .preview-purchase-stage{
    padding-top:24px;
  }

  .full-song-story-intro{
    margin-bottom:18px;
  }

  .full-song-benefits{
    margin-top:16px;
    margin-bottom:18px;
  }

  .full-song-emotion{
    margin-top:18px;
    padding-top:16px;
    padding-bottom:16px;
  }

  .preview-purchase-stage .preview-offer{
    margin-top:18px;
  }
}


/* =========================
   V3.9 — EMOTIONAL PURCHASE BRIDGE
   The preview gets the first viewport; this section turns the scroll into
   an emotional handoff before price appears.
   ========================= */
.emotional-bridge{
  width:min(650px,100%);
  margin:0 auto 34px;
  padding:12px 24px 38px;
  text-align:center;
}

.emotional-bridge-mark{
  width:48px;
  height:48px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blush);
  color:var(--rose-dark);
  font-size:23px;
  line-height:1;
}

.emotional-bridge h2{
  max-width:620px;
  margin:0 auto 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(31px,4.8vw,43px);
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--ink);
  text-wrap:balance;
}

.emotional-bridge-personal{
  margin:0 auto 28px;
  font-size:18px;
  line-height:1.55;
  font-weight:700;
  color:var(--rose-dark);
}

.emotional-bridge-preview{
  margin:0 auto 8px;
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
}

.emotional-bridge-close{
  max-width:560px;
  margin:0 auto;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(20px,3vw,25px);
  line-height:1.38;
  font-weight:700;
  color:var(--ink);
  text-wrap:balance;
}

/* Override the previous card-style bridge entirely. */
.emotional-bridge .full-song-story-intro,
.emotional-bridge .full-song-benefits,
.emotional-bridge .full-song-benefit,
.emotional-bridge .benefit-icon{
  display:none;
}

.preview-purchase-stage{
  padding-top:42px;
}

.preview-purchase-stage .preview-offer{
  margin-top:0;
}

@media(max-width:760px){
  .emotional-bridge{
    padding:4px 18px 32px;
    margin-bottom:28px;
  }
  .emotional-bridge h2{
    font-size:clamp(30px,8vw,39px);
  }
  .emotional-bridge-personal{
    font-size:17px;
  }
}

@media(max-width:480px){
  .preview-purchase-stage{
    padding-top:28px;
  }
  .emotional-bridge{
    padding:0 4px 28px;
    margin-bottom:24px;
  }
  .emotional-bridge-mark{
    width:44px;
    height:44px;
    margin-bottom:16px;
  }
  .emotional-bridge h2{
    font-size:30px;
  }
  .emotional-bridge-personal{
    margin-bottom:22px;
    font-size:16px;
  }
  .emotional-bridge-preview{
    font-size:14px;
  }
  .emotional-bridge-close{
    font-size:21px;
  }
}

/* =========================
   V3.10 — PREVIEW SALES PAGE FLOW
   Preview first → emotional handoff → offer → delivery → next steps → FAQ
   ========================= */

/* Remove decorative heart / legacy bridge remnants. */
.emotional-bridge-mark,
.emotional-bridge-close{
  display:none!important;
}

.preview-purchase-stage{
  padding-top:34px;
}

.emotional-bridge{
  width:min(650px,100%);
  margin:0 auto 30px;
  padding:18px 20px 34px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.emotional-bridge h2{
  margin-bottom:16px;
}

.emotional-bridge-personal{
  margin-bottom:16px;
}

.emotional-bridge-preview{
  margin:0;
  font-size:16px;
  color:var(--muted);
}

.purchase-offer-section{
  width:min(590px,100%);
  margin:0 auto;
  text-align:center;
}

.preview-offer{
  max-width:none;
  margin:0 auto 24px;
  padding:28px 26px 24px;
  border:1px solid #dfbdb7;
  border-radius:18px;
  background:#fffaf7;
  box-shadow:0 14px 36px rgba(179,58,78,.08);
}

.offer-kicker,
.section-eyebrow{
  color:var(--rose);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.offer-kicker{
  margin-bottom:12px;
}

.preview-price-row{
  align-items:center;
  gap:30px;
}

.offer-price-main span{
  font-size:12px;
  letter-spacing:.11em;
}

.offer-price-main strong{
  font-size:54px;
}

.regular-price{
  font-size:13px;
}

.regular-price s{
  font-size:19px;
}

.offer-timer{
  margin:22px auto 0;
  padding:17px 20px 15px;
  max-width:340px;
  border:1px dashed #d98273;
  border-radius:14px;
  background:#fffdfb;
}

.offer-timer span{
  font-size:11px;
  letter-spacing:.16em;
}

.offer-timer strong{
  font-size:64px;
  line-height:.98;
  margin-top:4px;
}

.offer-status{
  max-width:430px;
  margin:16px auto 0;
  font-size:13px;
  line-height:1.5;
}

.delivery-options{
  margin:30px auto 20px;
  text-align:left;
}

.delivery-options > h2{
  margin:0 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  text-align:center;
}

.delivery-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:17px 18px;
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.delivery-card-primary{
  border-color:#dca49d;
  background:#fff9f7;
}

.delivery-card > div{
  display:grid;
  gap:4px;
}

.delivery-card strong{
  font-size:15px;
  color:var(--ink);
}

.delivery-card span:not(.delivery-badge){
  font-size:12px;
  line-height:1.45;
  color:var(--muted);
}

.delivery-badge{
  flex:none;
  padding:6px 9px;
  border-radius:999px;
  background:#edf6f1;
  color:var(--green);
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.secondary-badge{
  background:#f6efeb;
  color:#7d625a;
}

.purchase-cta-wrap{
  margin:24px 0 0;
}

.purchase-cta-wrap .primary.big{
  min-width:min(360px,100%);
  padding:17px 28px;
}

.next-steps-section,
.preview-faq{
  width:min(650px,100%);
  margin:58px auto 0;
  padding-top:38px;
  border-top:1px solid var(--line);
}

.next-steps-section > h2,
.preview-faq > h2{
  margin:8px 0 24px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,4vw,36px);
  line-height:1.1;
  text-align:center;
}

.next-steps-section .section-eyebrow,
.preview-faq .section-eyebrow{
  text-align:center;
}

.next-steps-grid{
  display:grid;
  gap:12px;
}

.next-step-card{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:14px;
  align-items:start;
  padding:17px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  text-align:left;
}

.next-step-number{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blush);
  color:var(--rose-dark);
  font-weight:900;
}

.next-step-card strong{
  font-size:15px;
}

.next-step-card p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.faq-list{
  border-top:1px solid var(--line);
}

.faq-list details{
  border-bottom:1px solid var(--line);
}

.faq-list summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding:18px 38px 18px 4px;
  font-size:14px;
  font-weight:850;
  text-align:left;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary:after{
  content:"+";
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#f7ece7;
  color:var(--rose-dark);
  font-size:17px;
  font-weight:600;
}

.faq-list details[open] summary:after{
  content:"–";
}

.faq-list details p{
  margin:-4px 42px 18px 4px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  text-align:left;
}

.preview-purchase-stage > .test-note{
  margin-top:44px;
}

@media(max-width:760px){
  .preview-purchase-stage{
    padding-top:24px;
  }
  .emotional-bridge{
    margin-bottom:24px;
    padding:16px 12px 28px;
  }
  .offer-price-main strong{
    font-size:48px;
  }
  .offer-timer strong{
    font-size:58px;
  }
  .next-steps-section,
  .preview-faq{
    margin-top:48px;
  }
}

@media(max-width:480px){
  .preview-offer{
    padding:24px 14px 20px;
  }
  .preview-price-row{
    gap:18px;
  }
  .offer-price-main strong{
    font-size:46px;
  }
  .offer-timer{
    padding:15px 12px 13px;
  }
  .offer-timer strong{
    font-size:54px;
  }
  .delivery-card{
    align-items:flex-start;
    padding:15px 14px;
  }
  .delivery-badge{
    margin-top:1px;
  }
  .next-steps-section,
  .preview-faq{
    margin-top:42px;
    padding-top:30px;
  }
  .next-step-card{
    grid-template-columns:34px 1fr;
    padding:15px 14px;
  }
}
