/* ──────────────────────────────────────────────────────────────────────────
   Good Karma — marketing site
   Design tokens mirror lib/theme.ts (RD): deep ink + metallic gold on
   frosted glass over illustrated "sacred valley" scenes.
   ────────────────────────────────────────────────────────────────────────── */

:root {
  /* ink */
  --ink: #2E1D54;
  --ink-soft: rgba(46, 29, 84, .6);
  --ink-faint: rgba(46, 29, 84, .42);
  /* gold */
  --gold: #C9962E;
  --gold-grad: linear-gradient(135deg, #F7E3A6 0%, #E9C46A 25%, #C9962E 50%, #EBCF86 75%, #F7E3A6 100%);
  --gold-line: rgba(201, 150, 46, .7);
  --gold-border-soft: rgba(201, 150, 46, .35);
  /* glass */
  --glass-airy: rgba(245, 239, 255, .30);
  --glass-opaque: rgba(247, 243, 255, .66);
  --glass-border: rgba(255, 255, 255, .5);
  /* petals */
  --petal-a: #FFE1EC;
  --petal-b: #F7A8C4;
  /* page (night-sky purples sampled from the scene set) */
  --page-0: #150d33;
  --page-1: #1f1444;
  --page-2: #2E1D54;
  --page-text: rgba(244, 240, 253, .92);
  --page-text-soft: rgba(244, 240, 253, .64);
  --card-bg: rgba(255, 255, 255, .055);
  --card-border: rgba(255, 255, 255, .12);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 30px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--page-text);
  background:
    radial-gradient(120% 60% at 50% 0%, #3a2768 0%, transparent 60%),
    linear-gradient(180deg, var(--page-1) 0%, var(--page-0) 100%);
  background-color: var(--page-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Shared bits ─────────────────────────────────────────────────────────── */

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

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-onimage { color: #F2D593; text-shadow: 0 1px 8px rgba(60, 30, 90, .5); }

.section { max-width: var(--max-w); margin: 0 auto; padding: 110px 28px; }
.section-alt {
  max-width: none;
  background: rgba(255, 255, 255, .025);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.section-alt > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.18;
  letter-spacing: -.3px;
}
.section-title-onimage {
  color: #fff;
  text-shadow: 0 2px 18px rgba(40, 18, 70, .55);
  margin-bottom: 40px;
}
.section-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--page-text-soft);
  font-size: 17px;
}

.stars { color: #E9C46A; letter-spacing: 2px; font-size: 14px; }

/* ── Buttons (mirrors GoldButton: solid gold / glass pill) ───────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 17px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .3px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 10px 18px rgba(58, 31, 102, .28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(58, 31, 102, .38); }
.btn:active { transform: translateY(0); opacity: .9; }

.btn-gold { background: var(--gold-grad); color: #3A2168; }
.btn-glass {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-small { padding: 11px 22px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-ico { width: 20px; height: 20px; flex: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-row-center { justify-content: center; }

/* ── Waitlist form (pre-launch) ──────────────────────────────────────────── */

.waitlist-form { position: relative; margin-top: 34px; max-width: 520px; }
.waitlist-form-center { margin-left: auto; margin-right: auto; }

.waitlist-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 18px rgba(58, 31, 102, .28);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.waitlist-field:focus-within {
  border-color: rgba(233, 196, 106, .75);
  box-shadow: 0 10px 22px rgba(58, 31, 102, .38), 0 0 0 3px rgba(233, 196, 106, .22);
}

.waitlist-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  padding: 12px 4px;
  font: 500 16px var(--sans);
  color: #fff;
}
.waitlist-input::placeholder { color: rgba(255, 255, 255, .6); }

.waitlist-btn {
  border: none;
  cursor: pointer;
  padding: 13px 26px;
  font-size: 15px;
  white-space: nowrap;
}
.waitlist-btn:disabled { opacity: .65; cursor: default; transform: none; }

.waitlist-msg {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 10px rgba(40, 18, 70, .5);
}
.waitlist-msg.ok { color: #F2D593; }
.waitlist-msg.err { color: #FFB4C0; }
.waitlist-form.done .waitlist-field { display: none; }
.waitlist-form.done .waitlist-msg { font-size: 17px; font-weight: 600; }

/* honeypot — visually gone, still in the DOM for bots */
.waitlist-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.store-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.store-pill svg { width: 16px; height: 16px; flex: none; opacity: .85; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(21, 13, 51, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 10px 30px rgba(10, 5, 25, .35);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-lotus {
  width: 30px;
  height: 20px;
  background: var(--gold-grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 22"><ellipse cx="17" cy="10.8" rx="3.9" ry="10.2"/><ellipse cx="17" cy="11.6" rx="3.6" ry="9.4" transform="rotate(-30 17 21)"/><ellipse cx="17" cy="11.6" rx="3.6" ry="9.4" transform="rotate(30 17 21)"/><ellipse cx="17" cy="13.4" rx="3.3" ry="8" transform="rotate(-58 17 21)"/><ellipse cx="17" cy="13.4" rx="3.3" ry="8" transform="rotate(58 17 21)"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 22"><ellipse cx="17" cy="10.8" rx="3.9" ry="10.2"/><ellipse cx="17" cy="11.6" rx="3.6" ry="9.4" transform="rotate(-30 17 21)"/><ellipse cx="17" cy="11.6" rx="3.6" ry="9.4" transform="rotate(30 17 21)"/><ellipse cx="17" cy="13.4" rx="3.3" ry="8" transform="rotate(-58 17 21)"/><ellipse cx="17" cy="13.4" rx="3.3" ry="8" transform="rotate(58 17 21)"/></svg>') center / contain no-repeat;
}
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: #fff; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--page-text-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--page-text-soft);
  font: 600 12px var(--sans);
  letter-spacing: .5px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-toggle button[aria-pressed="true"] { background: var(--gold-grad); color: #3A2168; }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-01.jpg') center 30% / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 13, 51, .45) 0%, rgba(21, 13, 51, .15) 35%, rgba(21, 13, 51, .55) 80%, var(--page-1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 150px 28px 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}
.hero-copy .eyebrow { color: #F2D593; text-shadow: 0 1px 8px rgba(60, 30, 90, .5); }
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.5px;
  filter: drop-shadow(0 2px 14px rgba(40, 18, 70, .45));
}
.hero-sub {
  margin-top: 22px;
  max-width: 480px;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 12px rgba(40, 18, 70, .5);
}
.trust-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  text-shadow: 0 1px 10px rgba(40, 18, 70, .5);
}

/* falling petals */
.hero-petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.petal {
  position: absolute;
  top: -4%;
  width: 12px;
  height: 9px;
  background: radial-gradient(ellipse at 35% 30%, var(--petal-a), var(--petal-b));
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  opacity: 0;
  animation: petal-fall linear infinite;
}
@keyframes petal-fall {
  0%   { transform: translate3d(0, -4vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: .85; }
  85%  { opacity: .7; }
  100% { transform: translate3d(var(--sway, 60px), 108vh, 0) rotate(var(--spin, 320deg)); opacity: 0; }
}

/* ── Phone mockup ────────────────────────────────────────────────────────── */

.hero-phone { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone {
  width: min(320px, 78vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 56px;
  background: linear-gradient(160deg, #241743, #120b28);
  padding: 11px;
  box-shadow:
    0 40px 80px rgba(8, 4, 22, .6),
    0 0 0 1px rgba(255, 255, 255, .14),
    inset 0 0 0 1.5px rgba(255, 255, 255, .06);
  transform: rotate(2.2deg);
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: url('assets/bg-08.jpg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  padding: 64px 18px 26px;
}
.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #0a0618;
}
.phone-date {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 8px rgba(60, 30, 90, .5);
}
.phone-center { flex: 1; display: flex; align-items: center; justify-content: center; padding: 30px 0 12px; }
.phone-actions { display: flex; justify-content: center; gap: 14px; }
.action-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}
.action-dot svg { width: 20px; height: 20px; }
.phone-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  text-shadow: 0 1px 10px rgba(40, 18, 70, .5);
}

/* ── Glass card (mirrors GlassCard + Medallion + Divider) ────────────────── */

.glass-card { position: relative; width: 100%; max-width: 300px; }
.glass-card-wide { max-width: 640px; margin: 56px auto 0; }

.glass-card::before {
  /* gold frame: gradient border via padding-box trick */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--gold-grad);
  box-shadow: 0 18px 28px rgba(58, 31, 102, .32);
}
.glass-clip {
  position: relative;
  margin: 1.6px;
  border-radius: 28.5px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-airy);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 52px 30px 28px;
  text-align: center;
}
.glass-card-wide .glass-clip { padding: 60px 44px 34px; }

.medallion {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gold-grad);
  padding: 3px;
  box-shadow: 0 10px 18px rgba(58, 31, 102, .28);
}
.medallion span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #7B57AE 0%, #4A2C82 55%, #321A5E 100%);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.4;
  color: #F2D593;
}

.glass-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -.2px;
  color: var(--ink);
}
.glass-quote-lg { font-size: clamp(24px, 3.2vw, 34px); }

.lotus-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 12px;
}
.lotus { width: 24px; height: 16px; }
.lotus-big { width: 44px; height: 29px; margin-bottom: 18px; }
.lotus-line { height: 1px; width: 54px; }
.lotus-line-l { background: linear-gradient(90deg, rgba(201, 150, 46, 0), var(--gold-line)); }
.lotus-line-r { background: linear-gradient(90deg, var(--gold-line), rgba(201, 150, 46, 0)); }

.glass-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* corner mandalas (12-spoke wheel, like CornerMandala) */
.mandala {
  position: absolute;
  bottom: -28px;
  width: 96px;
  height: 96px;
  opacity: .12;
  background:
    repeating-conic-gradient(from 0deg, #7C57AE 0deg 1.4deg, transparent 1.4deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 0 29px, #000 29px 44px, transparent 44px);
  mask: radial-gradient(circle, transparent 0 29px, #000 29px 44px, transparent 44px);
  border-radius: 50%;
}
.mandala-bl { left: -28px; }
.mandala-br { right: -28px; }

/* ── Stats band ──────────────────────────────────────────────────────────── */

.stats { border-bottom: 1px solid var(--card-border); }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 44px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-n {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
}
.stat-l { font-size: 13px; color: var(--page-text-soft); }

/* ── Features ────────────────────────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-soft);
  background: rgba(255, 255, 255, .075);
}
.feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 227, 166, .16), rgba(201, 150, 46, .16));
  border: 1px solid var(--gold-border-soft);
  color: #E9C46A;
  margin-bottom: 18px;
}
.feature-ico svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card p { font-size: 15px; color: var(--page-text-soft); }

/* ── How it works ────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 26px;
  padding: 0 28px;
}
.step { text-align: center; }
.step-n {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--page-text-soft); max-width: 280px; margin: 0 auto; }
.step-sep { align-self: center; opacity: .8; }

/* ── Today's quote ───────────────────────────────────────────────────────── */

.today { position: relative; overflow: hidden; text-align: center; }
.today-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-14.jpg') center 38% / cover no-repeat;
}
.today-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--page-0) 0%, rgba(21, 13, 51, .25) 22%, rgba(21, 13, 51, .3) 78%, var(--page-0) 100%);
}
.today-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 120px 28px; }
.today-note {
  margin: 26px auto 30px;
  max-width: 460px;
  font-size: 15px;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 10px rgba(40, 18, 70, .55);
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 26px;
}
.pricing-grid-single { grid-template-columns: minmax(0, 460px); }
.price-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.price-card-hero {
  border: 1.6px solid transparent;
  background:
    linear-gradient(var(--page-1), var(--page-1)) padding-box,
    var(--gold-grad) border-box;
  box-shadow: 0 24px 50px rgba(58, 31, 102, .4);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--gold-grad);
  color: #3A2168;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(58, 31, 102, .3);
}
.price-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--page-text-soft);
}
.price-n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 54px;
  line-height: 1.15;
  margin: 10px 0 20px;
}
.price-card ul { list-style: none; flex: 1; margin-bottom: 28px; }
.price-card li {
  padding: 9px 0 9px 30px;
  font-size: 15px;
  color: var(--page-text);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M4 10.5l4 4 8-9" fill="none" stroke="%23E9C46A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') 0 12px / 18px no-repeat;
}
.price-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--page-text-soft);
}

