/* ============================================================
   Lumie — website styles
   A night sky from Lucentia, with the app's soft morning cream
   floating inside it. Display: Fredoka. Body: Nunito.
   ============================================================ */

:root {
  /* Lucentia night */
  --night-0: #140b2c;
  --night-1: #1d1142;
  --night-2: #2a1757;
  --night-3: #3a2170;

  /* App morning */
  --cream-0: #fdf2ef;
  --cream-1: #fbe9ec;
  --cream-2: #f6dfe8;

  /* Ink */
  --ink-on-dark: #f5efff;
  --ink-on-dark-muted: #bcaae6;
  --ink-on-light: #34205c;
  --ink-on-light-muted: #7a68a6;

  /* Brand */
  --pink: #f75590;
  --pink-soft: #ff8ab8;
  --violet: #9a6cf0;
  --gold: #ffd34d;
  --mint: #7fe3c8;

  --grad-cta: linear-gradient(92deg, #ff5f9e 0%, #d96ce0 55%, #a86ff5 100%);
  --grad-word: linear-gradient(92deg, #ffd34d 0%, #ff8ab8 50%, #b58cff 100%);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-card: 0 24px 60px -24px rgba(10, 4, 34, 0.55);
  --shadow-pop: 0 10px 34px -8px rgba(247, 85, 144, 0.45);

  --w-page: 1120px;
  --font-display: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 800px at 80% -10%, #3d2374 0%, transparent 55%),
    radial-gradient(900px 700px at -10% 30%, #2f1a63 0%, transparent 50%),
    linear-gradient(180deg, var(--night-1) 0%, var(--night-0) 100%);
  background-color: var(--night-0);
  color: var(--ink-on-dark);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #fff; }

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

/* Starfield canvas sits behind everything */
#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ---------------------------------------------------------- */
/* Layout helpers                                              */
/* ---------------------------------------------------------- */

.wrap {
  width: min(var(--w-page), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; }

.section-light {
  background: linear-gradient(180deg, var(--cream-0) 0%, var(--cream-1) 100%);
  color: var(--ink-on-light);
  border-radius: 40px;
  width: min(1280px, calc(100% - 24px));
  margin-inline: auto;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.section-light + .section-light { margin-top: 28px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 18px;
}

.section-light .kicker { color: var(--pink); }

.kicker::before { content: "✦"; color: var(--gold); }

.h-xl { font-size: clamp(38px, 6vw, 64px); }
.h-lg { font-size: clamp(30px, 4.4vw, 46px); }
.h-md { font-size: clamp(22px, 3vw, 30px); }

.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-on-dark-muted);
  max-width: 640px;
}

.section-light .lede { color: var(--ink-on-light-muted); }

.grad-word {
  background: var(--grad-word);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------- */
/* Buttons & chips                                             */
/* ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-pop);
}

.btn-primary:hover { transform: translateY(-2px) scale(1.02); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-on-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.section-light .btn-ghost {
  color: var(--ink-on-light);
  border-color: rgba(52, 32, 92, 0.25);
  background: rgba(255, 255, 255, 0.55);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-light .chip {
  background: #fff;
  border-color: #f0dbe6;
  color: var(--ink-on-light);
  box-shadow: 0 4px 14px -6px rgba(52, 32, 92, 0.25);
}

/* ---------------------------------------------------------- */
/* Nav                                                         */
/* ---------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(20, 11, 44, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.logo .spark { color: var(--gold); font-size: 20px; }

.logo .dot { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  text-decoration: none;
  color: var(--ink-on-dark-muted);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav .btn { padding: 11px 22px; font-size: 15px; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* ---------------------------------------------------------- */
/* Hero                                                        */
/* ---------------------------------------------------------- */

.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/lucentia-bg.webp") center 20% / cover no-repeat;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 26px;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 227, 200, 0.6); }
  50% { box-shadow: 0 0 0 7px rgba(127, 227, 200, 0); }
}

.hero h1 { font-size: clamp(32px, 4.2vw, 49px); margin-bottom: 22px; }

.hero .lede { margin-bottom: 36px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink-on-dark-muted);
}

/* Phone mockup */
.phone {
  position: relative;
  width: min(320px, 80vw);
  margin-inline: auto;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #241546, #150c2d);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.8),
    0 0 80px -20px rgba(154, 108, 240, 0.45);
  transform: rotate(2.5deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #150c2d;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone video, .phone img {
  border-radius: 34px;
  width: 100%;
  aspect-ratio: 9 / 19.2;
  object-fit: cover;
}

.phone .phone-brand {
  position: absolute;
  top: 52px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(20, 8, 40, 0.85), 0 0 26px rgba(247, 85, 144, 0.55);
  pointer-events: none;
}

.phone .phone-brand .spark { color: var(--gold); font-size: 18px; }

.phone .phone-brand small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 3px;
  text-shadow: 0 1px 10px rgba(20, 8, 40, 0.9);
}

/* Demo section */
.demo-steps {
  list-style: none;
  display: grid;
  gap: 16px;
  counter-reset: demo;
}

.demo-steps li {
  counter-increment: demo;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.demo-steps li::before {
  content: counter(demo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--grad-cta);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-steps b { color: var(--ink-on-dark); }

.demo-steps span { color: var(--ink-on-dark-muted); font-size: 15.5px; display: block; }

.phone-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-on-dark-muted);
}

.float { animation: float 7s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(2.5deg) translateY(-14px); }
}

/* ---------------------------------------------------------- */
/* Why section (story beats)                                   */
/* ---------------------------------------------------------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.story-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.story-card:hover { transform: translateY(-6px); border-color: rgba(255, 138, 184, 0.5); }

.story-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.story-card h3 { font-size: 23px; margin-bottom: 12px; }

.story-card p { color: var(--ink-on-dark-muted); font-size: 16px; }

.story-card .strike { text-decoration: line-through; text-decoration-color: var(--pink); text-decoration-thickness: 2.5px; }

/* Lore panel with video */
.lore {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-top: 90px;
}

.lore-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 90px -25px rgba(255, 138, 184, 0.5), var(--shadow-card);
}

.lore-video video { width: 100%; }

.lore h3 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }

