/* ============================================================
   Hush Hollow — landing aesthetic: "soft dusk / storybook"
   Deep indigo night · amber moon · cream type · rounded · glowing
   Mobile-first. Self-contained (does NOT touch base.css used by
   the onboard/capture flow). Also styles privacy.html / terms.html
   via the .legal layout at the bottom.
   ============================================================ */

/* ---------- design tokens ---------- */
:root {
  /* the night sky, top → horizon */
  --night-0: #0a0e28;
  --night-1: #121845;
  --night-2: #1c2358;
  --dusk:    #3a3270;
  --dusk-2:  #5a4690;
  --horizon: #93628f;   /* warm purple glow at the rim of the world */

  /* warm light */
  --amber:      #f3c178;
  --amber-1:    #ffd89b;
  --amber-glow: #ffcf86;
  --rose:       #f0a39d;
  --rose-2:     #e98ca0;
  --sage:       #a9c6a4;

  /* type */
  --cream:     #f6efe0;
  --cream-2:   #ece2cd;
  --cream-dim: #bcb29c;
  --ink:       #221d3c;   /* on light cards */
  --ink-soft:  #564d72;
  --star:      #fff7e8;

  --maxw: 1140px;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --glow: 0 0 60px rgba(255, 207, 134, .28);
  --card-shadow: 0 24px 60px -28px rgba(0, 0, 0, .65);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--night-0);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- the sky (fixed atmosphere behind everything) ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 80% at 78% -10%, rgba(255, 207, 134, .14), transparent 46%),
    radial-gradient(140% 90% at 50% 118%, var(--horizon) 0%, rgba(147, 98, 143, 0) 46%),
    linear-gradient(178deg,
      var(--night-0) 0%,
      var(--night-1) 34%,
      var(--night-2) 58%,
      var(--dusk) 82%,
      var(--dusk-2) 100%);
}
/* generated star layer (JS fills #stars with dots) */
#stars { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
#stars .star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--star);
  opacity: .0;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