/* ── Testimonials ────────────────────────────────────────────────────────── */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 28px;
}
.voice-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px 28px;
}
.voice-card blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--page-text);
  margin: 14px 0 18px;
}
.voice-card figcaption { font-size: 13px; font-weight: 600; color: var(--page-text-soft); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card-bg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: var(--gold-border-soft); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 24px;
  color: #E9C46A;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 24px 22px; font-size: 15px; color: var(--page-text-soft); }

/* ── Final CTA ───────────────────────────────────────────────────────────── */

.final { position: relative; overflow: hidden; text-align: center; }
.final-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-14.jpg') center 70% / cover no-repeat;
  transform: scaleX(-1);
}
.final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(-1);
  background: linear-gradient(180deg, var(--page-0) 0%, rgba(21, 13, 51, .35) 30%, rgba(21, 13, 51, .55) 100%);
}
.final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 130px 28px; }
.final-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -.4px;
  filter: drop-shadow(0 2px 14px rgba(40, 18, 70, .5));
}
.final-sub {
  margin: 18px auto 0;
  max-width: 480px;
  font-size: 17px;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 12px rgba(40, 18, 70, .55);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer { border-top: 1px solid var(--card-border); background: rgba(10, 6, 24, .55); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 14px; }
.footer-tag { font-size: 13px; color: var(--page-text-soft); }
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 14px;
  color: var(--page-text-soft);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: var(--page-text-soft); }

