:root {
  --night: #140e16;
  --night-2: #201520;
  --plum: #3b1f31;
  --wine: #6c3149;
  --ivory: #f4eee4;
  --paper: #e9dfd1;
  --ink: #2b2225;
  --ink-soft: #66595c;
  --gold: #d8ad5b;
  --gold-pale: #efd9a7;
  --moon: #cbd5e1;
  --rose: #bd788a;
  --line-light: rgba(73, 47, 51, 0.18);
  --line-dark: rgba(235, 214, 178, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 30px 80px rgba(12, 7, 12, 0.38);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--night); background: var(--gold); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.center { text-align: center; }
.section-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.light-section { position: relative; background: var(--ivory); }
.dark-section { position: relative; color: var(--ivory); background: var(--night); }
.section-kicker,
.eyebrow,
.brand {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: .98; }
h2 { margin-bottom: 28px; font-size: clamp(48px, 7vw, 84px); letter-spacing: -.035em; }
h2 em, h1 em { color: var(--gold); font-weight: 400; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 210;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--moon));
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--night);
}
.hero-scene { position: absolute; inset: 0; overflow: hidden; }
.hero-image {
  position: absolute;
  inset: -2%;
  background: url("/assets/hero-sun-moon.webp") center / cover no-repeat;
  filter: saturate(.9) contrast(1.04);
  transform: scale(1.02);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 22, .92) 0%, rgba(20, 14, 22, .82) 38%, rgba(20, 14, 22, .34) 70%, rgba(20, 14, 22, .28) 100%),
    linear-gradient(180deg, rgba(20, 14, 22, .44), transparent 35%, rgba(20, 14, 22, .72));
}
.orbit { position: absolute; border: 1px solid rgba(232, 215, 190, .14); border-radius: 50%; }
.orbit-one { width: 44vw; aspect-ratio: 1; right: -16vw; top: -12vw; animation: orbitDrift 36s linear infinite; }
.orbit-two { width: 72vw; aspect-ratio: 1; left: -43vw; bottom: -52vw; border-color: rgba(216, 173, 91, .14); animation: orbitDrift 52s linear infinite reverse; }
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px));
  min-height: 100svh;
  margin-inline: auto;
  padding: 30px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.hero-copy { max-width: 690px; }