#stars .star.big { width: 3px; height: 3px; box-shadow: 0 0 6px 1px rgba(255, 247, 232, .8); }
@keyframes twinkle {
  0%, 100% { opacity: var(--min, .15); transform: scale(.8); }
  50%      { opacity: var(--max, .95); transform: scale(1); }
}
/* fireflies drifting near the horizon */
#fireflies { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.firefly {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber-1);
  box-shadow: 0 0 10px 3px rgba(255, 216, 155, .7);
  opacity: 0;
  animation: drift var(--fdur, 14s) ease-in-out infinite;
  animation-delay: var(--fdelay, 0s);
}
@keyframes drift {
  0%   { opacity: 0; transform: translate(0, 0) scale(.7); }
  15%  { opacity: .9; }
  50%  { transform: translate(var(--dx, 40px), -38px) scale(1); opacity: .65; }
  85%  { opacity: .8; }
  100% { opacity: 0; transform: translate(calc(var(--dx, 40px) * -.4), -78px) scale(.7); }
}
/* grain */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .star, .firefly, .moon { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { position: relative; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber);
  margin: 0 0 14px;
}
.hand { font-family: var(--font-hand); color: var(--amber-1); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.5rem, 7vw, 4.6rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--amber-1); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: -.01em; }
h3 { font-size: 1.32rem; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.05rem, 2.3vw, 1.32rem); color: var(--cream-2); max-width: 40ch; }
.muted { color: var(--cream-dim); }
a { color: var(--amber-1); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em; justify-content: center;
  font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  padding: 16px 28px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-gold {
  color: #3a2a08;
  background: linear-gradient(135deg, var(--amber-1), var(--amber));
  box-shadow: 0 14px 36px -12px rgba(243, 193, 120, .7), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn-gold:hover { box-shadow: 0 18px 48px -12px rgba(243, 193, 120, .9), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn-ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(246, 239, 224, .28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(246, 239, 224, .5); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 12px 20px; font-size: .94rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 22px;
  background: rgba(10, 14, 40, .55);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(246, 239, 224, .08);
}
.brandmark { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.brandmark .crescent {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, var(--amber-1), var(--amber) 60%, #d79a4e);
  box-shadow: 0 0 18px 2px rgba(255, 207, 134, .6);
  position: relative;
}
.brandmark .crescent::after {
  content: ""; position: absolute; inset: -3px -3px auto auto; width: 22px; height: 22px;
  border-radius: 50%; background: var(--night-1); transform: translate(6px, -4px);
}
.brandmark .name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--cream);
  letter-spacing: .01em;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--cream-2); font-weight: 600; font-size: .96rem; }
.nav-links a:hover { color: var(--amber-1); text-decoration: none; }

/* currency toggle */
.cur {
  display: inline-flex; padding: 4px; border-radius: 999px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(246, 239, 224, .16);
}
.cur button {
  font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  border: none; background: transparent; color: var(--cream-dim);
  padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: all .18s var(--ease);
}
.cur button.on { background: var(--amber); color: #3a2a08; box-shadow: 0 4px 14px -6px rgba(243, 193, 120, .8); }

.nav-cta { white-space: nowrap; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--cream); font-size: 1.5rem;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(10, 14, 40, .96); backdrop-filter: blur(14px);
    padding: 10px 22px 18px; border-bottom: 1px solid rgba(246, 239, 224, .1);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s var(--ease);
  }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero { padding: clamp(54px, 9vw, 110px) 0 70px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.trust { display: flex; align-items: center; gap: 10px; color: var(--cream-dim); font-size: .94rem; }
.trust svg { flex: none; }

.bumper {
  margin-top: 34px; padding: 18px 22px; border-radius: var(--r-md);
  border: 1px solid rgba(255, 207, 134, .22);
  background: linear-gradient(180deg, rgba(255, 207, 134, .08), rgba(255, 207, 134, .02));
}
.bumper .hand { font-size: 1.6rem; line-height: 1.3; display: block; }
.bumper .cap { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dim); margin-top: 6px; }

/* the moon (hero visual side) */
.moon-stage { position: relative; min-height: 420px; display: grid; place-items: center; }
.moon {
  width: clamp(180px, 30vw, 300px); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, var(--amber-1) 0%, var(--amber) 46%, #d99e52 78%, #c98c41 100%);
  box-shadow:
    0 0 90px 18px rgba(255, 207, 134, .42),
    0 0 200px 60px rgba(243, 193, 120, .18),
    inset -22px -22px 50px rgba(120, 78, 30, .35),
    inset 16px 16px 40px rgba(255, 247, 232, .5);
  position: relative;
  animation: moonbreath 9s ease-in-out infinite;
}
@keyframes moonbreath {
  0%, 100% { box-shadow: 0 0 90px 18px rgba(255,207,134,.42), 0 0 200px 60px rgba(243,193,120,.16), inset -22px -22px 50px rgba(120,78,30,.35), inset 16px 16px 40px rgba(255,247,232,.5); }
  50%      { box-shadow: 0 0 110px 26px rgba(255,207,134,.55), 0 0 240px 80px rgba(243,193,120,.24), inset -22px -22px 50px rgba(120,78,30,.35), inset 16px 16px 40px rgba(255,247,232,.55); }
}
.moon .crater { position: absolute; border-radius: 50%; background: rgba(150, 102, 44, .22); box-shadow: inset 2px 2px 4px rgba(120,78,30,.3); }
.moon .c1 { width: 22%; height: 22%; top: 22%; left: 26%; }
.moon .c2 { width: 13%; height: 13%; top: 54%; left: 56%; }
.moon .c3 { width: 9%;  height: 9%;  top: 32%; left: 62%; }

/* floating "tonight's story" card over the moon */
.tonight {
  position: absolute; bottom: 6px; left: -6px; width: min(330px, 86%);
  background: var(--cream); color: var(--ink);
  border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: var(--card-shadow);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.tonight .from { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--ink-soft); margin-bottom: 8px; }
.tonight .from b { color: var(--ink); }
.tonight .ttitle { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); margin-bottom: 6px; }
.tonight .snippet { font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; }
.tonight .play {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: var(--night-1); color: var(--cream); border: none; cursor: pointer;
  padding: 10px 14px; border-radius: 999px; font-family: var(--font-body); font-weight: 700; font-size: .9rem;
}
.tonight .play .tri { width: 0; height: 0; border-left: 11px solid var(--amber-1); border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.tonight .play.playing .tri { border: none; width: 11px; height: 12px; border-left: 4px solid var(--amber-1); border-right: 4px solid var(--amber-1); }
.tonight .wave { flex: 1; height: 18px; display: flex; align-items: center; gap: 2px; }
.tonight .wave span { flex: 1; background: rgba(255,216,155,.5); border-radius: 2px; height: 30%; }
.tonight .play.playing .wave span { animation: eq .9s ease-in-out infinite; }
.tonight .wave span:nth-child(2){ animation-delay: .15s } .tonight .wave span:nth-child(3){ animation-delay: .3s }
.tonight .wave span:nth-child(4){ animation-delay: .1s } .tonight .wave span:nth-child(5){ animation-delay: .25s }
@keyframes eq { 0%,100%{ height: 25%; } 50%{ height: 90%; } }

/* rolling hills along the bottom of the page */
.hills { position: relative; height: 0; }
.hills svg { position: absolute; bottom: -1px; left: 0; width: 100%; height: auto; display: block; }

/* ---------- generic section heading ---------- */
.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head .lede { margin: 16px auto 0; max-width: 52ch; }

/* ---------- pillars (the wedge) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(246,239,224,.12);
  border-radius: var(--r-lg); padding: 30px 26px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(255,207,134,.4); box-shadow: 0 30px 60px -34px rgba(0,0,0,.7); }
.pillar .ico {
  width: 58px; height: 58px; border-radius: 16px; overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(255,207,134,.3); margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.pillar .ico img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillar h3 { color: var(--cream); margin-bottom: 8px; }
.pillar p { color: var(--cream-dim); font-size: .98rem; margin: 0; }
.pillar .fine { color: var(--amber); font-size: .82rem; font-weight: 700; margin-top: 12px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
.step-card { position: relative; padding: 30px 24px; text-align: left; }
.step-card .num {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.4rem; color: #3a2a08;
  background: radial-gradient(circle at 34% 30%, var(--amber-1), var(--amber) 70%);
  box-shadow: 0 0 26px rgba(255,207,134,.5); margin-bottom: 18px;
}
.step-card h3 { color: var(--cream); margin-bottom: 8px; }
.step-card p { color: var(--cream-dim); font-size: .98rem; margin: 0; }
.inbox-note {
  margin-top: 36px; display: flex; gap: 16px; align-items: center; justify-content: center;
  text-align: center; flex-wrap: wrap;
  padding: 20px 26px; border-radius: var(--r-md);
  border: 1px dashed rgba(255,207,134,.35); background: rgba(255,207,134,.05);
  color: var(--cream-2);
}
.inbox-note b { color: var(--amber-1); }

/* ---------- the moat: "for the nights you can't be there" ---------- */
.away { position: relative; }
.away-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.away-copy h2 { margin-bottom: 18px; }
.away-copy .lede { margin-bottom: 26px; max-width: 46ch; }
.away-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 16px; }
.away-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--cream-2); font-size: 1.02rem; line-height: 1.55; }
.away-list li .ic {
  flex: none; width: 38px; height: 38px; border-radius: 10px; overflow: hidden;
  background: var(--cream); border: 1px solid rgba(255,207,134,.25);
  box-shadow: 0 2px 6px rgba(0,0,0,.2); margin-top: 2px;
}
.away-list li .ic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.away-list li b { color: var(--cream); }
.away-visual {
  position: relative; border-radius: var(--r-lg); padding: 36px 32px;
  background:
    radial-gradient(120% 120% at 72% -10%, rgba(255,207,134,.16), transparent 55%),
    linear-gradient(180deg, rgba(28,35,88,.75), rgba(10,14,40,.65));
  border: 1px solid rgba(246,239,224,.12); overflow: hidden; text-align: center;
}
.av-moon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px;
  background: radial-gradient(circle at 36% 34%, var(--amber-1), var(--amber) 60%, #d99e52);
  box-shadow: 0 0 50px 8px rgba(255,207,134,.45), inset -8px -8px 18px rgba(120,78,30,.35);
  animation: moonbreath 9s ease-in-out infinite;
}
.av-label { font-family: var(--font-hand); color: var(--amber-1); font-size: 1.5rem; margin: 0 0 14px; }
.av-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 40px; margin: 0 0 22px; }
.av-wave span { width: 5px; border-radius: 3px; background: rgba(255,216,155,.55); height: 30%; animation: eq 1s ease-in-out infinite; }
.av-wave span:nth-child(2n){ animation-delay: .15s } .av-wave span:nth-child(3n){ animation-delay: .3s } .av-wave span:nth-child(4n){ animation-delay: .45s } .av-wave span:nth-child(5n){ animation-delay: .1s }
@media (prefers-reduced-motion: reduce) { .av-wave span { animation: none; height: 55%; } }
.modes { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 18px; }
.mode-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px 7px 7px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(246,239,224,.18);
  color: var(--cream-2); font-weight: 700; font-size: .88rem;
}
.mode-chip img {
  width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex: none;
  background: var(--cream); border: 1px solid rgba(255,207,134,.25);
}
.av-cap { color: var(--cream-dim); font-size: .92rem; font-style: italic; margin: 0; }

