/* ===========================================================
   Ask & Receive Daily — Landing Page
   Design system
   =========================================================== */

:root {
  /* Surfaces — warm, low-saturation creams */
  --cream:        #FBF6EC;
  --cream-deep:   #F4ECDB;
  --ivory:        #FCF9F2;
  --blush:        #F3E7E2;
  --blush-deep:   #EEDAD6;
  --mist:         #E9E7EA;   /* dusty lilac-blue wash */

  /* Ink */
  --ink:          #2B221D;   /* near-black, warm */
  --ink-soft:     #5C5048;
  --ink-faint:    #8C8078;

  /* Brand accents (shared chroma family) */
  --mauve:        #9D7B8A;   /* italic display accent */
  --mauve-deep:   #835F70;
  --plum:         #8E4E6E;   /* app primary / berry button */
  --plum-deep:    #76405B;
  --gold:         #B5904A;
  --gold-soft:    #C9A961;
  --gold-deep:    #9A7530;
  --blue-wash:    #B9C4CE;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 18px 50px -22px rgba(80, 55, 60, 0.35);
  --shadow-card: 0 24px 60px -28px rgba(80, 55, 60, 0.40);
  --shadow-float: 0 22px 44px -20px rgba(70, 45, 55, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background:
    var(--grain),
    radial-gradient(140% 120% at 50% -10%, #FCF8EF 0%, var(--cream) 48%, #F2E9DA 100%);
  background-attachment: fixed;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Type primitives ---------- */
.display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.display em,
.italic-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--mauve);
}
.display em.grad {
  background: linear-gradient(105deg, #76405B 0%, #8E4E6E 25%, #9D7B8A 48%, #B493B9 70%, #8FA3C4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShift 9s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .display em.grad { animation: none; }
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 36px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold-deep) 100%);
  box-shadow: 0 16px 34px -14px rgba(150, 115, 45, 0.65);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(150, 115, 45, 0.7); }

.btn--plum {
  color: #fff;
  background: linear-gradient(180deg, var(--plum) 0%, var(--plum-deep) 100%);
  box-shadow: 0 16px 34px -16px rgba(118, 64, 91, 0.7);
}
.btn--plum:hover { transform: translateY(-2px); }

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(43,34,29,0.25);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Gradient "Open App" button — matches the God-Given Dream headline */
.btn--app {
  color: #fff;
  background: linear-gradient(105deg, #76405B 0%, #8E4E6E 25%, #9D7B8A 48%, #B493B9 70%, #8FA3C4 100%);
  background-size: 220% 100%;
  box-shadow: 0 12px 26px -12px rgba(118,64,91,0.6);
  animation: gradShift 9s ease-in-out infinite;
}
.btn--app:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(118,64,91,0.7); }
@media (prefers-reduced-motion: reduce) { .btn--app { animation: none; } }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid rgba(157,123,138,0.25);
  border-radius: 999px;
  padding: 11px 20px;
  box-shadow: var(--shadow-soft);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.22);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,236,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(157,123,138,0.12);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand em { font-style: italic; color: var(--mauve); }
.nav__cta { display: flex; align-items: center; gap: 22px; }
.nav__login {
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  color: var(--ink-soft); text-decoration: none; letter-spacing: 0.01em;
  transition: color .2s ease;
}
.nav__login:hover { color: var(--plum); }
.nav__note { font-size: 14px; color: var(--ink-faint); }
.nav__note b { color: var(--plum); }
.btn--sm { padding: 13px 24px; font-size: 15px; }

/* =========================================================
   HERO  (Maven-style)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 46px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% 12%, rgba(185,196,206,0.45) 0%, rgba(185,196,206,0) 55%),
    radial-gradient(110% 80% at 8% 90%, rgba(238,218,214,0.6) 0%, rgba(238,218,214,0) 55%),
    var(--cream);
  z-index: 0;
}

/* ---------- Divine light system ---------- */
.godlight { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; opacity: var(--light-strength, 1); }
.godlight .glow {
  position: absolute; left: 50%; top: -16%; transform: translateX(-50%);
  width: min(1240px, 130%); height: 80%;
  background: radial-gradient(50% 52% at 50% 0%,
    rgba(255,253,247,0.95) 0%,
    rgba(255,250,238,0.55) 26%,
    rgba(255,248,235,0.22) 46%,
    rgba(255,248,235,0) 66%);
  filter: blur(3px);
}
.godlight .rays {
  position: absolute; left: 50%; top: -34%; transform: translateX(-50%);
  width: 175%; height: 150%;
  background: repeating-conic-gradient(from 0deg at 50% 0%,
    rgba(255,251,240,0) 0deg 3deg,
    rgba(255,248,232,0.62) 3.9deg 4.4deg,
    rgba(255,251,240,0) 5.2deg 8.4deg);
  -webkit-mask: radial-gradient(62% 82% at 50% 0%, #000 4%, rgba(0,0,0,0.45) 42%, transparent 72%);
          mask: radial-gradient(62% 82% at 50% 0%, #000 4%, rgba(0,0,0,0.45) 42%, transparent 72%);
  opacity: .55;
  animation: rayShimmer 15s ease-in-out infinite;
}
@keyframes rayShimmer {
  0%, 100% { opacity: .40; transform: translateX(-50%) rotate(-1.4deg); }
  50%      { opacity: .72; transform: translateX(-50%) rotate(1.4deg); }
}
.godlight .halo {
  position: absolute; left: 50%; top: 55%; transform: translate(-50%,-50%);
  width: min(760px, 90%); height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,252,244,0.72) 0%, rgba(255,249,238,0.26) 34%, rgba(255,249,238,0) 64%);
  filter: blur(6px);
  animation: haloPulse 9s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .9; transform: translate(-50%,-50%) scale(1.06); }
}
.godlight .cloud {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,249,238,0.82), rgba(255,249,238,0) 70%);
  filter: blur(28px);
  animation: cloudDrift 26s ease-in-out infinite;
}
.godlight .cloud--a { width: 460px; height: 300px; left: -60px; top: 6%; opacity: .7; }
.godlight .cloud--b { width: 540px; height: 320px; right: -90px; top: -2%; opacity: .6; animation-delay: -13s; }
.godlight .cloud--c { width: 620px; height: 340px; left: 26%; bottom: -14%; opacity: .5; animation-delay: -7s; }
@keyframes cloudDrift {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(28px,-16px,0); }
}
.mote {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.95), rgba(201,169,97,0) 70%);
  opacity: 0;
  animation: moteFloat 9s ease-in-out infinite;
}
@keyframes moteFloat {
  0%   { transform: translateY(26px) scale(.5); opacity: 0; }
  25%  { opacity: .9; }
  75%  { opacity: .5; }
  100% { transform: translateY(-72px) scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .godlight .rays, .godlight .cloud, .godlight .halo, .mote { animation: none; }
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__title {
  display: flex; flex-direction: column; align-items: center;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.14;
  margin: 16px 0 16px;
  max-width: none;
  text-wrap: normal;
}
.hero__line { white-space: nowrap; }
.hero__lede { max-width: 640px; margin: 0 auto 26px; font-size: clamp(16px, 1.2vw, 18px); }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.hero__founding {
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 14px; color: var(--plum-deep); font-weight: 600;
}
.hero__founding .star { color: var(--gold-deep); }
.hero__trust {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-soft);
}
.hero__trust .sep { width: 1px; height: 18px; background: rgba(43,34,29,0.15); }
.hero__trust .ti { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--gold-deep); }