.brand { display: flex; gap: 12px; align-items: center; color: var(--ivory); }
.brand::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.brand span { color: rgba(244, 238, 228, .54); font-weight: 500; }
.hero .eyebrow { margin: 30px 0 18px; }
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(68px, 8.2vw, 124px);
  line-height: .86;
  letter-spacing: -.055em;
  text-shadow: 0 10px 50px rgba(0,0,0,.24);
}
.hero h1 em { text-shadow: 0 0 42px rgba(216, 173, 91, .16); }
.hero-line {
  margin-bottom: 10px;
  color: var(--gold-pale);
  font: italic 400 clamp(22px, 2.4vw, 31px)/1.25 var(--font-display);
}
.hero-intro { max-width: 570px; margin-bottom: 16px; color: rgba(244, 238, 228, .72); font-size: 13px; }
.hero-offer { max-width: 580px; }
/* CTA carries the same width as the price card: one aligned offer column. */
.hero-offer .cta { width: min(100%, 430px); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: var(--night);
  background: var(--gold);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.price-card {
  position: relative;
  width: min(100%, 430px);
  margin: 12px 0 7px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 17px;
  align-items: center;
  overflow: hidden;
  background: rgba(11, 8, 12, .58);
  border: 1px solid rgba(239, 217, 167, .24);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 15px 38px rgba(0,0,0,.18);
}
.price-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: skewX(-18deg);
  animation: priceGleam 8s ease-in-out infinite;
  pointer-events: none;
}
.price-main { padding-right: 15px; border-right: 1px solid rgba(239,217,167,.18); }
.price-label { display: block; margin-bottom: 4px; color: var(--gold-pale); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.price-now { display: block; color: var(--ivory); font: 600 43px/.9 var(--font-display); white-space: nowrap; }
.price-now small { font: 600 18px/1 var(--font-display); }
.price-compare { display: grid; gap: 2px; }
.price-compare span { color: rgba(244,238,228,.52); font-size: 10px; }
.price-compare s { margin-left: 4px; color: rgba(244,238,228,.64); font-size: 13px; }
.price-compare strong { color: var(--gold-pale); font-size: 11px; }
.price-compare small { color: rgba(244,238,228,.45); font-size: 9px; }
.countdown-slot { display: flex; align-items: center; gap: 6px; margin: 15px 0 16px; color: var(--ivory); }
.countdown-slot[hidden] { display: none; }
.cd-label { margin-right: 5px; color: rgba(244, 238, 228, .52); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.cd-chip { min-width: 34px; padding: 5px 6px; text-align: center; background: rgba(244,238,228,.08); border: 1px solid rgba(244,238,228,.12); border-radius: 7px; font: 600 14px/1 var(--font-body); }
.cd-sep { color: var(--gold); }
.cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta.primary { color: #221711; background: linear-gradient(120deg, #f0d99f, var(--gold) 54%, #bd804b); box-shadow: 0 16px 42px rgba(216, 173, 91, .18); animation: ctaGlow 4.2s ease-in-out infinite; }
.cta.primary:hover { transform: translateY(-2px); box-shadow: 0 20px 52px rgba(216, 173, 91, .34); animation: none; }
.cta.secondary { color: var(--gold-pale); background: transparent; border-color: rgba(239,217,167,.45); }
.cta.secondary:hover { background: rgba(239,217,167,.08); }
.trust-inline { margin: 12px 0 0; color: rgba(244, 238, 228, .48); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.digital-note { max-width: 460px; margin: 9px 0 0; color: rgba(244, 238, 228, .42); font-size: 11px; line-height: 1.6; }
.offer-copy .digital-note { max-width: none; }
.hero-mobile-stage { display: contents; }
.hero-mobile-copy { display: contents; }
.hero-book { position: relative; display: grid; place-items: center; perspective: 1200px; animation: coverFloat 7s ease-in-out infinite; }
.hero-cover-mobile { display: none; }
.moon-halo {
  position: absolute;
  width: min(44vw, 550px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,224,210,.17), rgba(203,213,225,.06) 45%, transparent 68%);
  box-shadow: inset 0 0 80px rgba(203,213,225,.08);
}
.moon-halo::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(239,217,167,.12); border-radius: 50%; animation: haloPulse 5s ease-in-out infinite; }
.book { position: relative; width: min(75%, 350px); transform: rotateY(var(--ty, -7deg)) rotateX(var(--tx, 2deg)); transform-style: preserve-3d; transition: transform .3s ease; }
.book::before { content: ""; position: absolute; inset: 2% -8% 2% 8%; z-index: -1; background: #6e625a; transform: translateZ(-18px); box-shadow: 24px 26px 55px rgba(0,0,0,.56); }
.book::after { content: ""; position: absolute; inset: auto 2% -5% 4%; height: 7%; background: linear-gradient(#b9aa93, #6c6259); transform: skewX(-28deg) translateZ(-7px); filter: brightness(.8); }
.cover { width: 100%; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 20px 65px rgba(0,0,0,.38); transition: filter .6s ease, box-shadow .6s ease; }
.book-caption { position: relative; display: flex; align-items: center; gap: 9px; margin-top: 34px; color: rgba(244,238,228,.66); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.book-caption i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 20px; display: grid; justify-items: center; gap: 4px; color: rgba(244,238,228,.46); font-size: 8px; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 22px; background: linear-gradient(var(--gold), transparent); }

/* Opening */
.opening { padding: 144px 0 150px; overflow: hidden; }
.sun-mark { width: 90px; height: 90px; margin: 0 auto 54px; display: grid; place-items: center; border: 1px solid rgba(159,112,48,.32); border-radius: 50%; }
.sun-mark::before, .sun-mark::after { content: ""; position: absolute; width: 150px; height: 1px; background: linear-gradient(90deg, transparent, rgba(159,112,48,.24), transparent); }
.sun-mark::after { transform: rotate(90deg); }
.sun-mark span { width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #f4d995, #b47833); box-shadow: 0 0 35px rgba(186,130,55,.28); }
.opening .section-kicker { color: #9c6b34; }
.opening .lead { margin: 0 auto 26px; color: var(--ink-soft); font: 400 clamp(20px, 2.4vw, 27px)/1.55 var(--font-display); }
.ink-note { display: inline-block; margin: 12px auto 0; padding-bottom: 5px; border-bottom: 1px solid #b48951; color: var(--ink); font-size: 13px; font-weight: 700; }

/* Three worlds */
.triad-section { padding: 140px 0 155px; overflow: hidden; }
.triad-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(115,53,78,.24), transparent 36%), radial-gradient(circle at 88% 70%, rgba(80,103,132,.13), transparent 34%); }
.section-heading { position: relative; text-align: center; }
.triad { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 74px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.world-card { min-height: 420px; padding: 50px 40px 46px; background: rgba(23,15,23,.94); text-align: center; }
.world-number { display: block; color: rgba(239,217,167,.42); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.world-icon { position: relative; width: 92px; height: 92px; margin: 48px auto 38px; }
.world-icon::before, .world-icon::after { content: ""; position: absolute; }
.mineral-icon::before { inset: 14px 20px 8px; background: linear-gradient(145deg, #866171, #403243); clip-path: polygon(50% 0, 88% 30%, 100% 78%, 52% 100%, 4% 76%, 13% 26%); box-shadow: 0 0 32px rgba(189,120,138,.24); }
.mineral-icon::after { inset: 4px; border: 1px solid rgba(189,120,138,.3); transform: rotate(45deg); }
.sun-icon::before { inset: 17px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #f6dfa1, #b3762f); box-shadow: 0 0 32px rgba(216,173,91,.37); }
.sun-icon::after { inset: 3px; border: 1px dashed rgba(216,173,91,.45); border-radius: 50%; }
.moon-icon::before { inset: 12px; border-radius: 50%; background: #dce0e4; box-shadow: 0 0 30px rgba(203,213,225,.28); }
.moon-icon::after { inset: 5px 4px 5px 22px; border-radius: 50%; background: #171018; }
.world-card h3 { margin-bottom: 18px; color: var(--gold-pale); font-size: 40px; }
.world-card p { margin: 0; color: rgba(244,238,228,.58); font-size: 13px; line-height: 1.8; }

/* Inside the book */
.inside-section { padding: 145px 0 160px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: end; }
.split-heading > p { margin-bottom: 31px; color: var(--ink-soft); font: 400 19px/1.65 var(--font-display); }
.chapter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 72px; }
.chapter-card { min-height: 390px; padding: 42px 34px; border: 1px solid var(--line-light); background: rgba(255,255,255,.24); }
.chapter-card.feature { color: var(--ivory); background: linear-gradient(145deg, #36202e, #1b131b); border-color: transparent; box-shadow: var(--shadow); transform: translateY(-16px); }
.chapter-card > span { display: block; margin-bottom: 30px; color: #9b6e3d; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.chapter-card.feature > span { color: var(--gold); }
.chapter-card strong { display: block; min-height: 94px; font: 500 31px/1.05 var(--font-display); }
.chapter-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.chapter-card li { position: relative; padding: 12px 0 12px 20px; border-top: 1px solid var(--line-light); color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.chapter-card.feature li { color: rgba(244,238,228,.68); border-color: var(--line-dark); }
.chapter-card li::before { content: "·"; position: absolute; left: 3px; color: var(--gold); font-size: 18px; }
.stone-ribbon { overflow: hidden; color: #24171e; background: var(--gold); transform: rotate(-1deg) scale(1.02); }
.ribbon-track { width: max-content; padding: 13px 0; display: flex; gap: 24px; align-items: center; animation: ribbon 34s linear infinite; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.ribbon-track i { font-style: normal; font-size: 11px; }
@keyframes ribbon { to { transform: translateX(-50%); } }

/* Calendar */
.ritual-section { position: relative; overflow: hidden; padding: 160px 0; color: var(--ivory); background: linear-gradient(135deg, #25141f, #120d14 60%, #17202a); }
.ritual-glow { position: absolute; width: 700px; height: 700px; left: -270px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(183,116,62,.2), transparent 68%); }
.ritual-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 120px; align-items: center; }
.cycle { position: relative; width: min(39vw, 470px); aspect-ratio: 1; margin-inline: auto; }
.cycle-ring { position: absolute; inset: 0; border: 1px solid rgba(239,217,167,.28); border-radius: 50%; }
.ring-outer::before, .ring-outer::after { content: ""; position: absolute; inset: 9%; border: 1px dashed rgba(239,217,167,.16); border-radius: 50%; }
.ring-outer::after { inset: 22%; border-style: solid; }
.ring-inner { inset: 38%; background: radial-gradient(circle at 36% 28%, #ead8ae, #9c7548 44%, #37281d 72%); box-shadow: 0 0 60px rgba(216,173,91,.18); }
.phase { position: absolute; display: grid; justify-items: center; gap: 8px; color: rgba(244,238,228,.6); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.phase b { width: 19px; height: 19px; border: 1px solid var(--gold); border-radius: 50%; background: var(--night); }
.p1 { left: 50%; top: -8px; transform: translateX(-50%); }
.p2 { right: -30px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.p3 { left: 50%; bottom: -8px; transform: translateX(-50%); }
.p3 b { background: var(--gold-pale); box-shadow: 0 0 18px rgba(239,217,167,.5); }
.p4 { left: -26px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.cycle-center { position: absolute; inset: 41%; z-index: 2; display: grid; place-content: center; text-align: center; color: #281b18; }
.cycle-center strong { font: 600 45px/.8 var(--font-display); }
.cycle-center span { margin-top: 8px; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.ritual-copy > p:not(.section-kicker) { max-width: 600px; color: rgba(244,238,228,.62); font: 400 18px/1.65 var(--font-display); }
.cycle-steps { margin: 35px 0 0; padding: 0; list-style: none; }
.cycle-steps li { display: grid; grid-template-columns: 34px 100px 1fr; gap: 12px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--line-dark); color: rgba(244,238,228,.58); font-size: 12px; }
.cycle-steps span { color: var(--gold); font-size: 9px; }
.cycle-steps b { color: var(--ivory); font-family: var(--font-display); font-size: 17px; font-weight: 500; }

/* Quote + preview */
.clarity-section { padding: 145px 0; }
.clarity-section blockquote { margin: 16px auto 35px; color: var(--ink); font: italic 400 clamp(37px, 5vw, 61px)/1.12 var(--font-display); letter-spacing: -.02em; }
.clarity-section .narrow > p:not(.section-kicker) { color: var(--ink-soft); font-size: 13px; }
.signature { display: block; margin-top: 24px; color: #956536; font: italic 500 25px/1 var(--font-display); }
.preview-section { padding: 150px 0; background: #171116; }
.preview-grid { display: grid; grid-template-columns: .8fr .65fr; gap: 120px; align-items: center; }
.preview-copy > p:not(.section-kicker) { color: rgba(244,238,228,.6); font: 400 18px/1.65 var(--font-display); }
.practice-list { margin: 38px 0 0; padding: 0; list-style: none; }
.practice-list li { display: grid; grid-template-columns: 44px 1fr; padding: 14px 0; border-top: 1px solid var(--line-dark); color: rgba(244,238,228,.72); font-size: 12px; }
.practice-list span { color: var(--gold); font-size: 9px; }
.page-preview { position: relative; max-width: 430px; margin-inline: auto; padding: 18px 18px 44px; background: #ddd1c0; transform: rotate(2deg); box-shadow: 36px 38px 80px rgba(0,0,0,.45); }
.page-preview::before { content: ""; position: absolute; inset: -22px 22px 22px -22px; z-index: -1; border: 1px solid rgba(216,173,91,.35); }
.page-preview img { width: 100%; }
.page-preview > span { position: absolute; bottom: 13px; left: 0; right: 0; color: #614b3b; font-size: 8px; font-weight: 800; letter-spacing: .16em; text-align: center; }

/* Author + reviews */
.author-section { padding: 145px 20px; }
.author-card { position: relative; width: min(980px, 100%); margin-inline: auto; padding: 90px clamp(28px, 9vw, 130px); overflow: hidden; text-align: center; border: 1px solid var(--line-light); background: rgba(255,255,255,.22); }
.author-sun { position: absolute; right: -170px; top: -180px; width: 400px; aspect-ratio: 1; border: 1px solid rgba(177,123,54,.18); border-radius: 50%; }
.author-sun::before { content: ""; position: absolute; inset: 80px; border: 1px dashed rgba(177,123,54,.2); border-radius: 50%; }
.author-card p:not(.section-kicker) { width: min(650px, 100%); margin-inline: auto; color: var(--ink-soft); font: 400 18px/1.7 var(--font-display); }
.reviews-section { padding: 20px 0 150px; }
.reviews-heading { width: min(720px, 100%); margin-inline: auto; }
.reviews-heading { margin-bottom: 55px; }
.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review { margin: 0; padding: 30px; border: 1px solid var(--line-light); background: rgba(255,255,255,.28); }
.review figcaption { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
.review img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; filter: saturate(.7); }
.review figcaption span { display: grid; }
.review figcaption b { color: var(--ink); font-size: 11px; }
.review figcaption i { color: #b9883d; font-size: 10px; font-style: normal; letter-spacing: .05em; }
.review blockquote { margin: 22px 0 0; color: var(--ink-soft); font: italic 400 19px/1.55 var(--font-display); }

/* Offer */
.offer-section { position: relative; overflow: hidden; padding: 150px 20px; color: var(--ivory); background: radial-gradient(circle at 15% 30%, #462337, transparent 36%), linear-gradient(140deg, #171017, #0f0c10); }
.offer-orbit { position: absolute; width: 850px; aspect-ratio: 1; left: -470px; bottom: -580px; border: 1px solid rgba(216,173,91,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(216,173,91,.025), 0 0 0 180px rgba(216,173,91,.02); }
.offer-card { position: relative; width: min(960px, 100%); margin-inline: auto; display: grid; grid-template-columns: .66fr 1fr; gap: 90px; align-items: center; }
.offer-cover { perspective: 1000px; }
.offer-cover img { width: min(100%, 350px); margin-inline: auto; transform: rotateY(8deg) rotateZ(-1deg); box-shadow: -24px 28px 70px rgba(0,0,0,.5); }
.offer-copy h2 { font-size: clamp(52px, 6vw, 78px); }
.offer-stack { margin: 0 0 34px; padding: 0; list-style: none; }
.offer-stack li { padding: 10px 0; color: rgba(244,238,228,.64); font-size: 12px; }
.offer-stack li span { margin-right: 12px; color: var(--gold); }
.offer-stack li b { color: var(--ivory); }
.offer-price { margin: 14px 0 21px; }
.offer-price .price-main { text-align: left; }
.offer-price .price-compare { text-align: left; }

/* FAQ + lead magnet */
.faq-section { padding: 145px 0; }
.faq-shell { width: min(1080px, calc(100% - 40px)); margin-inline: auto; display: grid; grid-template-columns: .55fr 1fr; gap: 100px; }
.faq-intro h2 { font-size: clamp(50px, 6vw, 74px); }
.faq details { border-top: 1px solid var(--line-light); }
.faq details:last-child { border-bottom: 1px solid var(--line-light); }
.faq summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: var(--ink); font: 500 20px/1.25 var(--font-display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: #9c6b34; font-family: var(--font-body); font-size: 20px; transition: transform .25s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -2px 35px 24px 0; color: var(--ink-soft); font-size: 12px; }
.leadmagnet-section { padding: 140px 20px; color: var(--ivory); background: #1b1420; }
.leadmagnet-section[hidden] { display: none; }
.leadmagnet-section.is-unlocked { animation: freeReveal .8s var(--ease-out) both; }
.leadmagnet-card { position: relative; width: min(920px, 100%); margin-inline: auto; padding: 80px clamp(28px, 8vw, 100px); overflow: hidden; text-align: center; border: 1px solid rgba(203,213,225,.18); background: linear-gradient(145deg, rgba(70,47,69,.4), rgba(19,15,23,.9)); }
.leadmagnet-card h2 { font-size: clamp(48px, 6vw, 72px); }
.leadmagnet-card > p:not(.section-kicker) { max-width: 580px; margin: 0 auto 30px; color: rgba(244,238,228,.62); font: 400 18px/1.6 var(--font-display); }
.lead-moon { position: absolute; width: 260px; aspect-ratio: 1; right: -110px; top: -120px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(231,232,232,.38), rgba(120,136,157,.1) 48%, transparent 70%); }

/* Footer / sticky / overlays */
.site-footer { position: relative; overflow: hidden; padding: 110px 20px 130px; color: rgba(244,238,228,.52); background: #0e0a0f; text-align: center; }
.footer-orbits { position: absolute; width: 600px; aspect-ratio: 1; left: 50%; top: 0; border: 1px solid rgba(216,173,91,.08); border-radius: 50%; transform: translate(-50%, -72%); }
.footer-inner { position: relative; width: min(760px, 100%); margin-inline: auto; }
.footer-brand { margin-bottom: 28px; color: var(--gold); font: 500 18px/1 var(--font-display); letter-spacing: .2em; }
.colophon { font-size: 10px; line-height: 1.75; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px; margin: 28px 0 18px; }
.footer-links a { color: rgba(244,238,228,.68); font-size: 10px; text-decoration: none; }
.footer-meta { margin: 0; font-size: 9px; }
.sticky-buy { position: fixed; z-index: 80; left: 50%; bottom: 18px; width: min(680px, calc(100% - 28px)); padding: 9px 10px 9px 18px; display: flex; gap: 18px; align-items: center; justify-content: space-between; color: var(--ivory); background: rgba(24,16,24,.94); border: 1px solid rgba(239,217,167,.26); border-radius: 7px; box-shadow: 0 20px 55px rgba(0,0,0,.48); backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transform: translate(-50%, 22px); transition: opacity .35s, transform .45s var(--ease-out); }
.sticky-buy.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.sticky-buy .meta { min-width: 0; }
.sticky-buy .t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 500 16px/1.15 var(--font-display); }
.sticky-buy .p { color: var(--gold-pale); font-size: 11px; font-weight: 700; }
.sticky-buy .p s, .sticky-buy .p span { color: rgba(244,238,228,.4); font-weight: 500; }
.sticky-buy .countdown-slot { margin: 4px 0 0; }
.sticky-buy .cd-label { display: none; }
.sticky-buy .cd-chip { min-width: 24px; padding: 3px; font-size: 10px; }
.sticky-buy .cta { min-height: 46px; padding: 10px 18px; flex-shrink: 0; }
.activity-feed { position: fixed; z-index: 70; left: 18px; bottom: 18px; width: min(315px, calc(100% - 36px)); padding: 12px 8px 12px 14px; display: grid; grid-template-columns: auto 1fr 34px; gap: 10px; align-items: center; color: var(--ivory); background: rgba(29,20,29,.96); border: 1px solid rgba(239,217,167,.2); border-radius: 7px; box-shadow: 0 20px 48px rgba(0,0,0,.42); opacity: 0; pointer-events: none; transform: translateY(14px); transition: .4s var(--ease-out); }
.activity-feed.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.af-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.af-dot { width: 8px; height: 8px; margin: 13px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.af-copy { display: grid; min-width: 0; }
.af-copy strong { font-size: 10px; }
.af-copy span { color: rgba(244,238,228,.5); font-size: 9px; }
.af-close { width: 34px; height: 34px; color: rgba(244,238,228,.46); background: transparent; border: 0; cursor: pointer; }
.exit-modal { position: fixed; z-index: 300; inset: 0; padding: 24px; display: grid; place-items: center; }
.exit-modal[hidden] { display: none; }
.exit-backdrop { position: absolute; inset: 0; background: rgba(9,6,10,.82); backdrop-filter: blur(5px); }
.exit-panel { position: relative; width: min(480px, 100%); padding: 58px 44px 44px; overflow: hidden; color: var(--ivory); background: linear-gradient(145deg, #382337, #171118); border: 1px solid rgba(239,217,167,.25); text-align: center; box-shadow: var(--shadow); }
.exit-panel h3 { margin-bottom: 14px; font-size: 45px; }
.exit-panel > p:not(.section-kicker) { color: rgba(244,238,228,.6); font-size: 13px; }
.exit-moon { position: absolute; width: 160px; aspect-ratio: 1; right: -70px; top: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(220,224,229,.25), transparent 65%); }
.exit-dismiss { margin-top: 16px; color: rgba(244,238,228,.45); background: none; border: 0; font-size: 11px; text-decoration: underline; cursor: pointer; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .85s var(--ease-out); transition-delay: calc(var(--d, 0) * 90ms); }
.js .reveal.in { opacity: 1; transform: none; }
@keyframes heroBreathe { from { transform: scale(1.02); filter: saturate(.88) contrast(1.03); } to { transform: scale(1.055); filter: saturate(.98) contrast(1.06); } }
@keyframes orbitDrift { to { transform: rotate(360deg); } }
@keyframes coverFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes haloPulse { 0%, 100% { opacity: .28; transform: scale(.96); } 50% { opacity: .7; transform: scale(1.04); } }
@keyframes priceGleam { 0%, 74% { left: -45%; opacity: 0; } 78% { opacity: 1; } 94%, 100% { left: 125%; opacity: 0; } }
@keyframes freeReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes ctaGlow { 0%, 100% { box-shadow: 0 16px 42px rgba(216, 173, 91, .18); } 50% { box-shadow: 0 16px 50px rgba(216, 173, 91, .34); } }
/* Deliberate: motion is NOT gated on prefers-reduced-motion — Windows desktops
   falsely report `reduce` when OS animation effects are off, which killed every
   animation and made the page read as dead. Motion stays slow and small instead.
   Only smooth scrolling respects the preference. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .hero-shell { width: min(100% - 40px, 720px); grid-template-columns: 1fr; gap: 60px; padding: 42px 0 100px; }
  .hero-copy { max-width: 660px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(20,14,22,.88), rgba(20,14,22,.78) 55%, rgba(20,14,22,.88)); }
  .hero-book { grid-row: 2; }
  .book { width: min(64vw, 330px); }
  .moon-halo { width: min(92vw, 500px); }
  .triad { grid-template-columns: 1fr; }
  .world-card { min-height: auto; }
  .split-heading, .ritual-grid, .preview-grid, .faq-shell { grid-template-columns: 1fr; gap: 60px; }
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter-card { min-height: auto; }
  .chapter-card.feature { transform: none; }
  .cycle { width: min(76vw, 460px); }
  .offer-card { grid-template-columns: .62fr 1fr; gap: 50px; }
}

/* Short desktop viewports (720p laptops): compress the hero column so the
   CTA + trust line land above the fold instead of on the bottom edge. */
@media (min-width: 901px) and (max-height: 820px) {
  .hero .countdown-slot { display: none; }
  .hero-shell { padding: 22px 0 40px; }
  .hero .eyebrow { margin: 22px 0 14px; }
  .hero h1 { font-size: clamp(60px, 7vw, 102px); }
  .hero-line { font-size: clamp(20px, 2vw, 26px); }
  .hero-intro { margin-bottom: 12px; }
  .digital-note { display: none; }
}

@media (max-width: 640px) {
  body { padding-bottom: 76px; font-size: 15px; }
  .section-shell, .narrow { width: min(100% - 28px, 560px); }
  h2 { font-size: clamp(45px, 14vw, 63px); }
  .section-kicker { font-size: 9px; }
  .hero { min-height: auto; }
  .hero-shell { width: calc(100% - 28px); min-height: auto; padding: 28px 0 94px; gap: 46px; }
  .brand { font-size: 9px; }
  .hero .eyebrow { margin-top: 38px; }
  .hero-image { background-position: 68% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(20,14,22,.84), rgba(20,14,22,.7) 56%, rgba(20,14,22,.9)); }
  .hero h1 { margin-bottom: 18px; font-size: clamp(59px, 19vw, 76px); line-height: .94; }
  .hero-mobile-stage { display: grid; grid-template-columns: minmax(0, 1fr) 116px; align-items: center; gap: 14px; margin-bottom: 22px; }
  .hero-mobile-copy { display: block; min-width: 0; }
  .hero-line { margin-bottom: 12px; font-size: 20px; }
  /* Let the verse wrap naturally on narrow screens — no orphaned words. */
  .hero-line br { display: none; }
  .hero-intro { margin-bottom: 0; font-size: 12px; }
  .hero-offer .cta { width: 100%; }
  .hero-offer { clear: both; }
  /* Mobile product stage: a real, readable cover in the opening composition. */
  .hero-cover-mobile {
    position: relative;
    display: block;
    width: 108px;
    margin-left: auto;
    isolation: isolate;
  }
  .hero-cover-mobile::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: -24% -34%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 42%, rgba(216, 173, 91, .42), rgba(203, 213, 225, .12) 42%, transparent 70%);
    filter: blur(2px);
    pointer-events: none;
  }
  .mobile-cover-orbit {
    position: absolute;
    z-index: -1;
    inset: -10px -13px;
    border: 1px solid rgba(239, 217, 167, .42);
    border-radius: 50%;
    transform: rotate(-16deg);
    box-shadow: 0 0 26px rgba(216, 173, 91, .15);
    pointer-events: none;
  }
  .hero-cover-mobile img {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid rgba(239, 217, 167, .34);
    border-radius: 2px;
    filter: brightness(1.08) saturate(1.03);
    transform: rotate(2deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .58), 0 4px 12px rgba(0, 0, 0, .4), 0 0 42px rgba(216, 173, 91, .18);
    animation: coverFloat 7s ease-in-out infinite;
  }
  .hero-cover-mobile b {
    position: absolute;
    z-index: 2;
    left: -12px;
    bottom: 10px;
    padding: 5px 7px;
    color: var(--night);
    background: var(--gold);
    border-radius: 3px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
  }
  .hero-book { display: none; }
  .price-card { grid-template-columns: .9fr 1.1fr; gap: 12px; padding: 12px 13px; }
  .price-main { padding-right: 10px; }
  .price-now { font-size: 34px; }
  .price-now small { font-size: 14px; }
  .cd-label { width: 100%; margin-bottom: 3px; }
  .countdown-slot { flex-wrap: wrap; }
  .scroll-cue { display: none; }
  .opening, .triad-section, .inside-section, .ritual-section, .clarity-section, .preview-section, .author-section, .offer-section, .faq-section, .leadmagnet-section { padding-top: 105px; padding-bottom: 105px; }
  .sun-mark { margin-bottom: 42px; }
  .opening .lead { font-size: 21px; }
  .triad { margin-top: 48px; }
  .world-card { padding: 40px 26px; }
  .world-icon { margin: 35px auto 27px; }
  .split-heading { gap: 12px; }
  .split-heading > p { font-size: 17px; }
  .chapter-grid { margin-top: 42px; }
  .chapter-card { padding: 34px 26px; }
  .ritual-grid { gap: 70px; }
  .cycle { width: min(79vw, 380px); }
  .p2 { right: -24px; }
  .p4 { left: -22px; }
  .cycle-steps li { grid-template-columns: 28px 86px 1fr; gap: 7px; font-size: 10px; }
  .clarity-section blockquote { font-size: 40px; }
  .preview-grid { gap: 70px; }
  .page-preview { width: calc(100% - 34px); }
  .author-card { padding: 66px 24px; }
  .reviews { grid-template-columns: 1fr; }
  .review { padding: 24px; }
  .review figcaption { grid-template-columns: 44px 1fr; }
  .review figcaption i { grid-column: 2; margin-top: -9px; }
  .offer-card { grid-template-columns: 1fr; gap: 60px; }
  .offer-cover img { width: min(70vw, 300px); }
  .offer-copy { text-align: center; }
  .offer-stack { text-align: left; }
  .offer-copy .cta { width: 100%; }
  .faq-shell { gap: 24px; }
  .faq summary { font-size: 18px; }
  .leadmagnet-card { padding: 66px 22px; }
  .leadmagnet-card .cta { width: 100%; }
  .site-footer { padding: 90px 18px 110px; }
  .sticky-buy { bottom: 8px; width: calc(100% - 16px); padding: 8px 8px 8px 12px; gap: 8px; }
  .sticky-buy .t { max-width: 190px; font-size: 13px; }
  .sticky-buy .p { font-size: 9px; }
  .sticky-buy .countdown-slot { display: none; }
  .sticky-buy .cta { min-height: 44px; padding: 8px 12px; font-size: 10px; }
  .activity-feed { display: none !important; }
}