/* a gentle lesson, woven into each night */
.week { margin-top: 44px; text-align: center; }
.week-label { color: var(--cream-dim); font-size: .98rem; margin: 0 0 16px; }
.week-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.week-row .night {
  display: inline-flex; gap: 8px; align-items: baseline; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(246,239,224,.14); color: var(--cream-2); font-size: .92rem;
}
.week-row .night b { color: var(--amber-1); font-family: var(--font-body); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 980px) { .away-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- the Hollow (cast) ---------- */
.cast { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cast-card {
  background: linear-gradient(180deg, rgba(28,35,88,.7), rgba(18,24,69,.55));
  border: 1px solid rgba(246,239,224,.1); border-radius: var(--r-md);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s var(--ease), border-color .25s;
}
.cast-card:hover { transform: translateY(-4px); border-color: rgba(255,207,134,.35); }
.cast-card .glyph {
  width: 66px; height: 66px; flex: none; border-radius: 16px; overflow: hidden;
  /* a little framed storybook plate — the painted illustration fills it */
  background: var(--cream); border: 1px solid rgba(16, 24, 64, .14);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.18);
}
.cast-card .glyph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin: 0 0 3px; }
.cast-card .role { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.cast-card p { font-size: .9rem; color: var(--cream-dim); margin: 0; }
.cast-foot { text-align: center; margin-top: 26px; color: var(--cream-dim); font-size: .96rem; }

/* ---------- the whole neighbourhood (friends gallery) ---------- */
.friends { margin-top: 52px; text-align: center; }
.friends-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin: 0 0 6px; }
.friends-sub { color: var(--cream-dim); font-size: .98rem; max-width: 52ch; margin: 0 auto 30px; }
.friend-grid {
  list-style: none; padding: 0; margin: 0 auto; max-width: 880px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px 18px;
}
.friend-grid li { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.friend-plate {
  width: 104px; height: 104px; border-radius: 50%; overflow: hidden;
  background: var(--cream); border: 2px solid rgba(255,207,134,.28);
  box-shadow: 0 4px 14px rgba(0,0,0,.28); transition: transform .25s var(--ease), border-color .25s;
}
.friend-grid li:hover .friend-plate { transform: translateY(-4px) scale(1.04); border-color: rgba(255,207,134,.6); }
.friend-plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.friend-grid b { font-family: var(--font-display); font-size: 1.02rem; color: var(--cream); font-weight: 500; }
.friend-grid i { font-style: normal; font-size: .76rem; color: var(--amber); letter-spacing: .01em; line-height: 1.3; max-width: 15ch; }
.friends-swap {
  max-width: 56ch; margin: 36px auto 0; color: var(--cream-2); font-size: 1.04rem; line-height: 1.6;
}
.friends-swap b { color: var(--amber-1); }
@media (max-width: 720px) { .friend-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; }
  .friend-plate { width: 88px; height: 88px; } }