/* ---- Hero video + color-matched glow ---- */
.hero__video { position: relative; width: 100%; max-width: 680px; margin: 2px auto 0; }
.hero__video-glow {
  position: absolute; inset: -9%;
  z-index: 0; border-radius: 48px;
  background:
    linear-gradient(160deg,
      rgba(201,169,97,0.55) 0%,
      rgba(212,160,150,0.45) 45%,
      rgba(238,218,214,0.50) 100%);
  filter: blur(58px);
  animation: heroGlowPulse 9s ease-in-out infinite;
}
.hero__video-glow::after {
  content: ""; position: absolute; inset: 14%;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(255,249,238,0.6), rgba(255,249,238,0) 70%);
  filter: blur(30px);
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.03); }
}
.hero__video-frame {
  position: relative; z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px -8px rgba(201,169,97,0.45), 0 44px 96px -38px rgba(80,55,60,0.5);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero__video-poster { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__video-veil { position: absolute; inset: 0; background: radial-gradient(62% 62% at 50% 44%, rgba(43,34,29,0.12), rgba(43,34,29,0.42)); }
.hero__video-badge {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #fff; font-family: var(--sans); font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.04em; padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(150,115,45,0.7);
}
.hero__video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2;
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 16px 40px -10px rgba(150,115,45,0.7), 0 0 0 10px rgba(255,255,255,0.22);
  transition: transform .25s ease;
}
.hero__video-play:hover { transform: translate(-50%,-50%) scale(1.07); }
.hero__video-play svg { margin-left: 4px; }
@media (prefers-reduced-motion: reduce) { .hero__video-glow { animation: none; } }
@media (max-width: 620px) {
  .hero__br { display: none; }
  .hero__title { display: block; }
  .hero__line { white-space: normal; }
  .hero__video-play { width: 68px; height: 68px; }
  .hero__video-badge { font-size: 11px; padding: 6px 11px; top: 12px; right: 12px; }
  .hero__actions { flex-direction: column; align-self: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* ---- Phone stage ---- */
.stage {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start;
  min-height: 620px;
  margin-top: 52px;
}
.stage__halo {
  position: absolute;
  top: 90px; left: 50%; transform: translateX(-50%);
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,231,226,0.9) 0%, rgba(233,231,234,0.5) 45%, rgba(233,231,234,0) 70%);
  filter: blur(6px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 2;
  width: 290px;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #2c2622, #14110f);
  box-shadow:
    0 50px 90px -40px rgba(60,40,45,0.7),
    0 0 0 2px rgba(255,255,255,0.04) inset;
}
.phone::before {
  content: "";
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 999px;
  background: #14110f; z-index: 3;
}
.phone img {
  width: 100%;
  border-radius: 36px;
  display: block;
}
.phone--float { animation: floaty 7s ease-in-out infinite; }

/* Hero proof card (sits cleanly just below the phone) */
.hero__proof {
  position: absolute; bottom: -52px; left: 50%; transform: translateX(-50%);
  z-index: 7;
  display: flex; align-items: center; gap: 13px;
  width: max-content; max-width: 312px;
  margin: 0; padding: 13px 18px;
  background: rgba(255,251,245,0.96);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(157,123,138,0.18);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
}
.hero__proof-av {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--plum), var(--plum-deep));
  color: #fff; font-family: var(--sans); font-weight: 800; font-size: 15px;
}
.hero__proof figcaption { margin: 0; }
.hero__proof-q { margin: 0; font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.4; color: var(--ink); }
.hero__proof-n { margin: 4px 0 0; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-deep); }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---- Floating annotation cards ---- */
.note {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  max-width: 250px;
  border: 1px solid rgba(157,123,138,0.10);
  animation: noteFloat 8s ease-in-out infinite;
}
.note__label {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 5px;
  display: flex; align-items: center; gap: 7px;
}
.note__label .ndot { width: 7px; height: 7px; border-radius: 50%; background: var(--plum); }
.note__text { font-size: 14px; line-height: 1.45; color: var(--ink); margin: 0; }
.note__text em { font-style: italic; color: var(--mauve-deep); }