.lore p { color: var(--ink-on-dark-muted); margin-bottom: 14px; }

.lore .vow {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 211, 77, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: #ffe9ad;
}

/* Manifesto strip */
.manifesto {
  text-align: center;
  padding: 110px 0;
}

.manifesto .big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5.4vw, 58px);
  line-height: 1.25;
}

.manifesto .strike {
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 4px;
  color: var(--ink-on-dark-muted);
}

.manifesto .hyper {
  background: var(--grad-word);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.manifesto p { margin-top: 20px; color: var(--ink-on-dark-muted); }

/* ---------------------------------------------------------- */
/* Feature rows (light sections)                               */
/* ---------------------------------------------------------- */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row + .feature-row { margin-top: 96px; }

.feature-row.flip .feature-media { order: 2; }

.feature-media { position: relative; }

.feature-media .app-shot {
  width: min(300px, 78vw);
  margin-inline: auto;
  border-radius: 32px;
  border: 8px solid #fff;
  box-shadow: 0 30px 70px -28px rgba(52, 32, 92, 0.55);
}

.feature-media .scene {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -28px rgba(52, 32, 92, 0.5);
}

.feature-copy h3 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 16px; }

.feature-copy p { color: var(--ink-on-light-muted); margin-bottom: 16px; }

.feature-list { list-style: none; margin-top: 20px; display: grid; gap: 13px; }

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16.5px;
}

.feature-list li::before {
  content: "✦";
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-list b { color: var(--ink-on-light); }

/* Ritual steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.step {
  counter-increment: step;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: 0 14px 34px -18px rgba(52, 32, 92, 0.35);
  position: relative;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--grad-cta);
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
}

.step h4 { font-size: 18.5px; margin-bottom: 8px; }

.step p { font-size: 15px; color: var(--ink-on-light-muted); }

/* Breathing demo */
.breath-demo {
  margin-top: 64px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 18px;
}

.breath-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2) 60%),
    var(--grad-cta);
  box-shadow: 0 0 0 14px rgba(247, 85, 144, 0.12), 0 24px 50px -18px rgba(247, 85, 144, 0.55);
  transition: transform 4s cubic-bezier(0.45, 0, 0.35, 1);
  transform: scale(0.8);
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(90, 30, 80, 0.4);
}

.breath-ring.inhale { transform: scale(1.12); }

.breath-demo small { color: var(--ink-on-light-muted); }

/* ---------------------------------------------------------- */
/* Meet Lumie                                                  */
/* ---------------------------------------------------------- */

.companion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 54px;
  max-width: 760px;
  margin-inline: auto;
}