@media (max-width: 380px) { .friend-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- samples ---------- */
.samples-wrap { max-width: 720px; margin: 0 auto; }
.band-pick { display: flex; gap: 10px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap; }
.band-pick .chip {
  padding: 10px 20px; border-radius: 999px; cursor: pointer; user-select: none;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(246,239,224,.18);
  color: var(--cream-2); font-weight: 700; font-size: .94rem; transition: all .18s var(--ease);
}
.band-pick .chip.on { background: var(--amber); border-color: var(--amber); color: #3a2a08; }
.sample-card {
  background: var(--cream); color: var(--ink); border-radius: var(--r-md);
  padding: 24px; box-shadow: var(--card-shadow);
}
.sample-card h3 { color: var(--ink); margin-bottom: 4px; }
.sample-card .desc { color: var(--ink-soft); font-size: .94rem; margin-bottom: 16px; }
.voice-row { margin: 14px 0; }
.voice-row .vlabel { font-weight: 700; font-size: .86rem; color: var(--ink-soft); margin-bottom: 6px; }
.sample-card audio { width: 100%; }
.sample-card .read { display: inline-block; margin-top: 12px; font-weight: 700; }

/* four no-name base-story cards */
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.story-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--cream); color: var(--ink); border-radius: var(--r-md);
  padding: 24px; box-shadow: var(--card-shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -34px rgba(0,0,0,.75); text-decoration: none; }
.story-card .theme-tag { font-family: var(--font-body); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; color: #b07d36; margin: 0 0 10px; }
.story-card h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.32rem; line-height: 1.12; margin: 0 0 8px; }
.story-card .sdesc { color: var(--ink-soft); font-size: .92rem; margin: 0 0 16px; flex: 1; }
.story-card .read { font-weight: 800; color: #b07d36; font-size: .92rem; }
.samples-foot { text-align: center; margin-top: 26px; color: var(--cream-dim); font-size: .94rem; }

/* the actual "listen" player (the agreed Nanny recording) */
.listen-player {
  max-width: 660px; margin: 34px auto 0; text-align: center;
  background: linear-gradient(180deg, rgba(255,207,134,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,207,134,.34); border-radius: var(--r-md); padding: 24px 26px;
}
.listen-player .lp-label { font-weight: 700; color: var(--cream); margin: 0 0 14px; font-size: 1.02rem; }
.listen-player .lp-label .hand { font-family: var(--font-hand); color: var(--amber-1); font-size: 1.5rem; }
.listen-player audio { width: 100%; border-radius: 10px; }
.listen-player .lp-note { color: var(--cream-dim); font-size: .9rem; margin: 14px 0 0; }
.listen-player .lp-note em { color: var(--amber-1); font-style: italic; }

/* age-band roadmap */
.ages-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 0 16px; }
.age-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  border: 1.5px solid rgba(246,239,224,.18); background: rgba(255,255,255,.05); color: var(--cream-2);
}
.age-pill.on { border-color: rgba(255,207,134,.5); background: rgba(255,207,134,.1); color: var(--amber-1); }
.age-pill.on::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 8px var(--sage); }
.age-pill.soon { color: var(--cream-dim); }
.age-pill.soon .soon-tag { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--rose); font-weight: 800; }
.ages-note { text-align: center; max-width: 56ch; margin: 0 auto 36px; color: var(--cream-dim); font-size: .92rem; }
.ages-note em { color: var(--cream-2); font-style: italic; }
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .story-grid { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.price-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(246,239,224,.14); border-radius: var(--r-lg);
  padding: 30px 26px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 36px 70px -36px rgba(0,0,0,.7); }