.note--tl { top: 56px; left: -28px; transform: rotate(-4deg); animation-delay: .4s; }
.note--tr { top: 24px; right: -36px; transform: rotate(3deg); }
.note--bl { bottom: 96px; left: -44px; transform: rotate(3deg); animation-delay: 1.2s; }
.note--br { bottom: 44px; right: -30px; transform: rotate(-3deg); background: linear-gradient(160deg,#2c2622,#1a1613); animation-delay: .8s; }
.note--br .note__label { color: var(--gold-soft); }
.note--br .note__text { color: #f3ece4; }

@keyframes noteFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* =========================================================
   SCRIPTURE BAND
   ========================================================= */
.scripture {
  background:
    var(--grain),
    radial-gradient(120% 100% at 50% 0%, #F7EEE0 0%, rgba(247,238,224,0) 62%),
    linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding: 84px 0;
  text-align: center;
}
.scripture blockquote {
  margin: 0 auto;
  max-width: 880px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--mauve-deep);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.32;
}
.scripture blockquote em { color: var(--ink); font-style: italic; }
.scripture cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--gold-deep);
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem { background: var(--grain), linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); padding: 104px 0; }
.problem__head {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.problem h2 { font-size: clamp(32px, 4.4vw, 56px); margin: 0; }
.problem__body {
  max-width: 720px; margin: 36px auto 0;
  text-align: center;
}
.problem__body p { margin: 0 0 22px; font-size: 19px; color: var(--ink-soft); }
.problem__body strong { color: var(--ink); font-weight: 800; }
.problem__body em { color: var(--mauve-deep); font-style: italic; }

.pains {
  max-width: 720px; margin: 44px auto 0;
  display: flex; flex-direction: column; gap: 18px;
}
.pain {
  background: linear-gradient(100deg, var(--blush) 0%, var(--cream) 100%);
  border-left: 3px solid var(--mauve);
  border-radius: 0 14px 14px 0;
  padding: 22px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--mauve-deep);
}

/* =========================================================
   APP SHOWCASE  (One App / 15 min)
   ========================================================= */
.showcase {
  padding: 110px 0;
  background:
    var(--grain),
    radial-gradient(120% 70% at 50% 0%, var(--blush) 0%, rgba(243,231,226,0) 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  overflow: hidden;
}
.showcase .wrap { position: relative; z-index: 2; }
.showcase__cta { margin-top: 50px; text-align: center; }
.showcase__cta .hero__founding,
.showcase__cta .hero__trust { justify-content: center; }
.center-head { max-width: 820px; margin: 0 auto; text-align: center; }
.center-head h2 { font-size: clamp(32px, 4.6vw, 58px); margin: 16px 0 0; }
.center-head .lede { margin: 22px auto 0; max-width: 640px; }

.showcase__stage {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.showcase__col { display: flex; flex-direction: column; gap: 28px; }
.feat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(157,123,138,0.08);
}
.feat-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
  color: var(--plum);
  margin-bottom: 16px;
}
.feat-card h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; margin: 0 0 6px; }
.feat-card p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.feat-card .bars { display: flex; gap: 5px; align-items: flex-end; height: 22px; margin-top: 14px; }
.feat-card .bars span { flex: 1; background: var(--gold-soft); border-radius: 2px; opacity: .8; }
.feat-card .prog { display: flex; gap: 6px; margin-top: 16px; }
.feat-card .prog span { height: 6px; flex: 1; border-radius: 3px; background: var(--blush-deep); }
.feat-card .prog span.on { background: var(--plum); }

.showcase__phone { display: flex; justify-content: center; }
.showcase__phone .phone { width: 300px; }

/* ---------- Coverflow process showcase ---------- */
.flow { margin-top: 60px; }
.flow__stage {
  position: relative;
  height: clamp(470px, 60vw, 580px);
  perspective: 1900px;
  transform-style: preserve-3d;
}
.cphone {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(196px, 24vw, 252px);
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(160deg, #2c2622, #14110f);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform .72s cubic-bezier(.36,.06,.2,1), opacity .55s ease, box-shadow .55s ease;
  will-change: transform, opacity;
}
.cphone::before {
  content: "";
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 21px; border-radius: 999px;
  background: #14110f; z-index: 3;
}
.cphone img { width: 100%; border-radius: 32px; display: block; }
.cphone.is-active { box-shadow: 0 54px 96px -38px rgba(60,40,45,0.72); cursor: pointer; }

.flow__panel {
  max-width: 660px;
  margin: 46px auto 0;
  text-align: center;
}
.flow__count {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.flow__copy { transition: opacity .34s ease; }
.flow__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  margin: 14px 0 12px;
  color: var(--ink);
}
.flow__desc {
  margin: 0 auto;
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.6;
  min-height: 84px;
  text-wrap: pretty;
}
.flow__controls {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.flow__arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(43,34,29,0.2);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  box-shadow: var(--shadow-soft);
}
.flow__arrow:hover { transform: translateY(-2px); border-color: var(--plum); color: var(--plum); }
.flow__arrow:active { transform: scale(0.94); }
.flow__dots { display: flex; align-items: center; gap: 10px; }
.flow__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; padding: 0;
  background: var(--blush-deep);
  cursor: pointer;
  transition: all .35s ease;
}
.flow__dot.is-active { background: var(--plum); width: 28px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  .cphone { transition: opacity .3s ease; }
}

/* =========================================================
   FEATURE GRID (6)
   ========================================================= */