.companion-card {
  background: linear-gradient(170deg, #1c1042, #120a28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 30px 26px 34px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.companion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 70px -18px rgba(255, 138, 184, 0.55);
}

.companion-card img { width: 78%; margin-inline: auto; }

.companion-card h4 { font-size: 22px; margin-top: 18px; }

.companion-card p { font-size: 15px; color: var(--ink-on-dark-muted); margin-top: 8px; }

.states-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}

/* ---------------------------------------------------------- */
/* Lumie's day strip                                           */
/* ---------------------------------------------------------- */

.day-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.day-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px -20px rgba(52, 32, 92, 0.4);
  transition: transform 0.25s ease;
}

.day-card:hover { transform: translateY(-7px) rotate(-0.5deg); }

.day-card img { aspect-ratio: 16 / 10; object-fit: cover; }

.day-card .meta { padding: 16px 18px 18px; }

.day-card h4 { font-size: 17.5px; }

.day-card span {
  font-size: 13.5px;
  color: var(--ink-on-light-muted);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ---------------------------------------------------------- */
/* Promises                                                    */
/* ---------------------------------------------------------- */

.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.promise {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.promise .ico { font-size: 26px; margin-bottom: 12px; }

.promise h4 { font-size: 18px; margin-bottom: 8px; }

.promise p { font-size: 14.5px; color: var(--ink-on-dark-muted); }

/* ---------------------------------------------------------- */
/* Get app / CTA                                               */
/* ---------------------------------------------------------- */

.cta-final {
  text-align: center;
  padding: 120px 0 140px;
  position: relative;
}

.cta-final .h-lg { margin-bottom: 18px; }

.cta-final .lede { margin-inline: auto; margin-bottom: 40px; }

.platform-note {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------- */
/* Footer                                                      */
/* ---------------------------------------------------------- */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 60px 0 44px;
  font-size: 15px;
  color: var(--ink-on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer ul { list-style: none; display: grid; gap: 9px; }

.footer a { color: var(--ink-on-dark-muted); text-decoration: none; transition: color 0.2s; }

.footer a:hover { color: #fff; }

.footer .fine {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Sound toggle */
.sound-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 11, 44, 0.85);
  backdrop-filter: blur(10px);
  color: var(--ink-on-dark);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.sound-toggle:hover { border-color: var(--pink-soft); transform: translateY(-2px); }

.sound-toggle .eq { color: var(--gold); }

/* ---------------------------------------------------------- */
/* Sub-pages                                                   */
/* ---------------------------------------------------------- */

.page-hero {
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
}

.page-hero .lede { margin-inline: auto; }

.prose {
  max-width: 760px;
  margin-inline: auto;
}

.prose h2 { font-size: 26px; margin: 40px 0 14px; }

.prose h3 { font-size: 20px; margin: 28px 0 10px; }

.prose p, .prose li { color: var(--ink-on-light-muted); }

.prose ul { padding-left: 22px; margin: 12px 0; }

.prose .prose-note {
  background: #fff;
  border-left: 3px solid var(--violet);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.table-wrap { overflow-x: auto; margin: 24px 0; }

table.nice {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(52, 32, 92, 0.3);
  font-size: 15.5px;
  min-width: 520px;
}

table.nice th, table.nice td { padding: 13px 18px; text-align: left; }

table.nice th {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--cream-2);
  color: var(--ink-on-light);
}

table.nice td { border-top: 1px solid #f3e3ec; color: var(--ink-on-light-muted); }

table.nice td:first-child { color: var(--ink-on-light); font-weight: 700; }

/* FAQ */
.faq { max-width: 760px; margin: 40px auto 0; display: grid; gap: 14px; }

.faq details {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 10px 28px -16px rgba(52, 32, 92, 0.3);
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq summary::after { content: "+"; color: var(--pink); font-size: 22px; }

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

.faq details p { margin-top: 12px; color: var(--ink-on-light-muted); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- */
/* Responsive                                                  */
/* ---------------------------------------------------------- */

@media (max-width: 980px) {
  .hero-inner, .lore, .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip .feature-media { order: 0; }
  .story-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .day-strip { grid-template-columns: 1fr 1fr; }
  .promises { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 140px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(20, 11, 44, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 14px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; display: block; }
  .nav-burger { display: block; }
  .nav .btn-primary { display: none; }
  .companion-grid { grid-template-columns: 1fr; }
  .steps, .day-strip, .promises { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