.tier.featured { border-color: rgba(255,207,134,.55); box-shadow: 0 0 0 1px rgba(255,207,134,.25), var(--card-shadow); }
.tier .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-1), var(--amber)); color: #3a2a08;
  font-weight: 800; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(243,193,120,.8);
}
.tier .tname { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-bottom: 4px; }
.tier .tsub { color: var(--cream-dim); font-size: .92rem; min-height: 2.6em; margin-bottom: 16px; }
.tier .amt { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.tier .amt .big { font-family: var(--font-display); font-size: 2.6rem; color: var(--amber-1); line-height: 1; }
.tier .amt .per { color: var(--cream-dim); font-size: .94rem; }
.tier .amt .cur-code { font-size: .8rem; color: var(--cream-dim); align-self: center; margin-left: 2px; }
.tier ul { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--cream-2); }
.tier ul li .tick { color: var(--sage); flex: none; margin-top: 2px; }
.tier .btn { margin-top: auto; }

/* featured family-voice card (full width) */
.tier-voice {
  margin-top: 24px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 88% -20%, rgba(255,207,134,.16), transparent 50%),
    linear-gradient(180deg, rgba(90,70,144,.32), rgba(28,35,88,.5));
  border: 1px solid rgba(255,207,134,.45); border-radius: var(--r-lg);
  padding: 36px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.tier-voice .badge {
  display: inline-block; position: static; transform: none; margin-bottom: 14px;
  padding: 6px 16px; border-radius: 999px;
  font-weight: 800; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose), var(--rose-2)); color: #3a1018;
  box-shadow: 0 8px 20px -8px rgba(233, 140, 160, .7);
}
.tier-voice .tname { font-size: 2rem; }
.tier-voice .tsub { min-height: 0; font-size: 1.02rem; color: var(--cream-2); max-width: 42ch; }
.tier-voice ul { grid-template-columns: 1fr 1fr; }
.voice-config {
  background: rgba(10,14,40,.5); border: 1px solid rgba(246,239,224,.14);
  border-radius: var(--r-md); padding: 26px;
}
.voice-config .planned-label { font-family: var(--font-body); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; color: var(--rose); margin: 0 0 8px; }
.voice-config .vc-amt { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.voice-config .vc-amt .big { font-family: var(--font-display); font-size: 3.2rem; color: var(--amber-1); line-height: 1; }
.voice-config .vc-amt .per { color: var(--cream-dim); }
.voice-config .nights-read { color: var(--cream-2); font-weight: 700; margin-bottom: 20px; }
.voice-config .nights-read b { color: var(--amber-1); font-size: 1.1em; }
.slider-wrap { margin: 8px 0 6px; }
input[type=range].nights {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) var(--fill, 30%), rgba(255,255,255,.14) var(--fill, 30%));
  outline: none; cursor: pointer;
}
input[type=range].nights::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--amber-1), var(--amber));
  box-shadow: 0 0 18px rgba(255,207,134,.8), 0 4px 10px rgba(0,0,0,.4); cursor: pointer; border: none;
}
input[type=range].nights::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: radial-gradient(circle at 34% 30%, var(--amber-1), var(--amber));
  box-shadow: 0 0 18px rgba(255,207,134,.8); cursor: pointer;
}
.slider-ends { display: flex; justify-content: space-between; font-size: .8rem; color: var(--cream-dim); margin-top: 6px; }
.voice-config .setup { font-size: .84rem; color: var(--cream-dim); margin: 16px 0 0; }
.voice-config .setup b { color: var(--sage); }
.price-foot { text-align: center; color: var(--cream-dim); font-size: .88rem; margin-top: 22px; }

