:root {
  --ink: #211b19;
  --muted: #6f625c;
  --paper: #f8f3ee;
  --cream: #fffaf5;
  --caramel: #a66545;
  --caramel-dark: #79432c;
  --sand: #ead8cb;
  --sage: #596b53;
  --line: rgba(33, 27, 25, 0.12);
  --shadow: 0 24px 70px rgba(67, 41, 29, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.preview-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 9px 18px;
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--caramel);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--caramel-dark);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.brand strong { display: block; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.brand small { color: var(--muted); font-size: .72rem; }
.secure-note { color: var(--muted); font-size: .82rem; }

.hero {
  padding: 54px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(166, 101, 69, .18), transparent 32%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--caramel-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; margin: 0; font-weight: 500; }
h1 { font-size: clamp(3rem, 6.3vw, 5.7rem); letter-spacing: -.055em; margin-top: 22px; }
h1 em { color: var(--caramel); font-weight: 500; }

.hero-copy > p {
  max-width: 610px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.check-list { display: grid; gap: 10px; padding: 0; margin: 0 0 30px; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before {
  content: "✓";
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: #fff;
  font-size: .72rem;
  margin-top: 2px;
}

.price-line { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.price-line span { color: var(--muted); font-size: .92rem; }
.price-line strong { font-family: Georgia, serif; font-size: 2.45rem; font-weight: 500; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--caramel-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(121, 67, 44, .23);
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); background: #633522; }
.microcopy { margin-top: 13px; color: var(--muted); font-size: .8rem; }

.product-stage { position: relative; min-height: 610px; }
.product-stage::before {
  content: "";
  position: absolute;
  inset: 12% 4% 4%;
  border-radius: 48% 52% 48% 52%;
  background: var(--sand);
}

.book {
  position: absolute;
  width: 42%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}

.book img { aspect-ratio: 595 / 842; object-fit: cover; }
.book.one { left: 2%; top: 18%; transform: rotate(-8deg); }
.book.two { left: 31%; top: 5%; z-index: 2; }
.book.three { right: 0; top: 21%; transform: rotate(8deg); }
.total-badge {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 8%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow);
}
.total-badge strong { display: block; font-family: Georgia, serif; font-size: 2.2rem; line-height: .9; }
.total-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section h2 { font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -.04em; margin-top: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.55); }
.stat strong { display: block; color: var(--caramel-dark); font-family: Georgia, serif; font-size: 3rem; line-height: 1; }
.stat span { color: var(--muted); }

.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.book-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.book-card img { width: 100%; aspect-ratio: 595 / 842; object-fit: cover; }
.book-card-copy { padding: 24px; }
.book-card h3 { font-size: 1.7rem; }
.book-card p { color: var(--muted); margin: 8px 0 0; }

.dark-section { background: var(--ink); color: #fff; }
.dark-section .section-head p { color: rgba(255,255,255,.68); }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit { min-height: 190px; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.benefit b { display: block; color: #e5bca6; margin-bottom: 42px; font-size: .78rem; letter-spacing: .1em; }
.benefit p { margin: 0; font-size: 1.02rem; }

.offer-box {
  display: grid;
  grid-template-columns: 1fr .76fr;
  gap: 60px;
  padding: 54px;
  border-radius: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.offer-box h2 { margin-top: 0; }
.offer-summary { align-self: center; padding: 34px; background: var(--paper); border-radius: 24px; }
.offer-summary .price-line { justify-content: space-between; }
.button.block { width: 100%; }

.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 750; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin-bottom: 4px; }

footer { padding: 34px 0 96px; color: var(--muted); font-size: .8rem; text-align: center; }

.funnel-page { min-height: 100vh; background: linear-gradient(160deg, var(--cream), #ead8cb); }
.funnel-wrap { width: min(960px, calc(100% - 36px)); margin: 0 auto; padding: 34px 0 70px; }
.funnel-card { background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.7); border-radius: 34px; padding: 52px; box-shadow: var(--shadow); }
.funnel-card h1 { font-size: clamp(2.65rem, 5vw, 4.8rem); text-align: center; }
.funnel-card .lead { text-align: center; color: var(--muted); max-width: 700px; margin: 22px auto 38px; font-size: 1.08rem; }
.protocols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 36px 0; }
.protocols img { width: 100%; border-radius: 14px; box-shadow: 0 12px 30px rgba(41,27,20,.14); }
.upsell-content { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.upsell-actions { display: grid; gap: 12px; margin-top: 24px; }
.decline { text-align: center; color: var(--muted); font-size: .85rem; }
.thank-you { text-align: center; max-width: 720px; margin: 60px auto; }
.success-mark { width: 74px; height: 74px; margin: 0 auto 26px; display: grid; place-items: center; background: var(--sage); color: #fff; border-radius: 50%; font-size: 2rem; }
.next-steps { text-align: left; margin: 34px 0; padding: 26px; background: var(--paper); border-radius: 20px; }

@media (max-width: 860px) {
  .hero-grid, .offer-box, .upsell-content { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .hero-grid { gap: 28px; }
  .product-stage { min-height: 510px; }
  .books-grid, .stats { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .offer-box { padding: 34px; gap: 28px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .secure-note { display: none; }
  h1 { font-size: 3.25rem; }
  .hero-copy > p { font-size: 1rem; }
  .button { width: 100%; padding-inline: 18px; }
  .product-stage { min-height: 390px; }
  .total-badge { width: 100px; height: 100px; }
  .total-badge strong { font-size: 1.8rem; }
  .section { padding: 68px 0; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { min-height: auto; }
  .benefit b { margin-bottom: 18px; }
  .offer-box, .funnel-card { padding: 26px 20px; border-radius: 24px; }
  .protocols { grid-template-columns: 1fr 1fr; gap: 10px; }
}
