:root {
  --navy: #0f1f3a;
  --navy-2: #172b4e;
  --gold: #d4af7a;
  --gold-dark: #a77d43;
  --cream: #f7f1e7;
  --cream-2: #efe5d6;
  --paper: #fffdf9;
  --ink: #182033;
  --muted: #6e6c68;
  --line: #ded3c2;
  --success: #334f43;
  --shadow: 0 18px 55px rgba(15, 31, 58, .10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0;
}

.site-top {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 8px;
  text-align: center;
}

.quiz-shell {
  width: min(730px, calc(100% - 40px));
  margin: 24px auto 48px;
}
.quiz-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.progress {
  height: 7px;
  width: 100%;
  border-radius: 999px;
  background: #e6dccd;
  overflow: hidden;
  margin-bottom: 38px;
}
.progress > span {
  display: block;
  height: 100%;
  width: 16.67%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width .3s ease;
}
.quiz-question {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.5vw, 38px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.02em;
}
.quiz-hint {
  margin: -12px 0 22px;
  color: var(--muted);
  font-size: 15px;
}
.answers {
  display: grid;
  gap: 13px;
}
.answer-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px 20px;
  text-align: left;
  font: inherit;
  line-height: 1.5;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15,31,58,.025);
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.answer-card:hover {
  transform: translateY(-1px);
  border-color: #c2a579;
  box-shadow: 0 8px 22px rgba(15,31,58,.06);
}
.answer-card.is-selected {
  border-color: var(--gold-dark);
  background: #fffaf1;
  box-shadow: 0 0 0 2px rgba(212,175,122,.16);
}
.quiz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  min-height: 34px;
}
.back-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 6px 0;
  font-weight: 700;
  cursor: pointer;
}
.privacy-note {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.page {
  width: min(820px, calc(100% - 40px));
  margin: 18px auto 70px;
}
.result-hero,
.offer-hero {
  text-align: center;
  padding: 38px 0 28px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(38px, 7vw, 58px); margin: 0 0 18px; }
h2 { font-size: clamp(30px, 5vw, 42px); margin: 0 0 16px; }
h3 { font-size: 24px; margin: 0 0 10px; }
p { margin: 0 0 18px; }
.lede {
  font-size: 20px;
  line-height: 1.6;
  color: #394055;
}
.result-intro {
  color: var(--muted);
  font-size: 15px;
  max-width: 690px;
  margin: 0 auto;
}
.section { margin: 48px 0; }
.section.center { text-align: center; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.pattern-list,
.check-list,
.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pattern-list li,
.check-list li,
.offer-list li {
  position: relative;
  padding-left: 31px;
}
.pattern-list li::before,
.check-list li::before,
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}
.shift {
  text-align: center;
  padding: 10px 0;
}
.shift h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.try-card {
  border-left: 4px solid var(--gold);
  background: #fffaf2;
}
.try-quote {
  margin: 6px 0 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: 1.4;
}
.faith {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.faith p { margin: 0 auto; max-width: 680px; }
.divider {
  margin: 58px auto;
  color: var(--gold-dark);
  text-align: center;
  letter-spacing: .5em;
}
.product-teaser {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: center;
}
.book-cover {
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(15,31,58,.22);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,31,58,.18);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--navy-2); }
.btn.gold { background: #b48649; }
.btn.block { width: 100%; }
.microcopy { margin-top: 10px; color: var(--muted); font-size: 13px; }
.retake { text-align: center; margin-top: 44px; font-size: 14px; }
.retake a { color: var(--muted); }

.offer-page { width: min(1100px, calc(100% - 40px)); margin: 0 auto 80px; }
.offer-hero {
  width: min(900px, 100%);
  margin: 0 auto;
}
.offer-hero h1 { font-size: clamp(40px, 6vw, 64px); }
.personalized-note {
  display: inline-block;
  max-width: 760px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border: 1px solid #dbc7a7;
  border-radius: 999px;
  background: #fffaf2;
  color: #675536;
  font-size: 14px;
}
.hero-product {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 48px;
  align-items: center;
  margin: 44px auto 0;
  width: min(930px, 100%);
  text-align: left;
}
.hero-product .book-cover { width: 100%; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0;
}
.compare-price { color: var(--muted); text-decoration: line-through; font-size: 18px; }
.price { color: var(--navy); font-size: 38px; font-weight: 900; }
.offer-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.offer-section > .inner { width: min(860px, 100%); margin: 0 auto; }
.offer-section.center { text-align: center; }
.recognition-copy p { font-size: 20px; }
.four-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.mini-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.mini-card h3 { font-size: 21px; }
.product-intro-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 42px;
  align-items: start;
}
.bonus-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}
.bonus-card img {
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(15,31,58,.15);
}
.stack-card {
  width: min(720px, 100%);
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.stack-card h2, .stack-card h3 { color: #fff; }
.stack-card .offer-list li::before { color: #f0cf9d; }
.stack-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.stack-item:last-of-type { border-bottom: 0; }
.faq { display: grid; gap: 13px; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
summary { cursor: pointer; color: var(--navy); font-weight: 800; }
details p { margin: 12px 0 0; color: #4f5360; }
.final-cta {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}
.final-cta .book-cover { width: min(280px, 70%); margin: 30px auto; }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-top { width: min(100% - 32px, 700px); padding-top: 19px; }
  .quiz-shell { width: min(100% - 28px, 650px); margin-top: 16px; }
  .progress { margin-bottom: 28px; }
  .quiz-question { font-size: 27px; }
  .answer-card { padding: 17px 16px; font-size: 16.5px; }
  .privacy-note { font-size: 12px; }
  .page, .offer-page { width: min(100% - 28px, 700px); }
  .result-hero { padding-top: 24px; }
  .card { padding: 22px 19px; }
  .product-teaser,
  .hero-product,
  .product-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-teaser .book-cover,
  .hero-product .book-cover,
  .product-intro-grid .book-cover { width: min(62%, 270px); margin: 0 auto; }
  .hero-product { text-align: center; }
  .hero-product .price-row { justify-content: center; }
  .four-grid, .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card { grid-template-columns: 82px 1fr; gap: 15px; }
  .offer-section { padding: 48px 0; }
  .recognition-copy p { font-size: 18px; }
  .stack-card { padding: 26px 20px; }
  .stack-item { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Site-side order bump */
body.modal-open { overflow: hidden; }
.bump-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.bump-modal.is-open { display: flex; }
.bump-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 35, .72);
  backdrop-filter: blur(4px);
}
.bump-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  border: 1px solid #d7c09c;
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 34px 90px rgba(3, 12, 29, .38);
}
.bump-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15,31,58,.07);
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.bump-kicker {
  padding: 14px 54px;
  background: var(--navy);
  color: #f6dfb8;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
.bump-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 34px;
  align-items: start;
}
.bump-cover-wrap { position: relative; }
.bump-cover {
  width: 100%;
  display: block;
  border-radius: 9px;
  box-shadow: 0 18px 42px rgba(15,31,58,.22);
}
.bump-save {
  position: absolute;
  top: -12px;
  right: -12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 76px;
  padding: 10px;
  border-radius: 999px;
  background: #b48649;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 8px 22px rgba(79,53,20,.28);
}
.bump-copy h2 {
  margin: 2px 0 12px;
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.08;
}
.bump-subhead { font-size: 16px; color: #3f4650; }
.bump-list {
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.bump-list li {
  position: relative;
  padding-left: 28px;
  color: #3f4650;
  font-weight: 650;
}
.bump-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}
.bump-option {
  display: grid;
  grid-template-columns: 26px 345px 1fr;
  gap: 10px;
  align-items: start;
  padding: 18px;
  border: 2px solid #d4af7a;
  border-radius: 15px;
  background: #fff7e8;
  cursor: pointer;
}
.bump-copy p {
  margin: 0 0 11px;
}
.bump-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bump-check-ui {
  width: 26px;
  height: 26px;
  border: 2px solid #b48649;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
.bump-option input:checked + .bump-check-ui {
  background: var(--navy);
  border-color: var(--navy);
}
.bump-option input:checked + .bump-check-ui::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  margin-top: -4px;
}
.bump-option:has(input:checked) {
  border-color: var(--navy);
  background: #f4f7fb;
}
.bump-option-copy { display: grid; gap: 4px; }
.bump-option-copy > strong { color: var(--navy); font-size: 17px; }
.bump-compare { text-decoration: line-through; color: var(--muted); margin-right: 5px; }
.bump-price { color: #8b5b1f; font-size: 20px; }
.bump-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin: 18px 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #525865;
}
.bump-total strong { color: var(--navy); font-size: 28px; }
.bump-no-thanks {
  display: block;
  width: 100%;
  margin: 12px auto 0;
  border: 0;
  background: none;
  color: #747985;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}
.bump-secure {
  margin: 14px 0 0;
  color: #747985;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 760px) {
  .bump-modal { padding: 10px; align-items: flex-end; }
  .bump-dialog { border-radius: 22px 22px 0 0; max-height: 94vh; }
  .bump-kicker { padding: 12px 48px; }
  .bump-layout { grid-template-columns: 1fr; gap: 20px; padding: 24px 18px 22px; }
  .bump-cover-wrap { width: min(44vw, 170px); margin: 0 auto; }
  .bump-save { min-width: 64px; height: 64px; font-size: 11px; right: -18px; }
  .bump-copy { text-align: left; }
  .bump-copy h2 { font-size: 29px; }
  .bump-subhead { font-size: 17px; }
  .bump-list { grid-template-columns: 1fr; gap: 8px; margin: 16px 0 20px; }
  .bump-option { grid-template-columns: 0 317px 1fr; padding: 15px; }
  .bump-option-copy { padding-left: 25px; }
  .bump-total strong { font-size: 25px; }
  .bump-continue { min-height: 60px; }
}