/* ---------- reassurance band ---------- */
.safe {
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(255,207,134,.08), transparent 60%);
  border-top: 1px solid rgba(246,239,224,.08); border-bottom: 1px solid rgba(246,239,224,.08);
}
.safe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.safe-item h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.08rem; margin: 0 0 6px; }
.safe-item p { font-size: .9rem; color: var(--cream-dim); margin: 0; }
.safe-item .s-ico {
  width: 52px; height: 52px; border-radius: 14px; overflow: hidden; margin-bottom: 12px;
  background: var(--cream); border: 1px solid rgba(255,207,134,.28);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.safe-item .s-ico img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq {
  border: 1px solid rgba(246,239,224,.12); border-radius: var(--r-md);
  margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,.03);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.04rem;
  color: var(--cream); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; color: var(--amber); font-size: 1.4rem; transition: transform .2s var(--ease); }
.faq[open] summary .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; color: var(--cream-dim); }
.faq .ans p { margin: 0; }

/* ---------- final CTA ---------- */
.final {
  text-align: center; padding: clamp(60px, 9vw, 110px) 0;
}
.final h2 { margin-bottom: 18px; }
.final .lede { margin: 0 auto 30px; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid rgba(246,239,224,.1); padding: 46px 0 60px; color: var(--cream-dim); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { color: var(--cream-2); font-weight: 600; font-size: .92rem; }
.foot .fine { width: 100%; font-size: .82rem; color: var(--cream-dim); margin-top: 26px; line-height: 1.7; }

/* ---------- section rhythm ---------- */
.pad { padding: clamp(64px, 9vw, 110px) 0; }
.pad-sm { padding: clamp(44px, 6vw, 78px) 0; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .moon-stage { min-height: 360px; }
  .pillars, .steps, .price-top { grid-template-columns: 1fr; }
  .cast { grid-template-columns: 1fr 1fr; }
  .tier-voice { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
  .tier-voice ul { grid-template-columns: 1fr; }
  .safe-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cast { grid-template-columns: 1fr; }
  .safe-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .tonight { left: 0; right: 0; margin: 0 auto; }
}

/* ============================================================
   LEGAL pages (privacy.html / terms.html)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 0 80px; }
.legal .back { display: inline-block; margin-bottom: 22px; font-weight: 700; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 8px; }
.legal .stamp { color: var(--cream-dim); font-size: .9rem; margin-bottom: 14px; }
.legal .draft {
  border: 1px dashed rgba(255,207,134,.4); background: rgba(255,207,134,.06);
  border-radius: var(--r-sm); padding: 14px 18px; color: var(--cream-2); font-size: .92rem; margin-bottom: 34px;
}
.legal h2 { font-size: 1.5rem; color: var(--cream); margin: 38px 0 12px; }
.legal h3 { font-size: 1.12rem; color: var(--amber-1); margin: 24px 0 8px; }
.legal p, .legal li { color: var(--cream-2); font-size: 1rem; line-height: 1.75; }
.legal ul { padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--cream); }
.legal .toc { background: rgba(255,255,255,.04); border: 1px solid rgba(246,239,224,.12); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 30px; }
.legal .toc a { display: block; padding: 4px 0; font-weight: 600; }

/* ============================================================
   STORY READER (sample story pages /samples/*.html)
   A cream "page" for comfortable bedtime reading.
   ============================================================ */
.reader-wrap { max-width: 720px; margin: 0 auto; padding: 30px 0 70px; }
.reader-wrap .back { display: inline-block; margin-bottom: 20px; font-weight: 700; }
.reader {
  background: var(--cream); color: var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--card-shadow);
  padding: clamp(28px, 5vw, 56px);
}
.reader .theme-tag {
  font-family: var(--font-body); font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  font-size: .76rem; color: #b07d36; margin: 0 0 10px;
}
.reader h1 {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1.05; margin: 0 0 6px;
}
.reader .byline { color: var(--ink-soft); font-size: .94rem; margin: 0 0 26px; font-style: italic; }
.reader .intro-line {
  font-family: var(--font-hand); font-size: 1.5rem; line-height: 1.4; color: #8a5a2b;
  text-align: center; margin: 0 0 28px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(34,29,60,.12);
}
.reader p { font-family: var(--font-display); font-weight: 400; font-size: 1.18rem; line-height: 1.85; color: #34304e; margin: 0 0 1.25rem; }
.reader p.refrain {
  text-align: center; font-style: italic; color: #8a5a2b; font-size: 1.12rem;
  margin: 1.6rem 0; letter-spacing: .01em;
}
.reader .goodnight {
  margin: 30px 0 0; padding-top: 26px; border-top: 1px solid rgba(34,29,60,.12);
  text-align: center;
}
.reader .goodnight p { font-family: var(--font-display); font-style: italic; font-size: 1.16rem; line-height: 1.7; color: #4a4368; margin: 0; }
.reader .goodnight p .hollow { color: #8a5a2b; font-weight: 500; }
.reader-foot {
  margin-top: 28px; text-align: center; background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,207,134,.35); border-radius: var(--r-md); padding: 22px;
}
.reader-foot p { color: var(--cream-2); margin: 0 0 16px; font-size: .98rem; }
.reader-foot .micro { color: var(--cream-dim); font-size: .84rem; margin: 12px 0 0; }

/* ============================================================
   ANSWER PAGES + HUB  (/answers/*) — the AEO layer
   Boring-Marketer page model: one question = one URL, boxed
   citable TL;DR under the H1, hub-and-spoke linking.
   ============================================================ */
.answer-wrap { max-width: 800px; margin: 0 auto; padding: 28px 0 70px; }
.crumbs { font-size: .86rem; color: var(--cream-dim); margin: 0 0 22px; }
.crumbs a { color: var(--cream-2); font-weight: 600; }
.crumbs span { opacity: .6; margin: 0 8px; }
.answer h1 { font-family: var(--font-display); font-weight: 500; color: var(--cream); font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.08; margin: 0 0 20px; }
.tldr {
  border: 1px solid rgba(255,207,134,.4);
  background: linear-gradient(180deg, rgba(255,207,134,.12), rgba(255,207,134,.04));
  border-radius: var(--r-md); padding: 22px 26px; margin: 0 0 32px;
}
.tldr .tldr-label { font-family: var(--font-body); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; color: var(--amber); margin: 0 0 8px; }
.tldr p { font-size: 1.12rem; line-height: 1.65; color: var(--cream); margin: 0; }
.answer .body h2 { font-family: var(--font-display); font-weight: 500; color: var(--cream); font-size: 1.5rem; margin: 36px 0 12px; }
.answer .body h3 { font-size: 1.14rem; color: var(--amber-1); margin: 24px 0 8px; }
.answer .body p, .answer .body li { color: var(--cream-2); font-size: 1.04rem; line-height: 1.75; }
.answer .body ul, .answer .body ol { padding-left: 22px; margin: 0 0 18px; }
.answer .body li { margin-bottom: 8px; }
.answer .body strong { color: var(--cream); }
.answer .body table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .96rem; }
.answer .body th, .answer .body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(246,239,224,.12); color: var(--cream-2); }
.answer .body th { color: var(--amber-1); font-weight: 700; }
.answer-cta {
  margin: 34px 0; padding: 26px; text-align: center; border-radius: var(--r-md);
  background: radial-gradient(120% 140% at 80% -20%, rgba(255,207,134,.14), transparent 55%), linear-gradient(180deg, rgba(90,70,144,.3), rgba(28,35,88,.45));
  border: 1px solid rgba(255,207,134,.3);
}
.answer-cta h3 { font-family: var(--font-display); font-weight: 500; color: var(--cream); font-size: 1.4rem; margin: 0 0 8px; }
.answer-cta p { color: var(--cream-2); margin: 0 0 18px; }
.related { margin-top: 40px; }
.related h2 { font-family: var(--font-display); font-weight: 500; color: var(--cream); font-size: 1.4rem; margin: 0 0 16px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-card {
  display: block; text-decoration: none; padding: 18px 20px; border-radius: var(--r-md);
  background: rgba(255,255,255,.05); border: 1px solid rgba(246,239,224,.12);
  transition: transform .2s var(--ease), border-color .2s;
}
.related-card:hover { transform: translateY(-3px); border-color: rgba(255,207,134,.4); text-decoration: none; }
.related-card .q { font-family: var(--font-display); color: var(--cream); font-size: 1.05rem; line-height: 1.25; margin: 0 0 6px; }
.related-card .a { color: var(--cream-dim); font-size: .88rem; margin: 0; }

/* hub index */
.hub-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.hub-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.hub-item {
  display: block; text-decoration: none; padding: 22px 24px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(246,239,224,.12);
  transition: transform .2s var(--ease), border-color .2s;
}
.hub-item:hover { transform: translateY(-3px); border-color: rgba(255,207,134,.4); text-decoration: none; }
.hub-item .q { font-family: var(--font-display); color: var(--cream); font-size: 1.22rem; line-height: 1.2; margin: 0 0 6px; }
.hub-item .a { color: var(--cream-dim); font-size: .94rem; margin: 0; }
.hub-item .cat { font-family: var(--font-body); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .68rem; color: var(--amber); margin: 0 0 8px; }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
