/* ============================================================
   Talewink — landing styles
   Theme: night-sky bedtime. Newsreader (serif) + Mulish (sans).
   ============================================================ */

:root {
  /* night */
  --night:        #16142e;
  --night-2:      #1c1940;
  --night-deep:   #100e22;
  --night-card:   #1b1934;
  /* cream */
  --cream:        #f6f1e8;
  --cream-card:   #ffffff;
  --cream-border: #ece3d4;
  /* gold */
  --gold:         #ecc079;
  --gold-1:       #f3cd87;
  --gold-2:       #dba14c;
  --gold-deep:    #c08f3e;
  /* lavender */
  --lav:          #b6a9e8;
  --lav-2:        #8a7ccb;
  /* text */
  --ink:          #2a2348;     /* on gold */
  --text-light:   #f4f1fb;
  --text-cream:   #231f38;
  --muted-light:  #b8b3d2;
  --muted-2:      #a9a4c9;
  --muted-3:      #8e89ab;
  --muted-cream:  #6b6486;

  --maxw: 1200px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--text-light);
  font-family: 'Mulish', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 760px; }

/* ---------- keyframes ---------- */
@keyframes twinkle { 0%,100%{opacity:.25;} 50%{opacity:.9;} }
@keyframes floaty  { 0%,100%{transform:translateY(0) rotate(-3deg);} 50%{transform:translateY(-14px) rotate(-3deg);} }
@keyframes floaty-slow { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
@media (prefers-reduced-motion: reduce) {
  .star, .floaty, .floaty--slow { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer; font-family: inherit;
  border-radius: 999px; font-weight: 800; font-size: 15px;
  padding: 14px 26px; transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(140deg, var(--gold-1), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(236,192,121,.6);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(236,192,121,.75); filter: brightness(1.03); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text-light);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ---------- brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__name { font-family: 'Newsreader', serif; font-size: 23px; font-weight: 600; color: var(--text-light); }
.brand__mark { position: relative; width: 26px; height: 26px; display: inline-block; }
.brand__moon { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(140deg, var(--gold-1), #e3ab5a); }
.brand__cut  { position: absolute; top: -4px; right: -5px; width: 21px; height: 21px; border-radius: 50%; background: var(--night); }
.brand__cut--dark { background: var(--night-deep); }
.brand__twinkle {
  position: absolute; top: -3px; left: -4px; width: 8px; height: 8px;
  background: #fff; border-radius: 1px;
  clip-path: polygon(50% 0,61% 39%,100% 50%,61% 61%,50% 100%,39% 61%,0 50%,39% 39%);
  animation: twinkle 3s ease-in-out infinite;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22,20,46,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 14.5px; font-weight: 600; color: #cfcae6; transition: color .15s; }
.nav__links a:hover { color: var(--text-light); }
.nav__cta { padding: 11px 22px; font-size: 14.5px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 90% at 75% 0%, #2a2658 0%, #201d44 45%, #16142e 100%);
}
.hero__moon { position: absolute; top: 90px; right: 140px; width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(140deg,#f6d79a,#e3ab5a); box-shadow: 0 0 90px rgba(236,192,121,.45); }
.hero__moon-cut { position: absolute; top: 74px; right: 120px; width: 104px; height: 104px; border-radius: 50%; background: #241f4d; }
.stars { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; border-radius: 50%; background: #fff; animation: twinkle ease-in-out infinite; }

.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 84px 40px 96px; display: flex; align-items: center; gap: 64px;
}
.hero__copy { flex: 1; max-width: 600px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px;
  border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 26px; font-size: 13px; font-weight: 700; color: #cfcae6;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 58px; line-height: 1.04;
  margin: 0 0 22px; letter-spacing: -0.01em; text-wrap: balance;
}
.hl { color: var(--gold); }
.hero__lede { font-size: 19px; line-height: 1.6; color: var(--muted-light); margin: 0 0 32px; max-width: 520px; }
.hero__fineprint { font-size: 14px; color: var(--muted-3); font-weight: 600; margin: 16px 0 0; }

/* ---------- waitlist form ---------- */
.waitlist { margin: 0; max-width: 520px; }
.waitlist--center { margin-left: auto; margin-right: auto; }
.waitlist__row {
  display: flex; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 6px 6px 6px 8px;
  transition: border-color .2s, box-shadow .2s;
}
.waitlist__row:focus-within { border-color: rgba(236,192,121,.6); box-shadow: 0 0 0 4px rgba(236,192,121,.12); }
.waitlist__input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--text-light); font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 11px 14px;
}
.waitlist__input::placeholder { color: var(--muted-3); font-weight: 500; }
.waitlist__btn { flex-shrink: 0; padding: 13px 24px; }
.waitlist__msg { font-size: 14px; font-weight: 700; margin: 12px 4px 0; min-height: 1px; }
.waitlist__msg--ok  { color: #9bd6a8; }
.waitlist__msg--err { color: #f0a3a3; }
.waitlist.is-done .waitlist__row { opacity: .55; }

/* ---------- hero mockup ---------- */
.hero__mock { flex-shrink: 0; width: 380px; position: relative; }
.player {
  border-radius: 30px; overflow: hidden; background: #14122a;
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 50px 90px -30px rgba(0,0,0,.6);
}
.floaty { animation: floaty 7s ease-in-out infinite; }
.floaty--slow { animation: floaty-slow 5.5s ease-in-out infinite; }
.player__art {
  height: 230px; position: relative; overflow: hidden;
  background: #1a1638;
}
.player__illo { display: block; width: 100%; height: 100%; }
.player__nowplaying {
  position: absolute; top: 16px; left: 16px; display: flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; background: rgba(20,18,42,.6); backdrop-filter: blur(6px);
  font-size: 11.5px; font-weight: 700; color: #f6e6c8;
}
.player__nowplaying-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.player__body { padding: 24px; }
.player__eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.player__title { font-family: 'Newsreader', serif; font-size: 26px; line-height: 1.15; margin-bottom: 18px; }
.player__scrub { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.player__time { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.player__track { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.14); position: relative; }
.player__fill { display: block; width: 44%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-2), var(--gold-1)); }
.player__knob { position: absolute; left: 44%; top: 50%; transform: translate(-50%,-50%); width: 13px; height: 13px; border-radius: 50%; background: #fdf3df; }
.player__controls { display: flex; align-items: center; justify-content: center; gap: 30px; }
.ctrl { display: flex; align-items: center; gap: 3px; }
.ctrl--prev::before { content:""; width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:10px solid #cfcae6; }
.ctrl--prev::after  { content:""; width:3px;height:14px;background:#cfcae6;border-radius:1px; }
.ctrl--next::before { content:""; width:3px;height:14px;background:#cfcae6;border-radius:1px; }
.ctrl--next::after  { content:""; width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:10px solid #cfcae6; }
.ctrl--play { width:60px;height:60px;border-radius:50%;justify-content:center;background:linear-gradient(140deg,var(--gold-1),var(--gold-2));box-shadow:0 14px 30px -10px rgba(236,192,121,.7); }
.ctrl--play span { width:6px;height:21px;border-radius:2px;background:var(--ink); }

.chip {
  position: absolute; bottom: -22px; left: -40px; display: flex; align-items: center; gap: 11px;
  padding: 13px 18px; border-radius: 18px; background: #211e44;
  border: 1px solid rgba(236,192,121,.3); box-shadow: 0 20px 40px -16px rgba(0,0,0,.6);
}
.chip__bars { display: flex; align-items: flex-end; gap: 2.5px; height: 22px; }
.chip__bars i { width: 3px; background: var(--gold); border-radius: 2px; }
.chip__bars i:nth-child(1){height:9px;} .chip__bars i:nth-child(2){height:18px;}
.chip__bars i:nth-child(3){height:22px;} .chip__bars i:nth-child(4){height:13px;}
.chip__text { display: flex; flex-direction: column; }
.chip__text b { font-size: 13px; font-weight: 800; color: #f6e6c8; }
.chip__text small { font-size: 11.5px; color: var(--muted-2); }

/* ---------- trust strip ---------- */
.trust { position: relative; border-top: 1px solid rgba(255,255,255,.08); }
.trust__inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px 28px; }
.trust__item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: #cfcae6; }
.trust__ico { color: var(--gold); font-size: 15px; }

/* ============ section scaffolding ============ */
.cream { background: var(--cream); color: var(--text-cream); }
.cream .wrap { padding-top: 100px; padding-bottom: 100px; }
.night { background: var(--night); }
.night .wrap { padding-top: 100px; padding-bottom: 100px; }
.night--grad { background: linear-gradient(180deg, #16142e, #1c1940); }

.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.section-head__aside { font-size: 15px; font-weight: 700; color: var(--gold-deep); }

.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--gold-light { color: var(--gold); }
.eyebrow--lav { color: var(--lav); }

h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 44px; margin: 0; color: var(--text-cream); text-wrap: balance; }
.h2-light { color: #f6f3fc; }
.section-sub { font-size: 17px; color: var(--muted-cream); margin: 14px auto 0; max-width: 560px; line-height: 1.6; }
.section-sub--light { color: var(--muted-light); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: var(--radius); padding: 36px 30px; box-shadow: 0 20px 40px -28px rgba(80,60,30,.3); text-align: center; }
.step-card__num { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: 'Newsreader', serif; font-size: 24px; font-weight: 600; margin: 0 auto 22px; }
.step-card__num--gold { background: linear-gradient(140deg,#fbe6bf,var(--gold-1)); color: #7a5618; }
.step-card__num--lav  { background: linear-gradient(140deg,#e6def8,var(--lav)); color: #4f3f7a; }
.step-card h3 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 23px; margin: 0 0 10px; color: var(--text-cream); }
.step-card p { font-size: 15.5px; line-height: 1.6; color: var(--muted-cream); margin: 0; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 30px; transition: transform .18s ease, border-color .18s ease; }
.feature:hover { transform: translateY(-4px); border-color: rgba(236,192,121,.3); }
.feature h3 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 21px; margin: 0 0 9px; color: #f6f3fc; }
.feature p { font-size: 15px; line-height: 1.6; color: var(--muted-2); margin: 0; }
.feature__ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature__ico--gold { background: rgba(236,192,121,.16); }
.feature__ico--lav  { background: rgba(182,169,232,.18); }
.ico-circle { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(140deg,var(--gold-1),var(--gold-2)); }
.ico-bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.ico-bars i { width: 3.5px; background: var(--gold); border-radius: 2px; }
.ico-bars i:nth-child(1){height:10px;} .ico-bars i:nth-child(2){height:18px;} .ico-bars i:nth-child(3){height:13px;}
.ico-pill { width: 14px; height: 22px; border-radius: 7px; background: var(--lav); }
.ico-square { width: 18px; height: 18px; border-radius: 5px; background: var(--lav); }
.ico-diamond { width: 18px; height: 18px; background: var(--gold); transform: rotate(45deg); border-radius: 3px; }
.ico-moon { position: relative; width: 18px; height: 18px; }
.ico-moon::before { content:""; position: absolute; inset: 0; border-radius: 50%; background: var(--lav); }
.ico-moon::after  { content:""; position: absolute; top: -3px; right: -4px; width: 14px; height: 14px; border-radius: 50%; background: var(--night); }

/* ---------- safety ---------- */
.safety { background: linear-gradient(165deg, #1d1b3c, #161430); }
.safety__inner { display: flex; align-items: center; gap: 72px; flex-wrap: wrap; padding-top: 100px; padding-bottom: 100px; }
.safety__copy { flex: 1; min-width: 340px; }
.safety__lede { font-size: 17px; line-height: 1.65; color: var(--muted-light); margin: 0 0 30px; max-width: 520px; }
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks__tick { width: 24px; height: 24px; border-radius: 8px; background: rgba(182,169,232,.25); display: flex; align-items: center; justify-content: center; color: #d6cdf5; font-size: 13px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.checks li b { display: block; font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 2px; }
.checks li span { font-size: 14.5px; color: var(--muted-2); line-height: 1.5; }
.safety__card { flex-shrink: 0; width: 380px; background: var(--night-card); border: 1px solid rgba(255,255,255,.08); border-radius: 26px; padding: 28px; box-shadow: 0 40px 80px -34px rgba(0,0,0,.6); }
.safety__card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.safety__card-label { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--muted-3); text-transform: uppercase; }
.safety__card-pass { font-size: 12px; font-weight: 800; color: #9bd6a8; background: rgba(120,200,140,.14); padding: 5px 11px; border-radius: 999px; }
.safety__panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; margin-bottom: 14px; }
.safety__panel--rows { padding: 6px 18px; margin-bottom: 0; }
.safety__panel-title { font-size: 14px; font-weight: 800; color: var(--text-light); margin-bottom: 12px; }
.seg { display: flex; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 11px; padding: 4px; }
.seg__opt { flex: 1; text-align: center; padding: 8px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--muted-2); }
.seg__opt--on { background: linear-gradient(140deg,var(--gold-1),var(--gold-2)); color: var(--ink); font-weight: 800; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-size: 14px; font-weight: 700; color: var(--text-light); }
.toggle-row + .toggle-row { border-top: 1px solid rgba(255,255,255,.07); }
.toggle { width: 42px; height: 24px; border-radius: 999px; position: relative; flex-shrink: 0; background: rgba(255,255,255,.14); }
.toggle--on { background: linear-gradient(140deg,var(--gold-1),var(--gold-2)); }
.toggle span { position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }

/* ---------- themes ---------- */
.themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.theme { border-radius: 20px; overflow: hidden; background: var(--cream-card); border: 1px solid var(--cream-border); box-shadow: 0 18px 38px -28px rgba(80,60,30,.3); transition: transform .18s ease; }
.theme:hover { transform: translateY(-4px); }
.theme__art { height: 150px; overflow: hidden; background: #221d46; }
.theme__illo { display: block; width: 100%; height: 100%; }
.theme__body { padding: 18px; }
.theme__name { font-family: 'Newsreader', serif; font-size: 20px; color: var(--text-cream); margin-bottom: 3px; }
.theme__sub { font-size: 13.5px; color: #9a93ad; }

/* ---------- pricing ---------- */
.plans { display: flex; gap: 24px; max-width: 840px; margin: 0 auto; align-items: stretch; }
.plan { flex: 1; border-radius: var(--radius); padding: 34px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; }
.plan--featured { background: linear-gradient(160deg, rgba(236,192,121,.16), rgba(182,169,232,.1)); border: 2px solid var(--gold); position: relative; box-shadow: 0 30px 60px -24px rgba(236,192,121,.45); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 6px 18px; border-radius: 999px; background: linear-gradient(140deg,var(--gold-1),var(--gold-2)); color: var(--ink); font-size: 12px; font-weight: 800; white-space: nowrap; }
.plan__name { font-size: 15px; font-weight: 800; color: #cfcae6; margin-bottom: 8px; }
.plan__name--gold { color: var(--gold-1); }
.plan__price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 8px; }
.plan__amount { font-family: 'Newsreader', serif; font-size: 46px; color: #f6f3fc; }
.plan__per { font-size: 15px; color: var(--muted-3); }
.plan--featured .plan__per { color: #cbb98f; }
.plan__tag { font-size: 14px; color: var(--muted-3); margin: 0 0 26px; line-height: 1.5; }
.plan__tag--light { color: #cbb98f; }
.plan__list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.plan__list li { display: flex; gap: 11px; font-size: 15px; color: #cfcae6; }
.plan--featured .plan__list li { color: #f6f3fc; font-weight: 600; }
.tick--muted { color: var(--muted-3); }
.tick--gold { color: var(--gold); }
.plan__cta { margin-top: auto; width: 100%; }

/* ---------- faq ---------- */
.faq-title { font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px; margin: 0 0 40px; text-align: center; color: var(--text-cream); }
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 18px; padding: 0 26px; }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; cursor: pointer; padding: 24px 0; font-size: 17px; font-weight: 700; color: var(--text-cream); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: opacity .2s, transform .2s; }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { opacity: 0; transform: rotate(90deg); }
.faq__item p { font-size: 15px; line-height: 1.6; color: var(--muted-cream); margin: 0; padding: 0 0 24px; }

/* ---------- final cta ---------- */
.finalcta { position: relative; overflow: hidden; background: radial-gradient(120% 100% at 50% 100%, #2a2658 0%, #1a1838 60%, #16142e 100%); }
.finalcta__glow { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 520px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(236,192,121,.2), rgba(236,192,121,0) 70%); }
.finalcta__inner { position: relative; max-width: 760px; margin: 0 auto; padding: 104px 40px; text-align: center; }
.finalcta__mark { display: inline-flex; position: relative; width: 48px; height: 48px; margin-bottom: 26px; }
.finalcta__mark .brand__moon { background: linear-gradient(140deg,var(--gold-1),#e3ab5a); box-shadow: 0 0 50px rgba(236,192,121,.5); }
.finalcta__mark .brand__cut { top: -7px; right: -8px; width: 39px; height: 39px; }
.finalcta__cut { background: #1a1838 !important; }
.finalcta__mark .brand__twinkle { top: -6px; left: -8px; width: 13px; height: 13px; }
.finalcta h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 50px; line-height: 1.08; margin: 0 0 18px; color: #f6f3fc; text-wrap: balance; }
.finalcta__sub { font-size: 18px; color: var(--muted-light); margin: 0 0 32px; }

/* ---------- footer ---------- */
.footer { background: var(--night-deep); border-top: 1px solid rgba(255,255,255,.06); }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-top: 56px; padding-bottom: 0; }
.footer__brand { max-width: 300px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { font-size: 14px; color: #7d78a0; line-height: 1.6; margin: 0; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__head { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--muted-3); text-transform: uppercase; margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: var(--muted-light); transition: color .15s; }
.footer__col a:hover { color: var(--text-light); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; padding-bottom: 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom span { font-size: 13px; color: #6b6688; }

/* ============ responsive ============ */
@media (max-width: 940px) {
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 56px; padding-top: 64px; }
  .hero__mock { width: 100%; max-width: 380px; margin: 0 auto; }
  .chip { left: 0; }
  .steps, .features, .themes { grid-template-columns: repeat(2, 1fr); }
  .safety__inner { gap: 48px; }
  .safety__card { width: 100%; max-width: 420px; }
}
@media (max-width: 720px) {
  .wrap, .nav__inner, .hero__inner, .trust__inner { padding-left: 22px; padding-right: 22px; }
  .nav__links { display: none; }
  .hero h1 { font-size: 42px; }
  .hero__lede { font-size: 17px; }
  h2 { font-size: 34px; }
  .finalcta h2 { font-size: 36px; }
  .cream .wrap, .night .wrap, .safety__inner { padding-top: 72px; padding-bottom: 72px; }
  .section-head { margin-bottom: 44px; }
  .steps, .features, .themes { grid-template-columns: 1fr; }
  .plans { flex-direction: column; }
  .hero__moon, .hero__moon-cut { width: 80px; height: 80px; top: 24px; right: 24px; }
  .hero__moon-cut { width: 68px; height: 68px; top: 14px; right: 10px; }
  .waitlist__row { flex-direction: column; padding: 8px; border-radius: 20px; }
  .waitlist__input { text-align: center; }
  .waitlist__btn { width: 100%; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 36px; }
}