.features { padding: 104px 0; background: var(--grain), radial-gradient(120% 80% at 82% 0%, #F7EAE6 0%, rgba(247,234,230,0) 55%), linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); }
.fgrid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}
.fitem { text-align: center; }
.fitem__icon {
  width: 64px; height: 64px; border-radius: 18px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
  color: var(--plum);
}
.fitem h3 { font-family: var(--serif); font-weight: 700; font-size: 25px; margin: 0 0 12px; }
.fitem h3 em { font-style: italic; color: var(--mauve); }
.fitem p { margin: 0 auto; max-width: 320px; color: var(--ink-soft); font-size: 16px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  padding: 110px 0;
  background: var(--grain), radial-gradient(120% 90% at 12% 0%, #F6ECDC 0%, rgba(246,236,220,0) 55%), linear-gradient(180deg, var(--cream-deep) 0%, #F2E9D8 100%);
}
.how h2 { font-size: clamp(36px, 5vw, 64px); margin: 18px 0 0; }
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 64px;
}
.step { display: flex; gap: 24px; align-items: flex-start; }
.step__num {
  flex: none;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 12px 26px -12px rgba(150,115,45,0.7);
}
.step h3 { font-family: var(--serif); font-weight: 700; font-size: 25px; margin: 6px 0 10px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 16.5px; }

/* =========================================================
   GALLERY (real screenshots)
   ========================================================= */
.gallery {
  padding: 110px 0;
  background:
    radial-gradient(120% 80% at 50% 120%, var(--blush) 0%, rgba(243,231,226,0) 55%),
    var(--ivory);
  overflow: hidden;
}
.gallery__rail {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 36px;
  flex-wrap: wrap;
}
.gphone {
  width: 256px;
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(160deg, #2c2622, #14110f);
  box-shadow: var(--shadow-card);
  transition: transform .4s ease;
}
.gphone img { width: 100%; border-radius: 31px; }
.gphone--lift { margin-bottom: 38px; transform: scale(1.04); }
.gphone:hover { transform: translateY(-10px); }
.gcap { text-align: center; margin-top: 18px; }
.gcap .k { font-family: var(--serif); font-size: 18px; font-weight: 700; }
.gcap .s { font-size: 13.5px; color: var(--ink-faint); }

/* =========================================================
   OFFER
   ========================================================= */
.offer { padding: 110px 0 120px; background: var(--grain), radial-gradient(120% 80% at 50% 0%, var(--blush) 0%, rgba(243,231,226,0) 55%), linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); }

/* Two-column offer layout */
.offer__layout {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 30px;
  align-items: start;
}
.offer__components { display: flex; flex-direction: column; gap: 16px; }

.ocard {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: start;
  background: #fff;
  border: 1px solid rgba(157,123,138,0.12);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}
.ocard__icon {
  flex: none; width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush); color: var(--plum);
}
.ocard__label { margin: 0 0 5px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.ocard__title { font-family: var(--serif); font-weight: 700; font-size: 22px; margin: 0 0 9px; color: var(--ink); }
.ocard__desc { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }
.ocard__value { text-align: right; }
.ocard__vlabel { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.ocard__vprice { display: block; margin-top: 2px; font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--ink); }
.ocard--bonus {
  background: linear-gradient(120deg, var(--blush) 0%, #fff 100%);
  border-color: rgba(181,144,74,0.32);
}
.ocard--bonus .ocard__icon { background: linear-gradient(160deg, var(--gold-soft), var(--gold-deep)); color: #fff; }

/* Sticky summary card */
.offer__summary { position: sticky; top: 96px; }
.osum {
  background: var(--ivory);
  border: 1px solid rgba(157,123,138,0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 26px;
}
.osum__pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blush); color: var(--plum-deep);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em;
  padding: 9px 16px; border-radius: 999px; margin-bottom: 22px;
}
.osum__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(201,169,97,0.22); }
.osum__lines { display: flex; flex-direction: column; }
.osum__line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(157,123,138,0.14);
  font-size: 15px; color: var(--ink-soft);
}
.osum__line span:last-child { font-weight: 700; color: var(--ink); }
.osum__total { padding: 16px 0 4px; font-size: 15px; color: var(--ink-soft); }
.osum__total s { color: var(--ink-faint); }
.osum__price { text-align: center; margin: 18px 0 22px; }
.osum__plabel { margin: 0 0 4px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.osum__big { font-family: var(--serif); font-weight: 700; font-size: 62px; line-height: 1; color: var(--ink); margin: 0; }
.osum__sub { margin: 8px 0 0; font-size: 14px; color: var(--ink-soft); }
.osum__cta { display: flex; }
.osum__cta .btn { width: 100%; justify-content: center; }
.osum__guarantee {
  margin: 18px 0 0; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--ink-faint);
}
.osum__guarantee svg { color: var(--gold-deep); }
@media (max-width: 900px) {
  .offer__layout { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .offer__summary { position: static; order: -1; }
}
@media (max-width: 560px) {
  .ocard { grid-template-columns: auto 1fr; row-gap: 6px; padding: 22px 20px; }
  .ocard__value { grid-column: 2; text-align: left; }
  .ocard__vprice { display: inline; }
  .ocard__vlabel { display: inline; margin-right: 6px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--grain), linear-gradient(180deg, #241d22 0%, var(--ink) 58%, #17120f 100%);
  color: #d9cfc6;
  padding: 64px 0 48px;
  text-align: center;
}
.footer .brand { color: #fff; font-size: 26px; }
.footer .brand em { color: var(--gold-soft); }
.footer p { margin: 18px auto 0; max-width: 520px; color: #b3a79d; font-size: 15px; }
.footer .fnote { margin-top: 34px; font-size: 13px; color: #8a7d73; }
.footer .flogin { margin-top: 20px; font-size: 14.5px; color: #b3a79d; }
.footer .flogin a { color: var(--gold-soft); font-weight: 700; text-decoration: none; }
.footer .flogin a:hover { text-decoration: underline; }
.footer .fnote a { color: #c2b4a6; text-decoration: underline; text-underline-offset: 2px; }
.footer .fnote a:hover { color: var(--gold-soft); }
.footer .fdisclaimer {
  max-width: 760px; margin: 22px auto 0;
  font-size: 11.5px; line-height: 1.6; color: #6f655c;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .hero { padding: 48px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__copy { max-width: 620px; }
  .stage { min-height: 560px; }
  .hero__proof { position: static; transform: none; margin: 26px auto 0; }
  .showcase__stage { grid-template-columns: 1fr; gap: 28px; }
  .showcase__col { flex-direction: row; flex-wrap: wrap; }
  .showcase__col .feat-card { flex: 1 1 240px; }
  .showcase__phone { order: -1; }
  .fgrid { grid-template-columns: repeat(2, 1fr); gap: 48px 36px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap, .nav__inner, .hero__grid { padding-left: 22px; padding-right: 22px; }
  .nav__note { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .note--tl, .note--bl { left: -10px; }
  .note--tr, .note--br { right: -10px; }
  .note { max-width: 190px; padding: 11px 13px; }
  .fgrid { grid-template-columns: 1fr; }
  .offer__body { padding: 30px 24px 34px; }
  .offer__price .big { font-size: 52px; }
  .flow__desc { min-height: 110px; }
  .flow__arrow { width: 46px; height: 46px; }
  .flow__dots { gap: 7px; }
  .flow__dot { width: 7px; height: 7px; }
  .flow__dot.is-active { width: 22px; }
  .gcard { padding: 30px 24px; }
  .faq summary { font-size: 18px; padding: 20px 22px; }
  .faq .a { padding: 0 22px 22px; }
}

/* =========================================================
   FAINT CLOUDS (hero)
   ========================================================= */
/* ===== Warm sun-lit cloud bank (hero) ===== */
.cloudbank {
  position: absolute; left: -4%; right: -4%; bottom: -5%;
  height: 52%;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(135px 90px at 11% 94%, rgba(255,252,244,0.98), rgba(255,252,244,0) 70%),
    radial-gradient(165px 104px at 25% 99%, rgba(255,249,238,0.96), rgba(255,249,238,0) 72%),
    radial-gradient(120px 84px at 37% 92%, rgba(255,252,244,0.96), rgba(255,252,244,0) 70%),
    radial-gradient(185px 112px at 51% 100%, rgba(255,248,235,0.96), rgba(255,248,235,0) 72%),
    radial-gradient(125px 86px at 64% 92%, rgba(255,252,244,0.96), rgba(255,252,244,0) 70%),
    radial-gradient(165px 104px at 77% 99%, rgba(255,249,238,0.96), rgba(255,249,238,0) 72%),
    radial-gradient(135px 90px at 91% 94%, rgba(255,252,244,0.98), rgba(255,252,244,0) 70%),
    radial-gradient(70% 46% at 50% 116%, rgba(233,200,138,0.42), rgba(233,200,138,0) 70%),
    linear-gradient(to top, rgba(251,243,231,0.95) 0%, rgba(251,243,231,0) 60%);
  filter: blur(5px);
  animation: cloudPan 52s ease-in-out infinite;
}
.cloudbank::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90px 60px at 18% 70%, rgba(255,250,240,0.72), rgba(255,250,240,0) 72%),
    radial-gradient(110px 70px at 44% 74%, rgba(255,248,236,0.66), rgba(255,248,236,0) 72%),
    radial-gradient(95px 64px at 70% 70%, rgba(255,250,240,0.68), rgba(255,250,240,0) 72%),
    radial-gradient(85px 58px at 88% 76%, rgba(255,249,238,0.62), rgba(255,249,238,0) 72%);
  filter: blur(7px);
}
.cloudbank::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(150px 72px at 26% 108%, rgba(206,182,166,0.5), rgba(206,182,166,0) 66%),
    radial-gradient(170px 80px at 52% 112%, rgba(199,174,158,0.5), rgba(199,174,158,0) 66%),
    radial-gradient(150px 72px at 78% 108%, rgba(206,182,166,0.5), rgba(206,182,166,0) 66%);
  filter: blur(9px);
  mix-blend-mode: multiply;
  opacity: .68;
}
.cloud-wisp {
  position: absolute; pointer-events: none; z-index: 1;
  background:
    radial-gradient(circle at 30% 62%, rgba(255,251,242,0.85) 0 22%, rgba(255,251,242,0) 60%),
    radial-gradient(circle at 52% 46%, rgba(255,250,240,0.8) 0 26%, rgba(255,250,240,0) 62%),
    radial-gradient(circle at 72% 60%, rgba(255,251,242,0.82) 0 22%, rgba(255,251,242,0) 60%);
  filter: blur(10px);
  animation: cloudPan 46s ease-in-out infinite;
}
@keyframes cloudPan {
  0%, 100% { transform: translateX(-3%); }
  50%      { transform: translateX(3%); }
}
@media (prefers-reduced-motion: reduce) { .cloudbank, .cloud-wisp { animation: none; } }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee { padding: 110px 0 96px; background: var(--grain), radial-gradient(110% 80% at 50% 0%, #F2E5E1 0%, rgba(242,229,225,0) 55%), linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%); text-align: center; }
.guarantee__icon {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold-deep));
  color: #fff; box-shadow: 0 22px 44px -16px rgba(150,115,45,0.6);
}
.guarantee h2 { font-size: clamp(30px, 4vw, 48px); margin: 0; }
.gcard {
  max-width: 780px; margin: 40px auto 0;
  background: var(--ivory); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); border: 1px solid rgba(157,123,138,0.1);
  padding: 48px 56px; text-align: left;
}
.gcard p { margin: 0 0 22px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.gcard p:last-child { margin-bottom: 0; }
.gcard p strong { color: var(--ink); font-weight: 800; }
.gcard .lead { color: var(--ink); font-size: 19px; }
.gcard .em { font-style: italic; color: var(--mauve-deep); }
.glist { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.glist li { display: flex; gap: 16px; align-items: flex-start; color: var(--ink-soft); font-size: 17px; line-height: 1.5; }
.glist .gi {
  flex: none; width: 30px; height: 30px; border-radius: 50%; margin-top: 1px;
  background: var(--blush); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.guarantee__cta { margin-top: 42px; }

/* =========================================================
   FOUNDER
   ========================================================= */
.founder { padding: 104px 0; background: var(--grain), radial-gradient(95% 72% at 50% 16%, #F6EAE6 0%, rgba(246,234,230,0) 58%), linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); text-align: center; }
.founder__rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 24px; }
.founder__rule span { height: 1px; width: 64px; background: rgba(181,144,74,0.5); }
.founder__rule .o { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--gold); }
.founder .eyebrow { margin-bottom: 30px; }
.founder__photo {
  display: block; margin: 0 auto 30px; width: 156px; height: 156px; border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-soft), 0 18px 40px -18px rgba(150,115,45,0.55);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.founder h2 { font-size: clamp(32px, 4.6vw, 56px); margin: 0 0 30px; }
.founder__body { max-width: 760px; margin: 0 auto; color: var(--ink-soft); font-size: 18.5px; line-height: 1.78; text-wrap: pretty; }
.founder__sig { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 25px; color: var(--mauve); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 110px 0 120px; background: var(--grain), radial-gradient(120% 70% at 50% 100%, #F1E4E0 0%, rgba(241,228,224,0) 55%), linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%); }
.faq__list { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--ivory); border-radius: var(--radius-md);
  border: 1px solid rgba(157,123,138,0.12); box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush); color: var(--plum);
  transition: transform .3s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .a { padding: 2px 28px 26px; color: var(--ink-soft); font-size: 17px; line-height: 1.62; }
.faq .a em { color: var(--mauve-deep); font-style: italic; }

/* ===== Hero subheadline ===== */
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.4;
  color: var(--mauve-deep);
  margin: 0 0 22px;
  max-width: 540px;
}

/* ===== Final CTA ===== */
.finalcta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0 130px;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--blush) 0%, rgba(243,231,226,0) 58%),
    var(--cream);
}
.finalcta .wrap { position: relative; z-index: 2; }
.finalcta h2 { font-size: clamp(34px, 5vw, 62px); margin: 16px auto 0; max-width: 880px; }
.finalcta .lede { max-width: 600px; margin: 24px auto 0; }
.finalcta__btn { margin-top: 38px; }
.ps {
  max-width: 600px; margin: 40px auto 0;
  font-size: 16px; color: var(--ink-soft); line-height: 1.6;
}
.ps strong { color: var(--ink); }
.ps a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   PAIN GRAVEYARD
   ========================================================= */
.graveyard {
  padding: 104px 0;
  background: var(--grain), radial-gradient(120% 80% at 50% 0%, #F1E4E0 0%, rgba(241,228,224,0) 55%), linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.grave__list { max-width: 720px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 12px; }
.grave__row {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 16px;
  background: #fff; border: 1px solid rgba(157,123,138,0.12); border-left: 3px solid var(--mauve);
  border-radius: 12px; padding: 18px 22px; box-shadow: var(--shadow-soft);
}
.grave__icon { color: var(--mauve); display: flex; opacity: .8; }
.grave__row--more .grave__icon { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold-deep); }
.grave__dream { font-family: var(--serif); font-size: 19px; color: var(--ink-faint); text-decoration: line-through; text-decoration-color: rgba(157,123,138,0.5); }
.grave__status { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mauve-deep); background: var(--blush); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.grave__time { font-size: 13.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; min-width: 72px; text-align: right; }
.grave__row--more { border-left-color: var(--gold); background: linear-gradient(100deg, var(--blush) 0%, #fff 100%); }
.grave__row--more .grave__dream { text-decoration: none; font-style: italic; color: var(--mauve-deep); }
@media (max-width: 620px) {
  .grave__row { grid-template-columns: auto 1fr; row-gap: 8px; }
  .grave__status, .grave__time { grid-column: 2; text-align: left; min-width: 0; }
}

/* =========================================================
   WHY NOW
   ========================================================= */
.whynow {
  padding: 110px 0;
  background: var(--grain), radial-gradient(120% 80% at 50% 100%, #F2E5E1 0%, rgba(242,229,225,0) 55%), linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.whynow .center-head .lede { max-width: 760px; }
.whynow__cols { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.waycard { border-radius: var(--radius-lg); padding: 38px 36px; }
.waycard__tag { margin: 0 0 6px; font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.waycard__title { font-family: var(--serif); font-weight: 700; font-size: 28px; margin: 0 0 24px; }
.waylist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.waylist li { font-size: 16px; line-height: 1.55; padding-left: 30px; position: relative; }
.waylist li::before { position: absolute; left: 0; top: 1px; font-size: 17px; }
.waycard--old {
  background: linear-gradient(180deg, #ece9ee 0%, #e4e0e8 100%);
  border: 1px solid rgba(90,80,100,0.14);
}
.waycard--old .waycard__tag { color: #8a8194; }
.waycard--old .waycard__title { color: #5d5668; }
.waycard--old .waylist li { color: #6b6475; }
.waycard--old .waylist li strong { color: #4f4960; }
.waycard--old .waylist li::before { content: "\2715"; color: #a99fb3; }
.waycard--new {
  background: linear-gradient(180deg, #fff 0%, var(--blush) 100%);
  border: 1px solid rgba(181,144,74,0.28);
  box-shadow: var(--shadow-card);
}
.waycard--new .waycard__tag { color: var(--gold-deep); }
.waycard--new .waycard__title { color: var(--plum-deep); }
.waycard--new .waylist li { color: var(--ink-soft); }
.waycard--new .waylist li strong { color: var(--ink); }
.waycard--new .waylist li::before { content: "\2713"; color: var(--gold-deep); font-weight: 700; }
@media (max-width: 760px) { .whynow__cols { grid-template-columns: 1fr; } }

/* =========================================================
   MECHANISM
   ========================================================= */
.mechanism {
  padding: 110px 0;
  background: var(--grain), radial-gradient(120% 80% at 18% 0%, #F6ECDC 0%, rgba(246,236,220,0) 55%), linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.mech__steps { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mech__step {
  background: var(--ivory); border-radius: var(--radius-lg); padding: 36px 32px 34px;
  border: 1px solid rgba(157,123,138,0.1); box-shadow: var(--shadow-card); position: relative;
}
.mech__num {
  font-family: var(--serif); font-weight: 700; font-size: 46px; line-height: 1;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  display: block; margin-bottom: 18px;
}
.mech__body h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin: 0 0 12px; color: var(--ink); display: flex; flex-direction: column; gap: 4px; }
.mech__sub { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.mech__body p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 860px) { .mech__steps { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* =========================================================
   NICHE GRID
   ========================================================= */
.niche {
  padding: 104px 0;
  background: var(--grain), radial-gradient(120% 80% at 82% 0%, #F7EAE6 0%, rgba(247,234,230,0) 55%), linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.niche__grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.niche__card {
  background: #fff; border-radius: var(--radius-md); padding: 30px 28px;
  border: 1px solid rgba(157,123,138,0.1); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.niche__icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--blush); color: var(--plum); flex: none;
}
.niche__card p { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); }
.niche__card p strong { color: var(--ink); font-weight: 700; }
.niche__card:nth-child(4), .niche__card:nth-child(5) { grid-column: span 1; }
@media (max-width: 860px) { .niche__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .niche__grid { grid-template-columns: 1fr; } }

/* =========================================================
   CROSSROADS (final CTA)
   ========================================================= */
.cross__paths { margin: 44px auto 0; max-width: 880px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; text-align: left; }
.cross__path { border-radius: var(--radius-lg); padding: 30px 30px; }
.cross__label { margin: 0 0 12px; font-family: var(--serif); font-weight: 700; font-size: 22px; }
.cross__text { margin: 0; font-size: 16px; line-height: 1.6; }
.cross__path--a {
  background: linear-gradient(180deg, #ece9ee 0%, #e5e1e9 100%);
  border: 1px solid rgba(90,80,100,0.14);
}
.cross__path--a .cross__label { color: #6b6475; }
.cross__path--a .cross__text { color: #756e80; }
.cross__path--b {
  background: linear-gradient(180deg, #fff 0%, var(--blush) 100%);
  border: 1px solid rgba(181,144,74,0.3); box-shadow: var(--shadow-card);
}
.cross__path--b .cross__label { color: var(--gold-deep); }
.cross__path--b .cross__text { color: var(--ink-soft); }
.cross__close { margin: 32px 0 0; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--mauve-deep); }
.finalcta__btn { margin-top: 22px; }
@media (max-width: 760px) { .cross__paths { grid-template-columns: 1fr; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   KIERSTON'S STORY (long-form)
   ========================================================= */
.story {
  padding: 118px 0;
  background:
    var(--grain),
    radial-gradient(110% 80% at 86% 0%, #F6EAE6 0%, rgba(246,234,230,0) 55%),
    linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.story__wrap, .story__grid { max-width: 1120px; }
.story__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: start;
}
.story .eyebrow { margin-bottom: 22px; }
.story__title {
  font-size: clamp(29px, 3.5vw, 48px);
  line-height: 1.12;
  margin: 0 0 30px;
}
.story__body { max-width: 560px; }
.story__body p { margin: 0 0 20px; font-size: 17.5px; line-height: 1.72; color: var(--ink-soft); text-wrap: pretty; }
.story__body strong { color: var(--ink); font-weight: 700; }
.story__body em { font-style: italic; color: var(--mauve-deep); }
.story__sig { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--mauve); margin-top: 12px; }

/* Cathedral-arch portrait */
.story__figure { position: relative; display: flex; justify-content: center; margin-top: 46px; }
.story__glow {
  position: absolute; z-index: 0;
  top: 4%; left: 50%; transform: translateX(-50%);
  width: 104%; height: 74%;
  background: radial-gradient(circle, rgba(201,169,97,0.32) 0%, rgba(238,218,214,0.30) 38%, rgba(238,218,214,0) 68%);
  filter: blur(18px);
  animation: storyGlow 9s ease-in-out infinite;
}
@keyframes storyGlow {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}
.story__arch {
  position: relative; z-index: 1;
  width: 100%; max-width: 408px;
  aspect-ratio: 5 / 6.3;
  border-radius: 50% 50% 16px 16px / 38% 38% 16px 16px;
  overflow: hidden;
  box-shadow: 0 34px 66px -30px rgba(80,55,60,0.52);
}
.story__arch::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1.5px rgba(181,144,74,0.6);
}
.story__arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; }
.story__spark {
  position: absolute; z-index: 2; top: 2%; right: 8%;
  color: var(--gold-soft); font-size: 24px;
  text-shadow: 0 0 14px rgba(201,169,97,0.7);
  animation: storyTwinkle 4s ease-in-out infinite;
}
@keyframes storyTwinkle {
  0%, 100% { opacity: .35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .story__glow, .story__spark { animation: none; }
}
@media (max-width: 940px) {
  .story__grid { grid-template-columns: 1fr; gap: 12px; max-width: 560px; }
  .story__figure { order: -1; margin-top: 0; margin-bottom: 14px; }
  .story__arch { max-width: 320px; }
  .story__body { max-width: none; }
}

/* =========================================================
   PROBLEM — shadowed mood
   ========================================================= */
.problem--dark {
  background:
    linear-gradient(180deg, rgba(18,14,22,0.55) 0%, rgba(18,14,22,0.28) 45%, rgba(18,14,22,0.62) 100%),
    url("assets/enemy-bg.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  position: relative; overflow: hidden;
  display: flex; align-items: center; min-height: 660px;
}
.problem--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(62% 72% at 50% 50%, rgba(14,11,18,0.62) 0%, rgba(14,11,18,0) 72%);
}
.problem--dark .wrap { position: relative; z-index: 1; width: 100%; }

/* Animated light overlay on the enemy-section image */
.problem__light { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.pspark {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,249,228,0.98), rgba(255,226,156,0.5) 45%, rgba(255,226,156,0) 72%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: psparkFloat 7s ease-in-out infinite;
}
.pspark.s1 { left: 67%; bottom: 24%; animation-delay: 0s; }
.pspark.s2 { left: 79%; bottom: 35%; width: 6px; height: 6px; animation-delay: 1.4s; }
.pspark.s3 { left: 88%; bottom: 21%; width: 10px; height: 10px; animation-delay: 2.6s; }
.pspark.s4 { left: 72%; bottom: 42%; width: 5px; height: 5px; animation-delay: 3.6s; }
.pspark.s5 { left: 84%; bottom: 50%; animation-delay: 4.7s; }
.pspark.s6 { left: 70%; bottom: 14%; width: 6px; height: 6px; animation-delay: 5.6s; }
@keyframes psparkFloat {
  0% { transform: translateY(22px) scale(.4); opacity: 0; }
  22% { opacity: 1; }
  70% { opacity: .65; }
  100% { transform: translateY(-64px) scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pspark { animation: none; opacity: .35; } }
.problem--dark h2.display { color: #f4ece6; }
.problem--dark h2.display em { color: #c7a6ba; }
.problem--dark .problem__body p { color: rgba(240,232,226,0.82); }
.problem--dark .problem__body strong { color: #fff; }
.problem--dark .problem__body em { color: #c7a6ba; }
.problem--dark .pain {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--mauve);
  color: #d9c7d2;
}

/* =========================================================
   2-MINUTE VIDEO LOOK
   ========================================================= */
.video { padding: 110px 0; background: var(--grain), radial-gradient(120% 80% at 50% 100%, #F2E5E1 0%, rgba(242,229,225,0) 55%), linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.video__sub { max-width: 620px; margin: 22px auto 0; color: var(--ink-soft); font-size: 17.5px; line-height: 1.6; }
.video__frame {
  position: relative; max-width: 940px; margin: 52px auto 0;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 44px 96px -38px rgba(80,55,60,0.55); border: 1px solid rgba(157,123,138,0.12);
}
.video__poster { width: 100%; height: 100%; object-fit: cover; }
.video__veil { position: absolute; inset: 0; background: radial-gradient(62% 62% at 50% 42%, rgba(43,34,29,0.16), rgba(43,34,29,0.46)); }
.video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 16px 40px -10px rgba(150,115,45,0.7), 0 0 0 10px rgba(255,255,255,0.18);
  transition: transform .25s ease;
}
.video__play:hover { transform: translate(-50%,-50%) scale(1.07); }
.video__play svg { margin-left: 3px; }
.video__bubble {
  position: absolute; left: 22px; bottom: 22px; width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; border: 3px solid rgba(255,255,255,0.85); box-shadow: var(--shadow-card);
}
.video__bubble img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.video__dur {
  position: absolute; top: 18px; right: 18px; background: rgba(20,17,15,0.6); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
  padding: 6px 12px; border-radius: 999px;
}
.video__tag {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(255,255,255,0.94); font-family: var(--sans); font-weight: 600; font-size: 14px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55); white-space: nowrap;
}
.video__cta { margin-top: 42px; text-align: center; }
.video__seats { margin-top: 18px; font-size: 14px; color: var(--ink-soft); letter-spacing: 0.02em; }
.video__seats strong { color: var(--plum); font-weight: 800; }
.lede__hook { display: block; color: var(--mauve-deep); font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.06em; margin-bottom: 10px; }
@media (max-width: 620px) {
  .video__play { width: 70px; height: 70px; }
  .video__bubble { width: 60px; height: 60px; left: 14px; bottom: 14px; }
  .video__tag { display: none; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi { padding: 104px 0; background: var(--grain), radial-gradient(120% 70% at 50% 0%, #F6EAE6 0%, rgba(246,234,230,0) 55%), linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.testi__feature {
  max-width: 800px; margin: 50px auto 0; text-align: center;
  background: var(--cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); border: 1px solid rgba(157,123,138,0.1);
  padding: 18px 56px 44px;
}
.testi__qmark { font-family: var(--serif); font-size: 96px; line-height: 1; color: var(--gold-soft); height: 56px; }
.testi__feature blockquote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.5vw, 31px); line-height: 1.42; color: var(--ink);
  text-wrap: pretty;
}
.testi__feature blockquote em { color: var(--mauve-deep); font-style: italic; }
.testi__feature figcaption { margin-top: 24px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); font-size: 13px; }
.testi__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  margin: 0; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft); border: 1px solid rgba(157,123,138,0.1);
  padding: 26px 26px 28px;
}
.tcard__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tav { flex: none; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 800; font-size: 14px; color: #fff; letter-spacing: 0.02em; }
.tname { font-weight: 700; color: var(--ink); font-size: 15.5px; line-height: 1.2; }
.tcard blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.42; color: var(--ink); }

/* =========================================================
   FOUNDING PRICE URGENCY
   ========================================================= */
.founding {
  max-width: 660px; margin: 40px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: linear-gradient(180deg, #fff, var(--blush));
  border: 1px solid rgba(142,78,110,0.2);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  color: var(--plum-deep);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.founding__head { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 700; line-height: 1.4; }
.founding__dots { display: grid; grid-template-columns: repeat(40, 1fr); gap: 4px; width: 100%; }
.fdot { aspect-ratio: 1; border-radius: 50%; }
.fdot.is-claimed { background: var(--plum); }
.fdot.is-open { background: rgba(142,78,110,0.16); }
.founding__sub { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; }
.founding__sub strong { color: var(--plum); font-weight: 800; }
.founding strong { font-weight: 800; }
.founding__pulse {
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--plum);
  box-shadow: 0 0 0 0 rgba(142,78,110,0.45);
  animation: foundPulse 2.2s ease-out infinite;
}
@keyframes foundPulse {
  0%   { box-shadow: 0 0 0 0 rgba(142,78,110,0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(142,78,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(142,78,110,0); }
}
.hero__founding {
  margin-top: 18px; display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: var(--plum-deep); font-weight: 600;
}
.hero__founding .star { color: var(--gold-deep); }
@media (prefers-reduced-motion: reduce) { .founding__pulse { animation: none; } }
@media (max-width: 940px) { .testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .testi__grid { grid-template-columns: 1fr; }
  .testi__feature { padding: 12px 26px 34px; }
  .founding { padding: 20px 18px; }
  .founding__head { font-size: 14.5px; }
  .founding__dots { grid-template-columns: repeat(25, 1fr); }
}

/* =========================================================
   CHECKOUT — inline form + responsive modal
   ========================================================= */
.checkout { margin-top: 4px; }
.checkout__step { display: flex; flex-direction: column; gap: 12px; }
.checkout__field input {
  width: 100%; box-sizing: border-box;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid rgba(157,123,138,0.25); border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.checkout__field input::placeholder { color: var(--ink-faint); }
.checkout__field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,0.16); }
.checkout__btn { width: 100%; justify-content: center; margin-top: 4px; }
.checkout__privacy { text-align: center; font-size: 13px; color: var(--ink-faint); margin: 8px 0 0; }
.checkout__back {
  background: none; border: none; color: var(--mauve-deep);
  font-family: var(--sans); font-weight: 700; font-size: 14px; cursor: pointer;
  padding: 0; align-self: flex-start;
}
.checkout__back:hover { color: var(--plum); }
.checkout__summary {
  background: var(--blush); border-radius: 12px; padding: 12px 16px;
  font-size: 14.5px; color: var(--ink); line-height: 1.45;
}
#stripe-payment-element { margin: 2px 0; }
.checkout__err {
  display: none; background: #f7e6e2; border: 1px solid #d9a99c; color: #8e3b2c;
  border-radius: 10px; padding: 11px 14px; font-size: 14px; margin-bottom: 2px;
}
.checkout__processing { display: none; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; color: var(--ink-soft); font-size: 14px; }
.checkout__processing.is-on { display: flex; }
.checkout__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(157,123,138,0.3); border-top-color: var(--plum);
  animation: cspin .8s linear infinite;
}
@keyframes cspin { to { transform: rotate(360deg); } }
.checkout__success { display: none; text-align: center; padding: 6px 0 2px; }
.checkout__success.is-on { display: block; }
.checkout__success h3 { font-family: var(--serif); font-weight: 700; font-size: 27px; color: var(--ink); margin: 0 0 10px; }
.checkout__success p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin: 0 0 22px; }
.checkout__success .btn { width: 100%; justify-content: center; }

/* ---- Modal shell ---- */
.cmodal { position: fixed; inset: 0; z-index: 200; display: none; }
.cmodal.is-open { display: block; }
.cmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(43,34,29,0.52); backdrop-filter: blur(4px);
  animation: cfade .25s ease;
}
@keyframes cfade { from { opacity: 0; } to { opacity: 1; } }
.cmodal__dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: calc(100% - 40px); max-width: 460px; max-height: 92vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    var(--grain),
    radial-gradient(120% 80% at 50% 0%, #F7EEE2 0%, rgba(247,238,226,0) 60%),
    var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -30px rgba(60,40,45,0.6);
  border: 1px solid rgba(157,123,138,0.16);
  padding: 30px 30px 32px;
  animation: cpop .3s cubic-bezier(.22,.61,.36,1);
}
@keyframes cpop { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.cmodal__close {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: transparent; color: var(--ink-soft);
  font-size: 30px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.cmodal__close:hover { background: rgba(157,123,138,0.12); color: var(--ink); }
.cmodal__head { text-align: center; margin-bottom: 22px; padding: 0 24px; }
.cmodal__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 800; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep); margin: 0 0 8px;
}
.cmodal__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--plum); box-shadow: 0 0 0 4px rgba(142,78,110,0.18); }
.cmodal__title { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--ink); margin: 0; line-height: 1.1; }
.cmodal__title em { font-style: italic; color: var(--mauve); }
.cmodal__sub { font-size: 14px; color: var(--ink-soft); margin: 8px 0 0; }
.cmodal-lock { position: fixed; width: 100%; overflow: hidden; }

@media (max-width: 620px) {
  /* Bottom-sheet on phones */
  .cmodal__dialog {
    top: auto; bottom: 0; left: 0; transform: none;
    width: 100%; max-width: none; max-height: 94vh;
    border-radius: 24px 24px 0 0;
    padding: 26px 20px 28px;
    animation: csheet .32s cubic-bezier(.22,.61,.36,1);
  }
  @keyframes csheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .cmodal__title { font-size: 26px; }
  .cmodal__head { padding: 0 36px; margin-bottom: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .cmodal__dialog, .cmodal__backdrop { animation: none; }
}