/* ── Reveal on scroll ────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .petal { display: none; }
  .btn, .feature-card { transition: none; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-copy .eyebrow { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .trust-row { justify-content: center; }
  .waitlist-form { margin-left: auto; margin-right: auto; }
  .store-pills { justify-content: center; }
  .phone { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-sep { justify-self: center; transform: rotate(90deg); }
  .voice-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: minmax(0, 440px); }
}

@media (max-width: 600px) {
  .section { padding: 80px 22px; }
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .nav .brand-name { display: none; }
  .nav-right { gap: 8px; }
  .nav .btn-small { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .waitlist-field {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
    border-radius: 28px;
  }
  .waitlist-input { text-align: center; padding: 10px 12px; }
  .waitlist-btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── Legal pages (Impressum / Datenschutz) ───────────────────────────────── */

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 13, 51, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}

.legal-main { max-width: 760px; margin: 0 auto; padding: 56px 28px 100px; }

.legal-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.3px;
  margin: 6px 0 8px;
}
.legal-updated { color: var(--page-text-soft); font-size: 14px; margin-bottom: 8px; }
.legal-lead { color: var(--page-text); font-size: 16px; margin: 18px 0 8px; }

.legal-main h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  color: #fff;
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}
.legal-main h3 { font-weight: 600; font-size: 17px; color: #fff; margin: 24px 0 8px; }
.legal-main p { color: var(--page-text-soft); font-size: 15.5px; line-height: 1.72; margin-bottom: 14px; }
.legal-main ul { margin: 0 0 16px; padding-left: 20px; }
.legal-main li { color: var(--page-text-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 7px; }
.legal-main a { color: #E9C46A; text-decoration: none; border-bottom: 1px solid rgba(233, 196, 106, .4); }
.legal-main a:hover { color: #F2D593; border-bottom-color: #F2D593; }

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 26px;
  margin: 0 0 22px;
}
.legal-card p { margin-bottom: 4px; }
.legal-card .legal-strong { color: #fff; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.legal-strong { color: var(--page-text); font-weight: 600; }

.legal-dl { display: grid; grid-template-columns: minmax(160px, 220px) 1fr; gap: 6px 20px; margin: 0 0 16px; }
.legal-dl dt { color: var(--page-text-soft); font-size: 14px; }
.legal-dl dd { color: var(--page-text); font-size: 15px; margin: 0; }

.legal-note {
  font-size: 13.5px;
  font-style: italic;
  color: var(--page-text-soft);
  border-left: 2px solid var(--gold-border-soft);
  padding: 2px 0 2px 14px;
  margin: 22px 0;
}

/* amber-flagged placeholder for the client to fill in */
.todo {
  background: rgba(233, 196, 106, .16);
  border: 1px dashed var(--gold-border-soft);
  border-radius: 6px;
  padding: 1px 7px;
  color: #F2D593;
  font-size: .92em;
  font-style: normal;
}

.legal-back { display: inline-flex; align-items: center; gap: 7px; color: var(--page-text-soft); text-decoration: none; font-size: 14px; }
.legal-back:hover { color: #fff; }

@media (max-width: 600px) {
  .legal-dl { grid-template-columns: 1fr; gap: 2px; }
  .legal-dl dd { margin-bottom: 10px; }
}
