/* ───────── BASE ───────── */
:root {
  --bg: #faf7f2;
  --bg-warm: #f4eee4;
  --bg-card: #ffffff;
  --text: #2A2A2A;
  --text-soft: #6B6B6B;
  --text-faint: #9C9C9C;
  --hairline: rgba(26, 54, 93, 0.12);
  --hairline-soft: rgba(26, 54, 93, 0.06);
  --ink: #1A365D;
  --ink-soft: #2A4A78;
  --gold: #B89968;
  --gold-soft: #D4AF37;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────── TYPOGRAPHY ───────── */
.display, .h2, .h3 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
  font-weight: 500;
}
.display {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.04;
  margin: 0 0 0.4em;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}
.display--italic em { font-style: italic; }
.display--center { text-align: center; max-width: 22ch; margin: 0 auto 32px; }

.h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 500;
}
.h2 em { font-style: italic; color: var(--ink-soft); }
.h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  margin: 0 0 16px;
}

.body {
  font-size: 18px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0 0 16px;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: #3a3a3a;
  max-width: 50ch;
  margin: 0 0 36px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
}
.kicker--gold { color: var(--gold); }
.kicker--gold::before { background: var(--ink); }
.ink-gold { color: var(--gold); font-style: italic; }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::before { display: none; }
.section-head--center .kicker::after { display: none; }

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px -10px var(--ink);
}
.btn--primary:hover { background: var(--ink-soft); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--xl { padding: 20px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ───────── TOPBAR ───────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.topbar--scrolled {
  background: rgba(250, 247, 242, 0.92);
  border-bottom-color: var(--hairline);
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 32px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}
.brand__mark { display: inline-flex; }
.brand__name em { font-style: italic; font-weight: 500; }
.brand__dot { margin: 0 8px; color: var(--gold); }
.topbar__nav {
  display: flex; gap: 32px; justify-content: center;
  font-size: 13px; color: var(--text-soft);
  letter-spacing: 0.02em;
}
.topbar__nav a:hover { color: var(--ink); }

/* ───────── HERO ───────── */
.hero {
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.hero__copy {}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow__line { width: 40px; height: 1px; background: var(--gold); }
.eyebrow__sep { color: var(--text-faint); }

.hero__ctaRow {
  display: flex; align-items: center; gap: 28px;
  margin: 8px 0 24px;
}
.hero__trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-soft); line-height: 1.3;
}
.trust__stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 14px; }
.trust__text span { color: var(--text-faint); }

.hero__strip {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-soft);
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
}
.hero__strip li { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__mediaInner {
  width: 78%;
  filter: drop-shadow(0 30px 60px rgba(20, 30, 50, 0.18));
  transform: rotate(-2deg);
}
.hero__mediaInner img { width: 100%; }
.hero__badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  color: var(--ink);
}
.hero__badge__top, .hero__badge__bot {
  font-family: var(--sans);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft);
}
.hero__badge__big {
  font-style: italic;
  font-size: 28px; line-height: 1;
  margin: 2px 0;
}
.hero__floatNote {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 14px 18px;
  display: flex; gap: 12px; align-items: center;
  border-radius: 2px;
}
.hero__floatNote__num {
  font-family: var(--serif);
  font-size: 36px; font-style: italic;
  color: var(--gold); line-height: 1;
}
.hero__floatNote__txt {
  font-size: 11px; line-height: 1.35; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.hero__rule {
  margin: 80px 32px 0;
  border-top: 1px solid var(--hairline-soft);
}

/* ───────── PAIN ───────── */
.pain { padding: 100px 0; }
.pain__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.pain__card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  transition: background 0.3s;
}
.pain__card:hover { background: var(--bg-card); }
.pain__num {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 22px;
}
.pain__title {
  font-family: var(--serif);
  color: var(--ink); font-size: 24px; line-height: 1.15;
  margin-top: auto;
}
.pain__sub { color: var(--text-soft); font-size: 14px; line-height: 1.5; }

.pain__bridge {
  margin-top: 64px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.pain__bridgeRule {
  width: 1px; height: 48px; background: var(--gold);
}
.pain__bridge p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4;
  color: var(--ink); max-width: 30ch; margin: 0;
}
.pain__bridge strong { font-style: normal; color: var(--gold); font-weight: 500; }

/* ───────── BIG IDEA ───────── */
.bigidea { padding: 100px 0; background: var(--bg-warm); }
.bigidea__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.bigidea__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background: #d8cfbf;
}
.bigidea__media img { width: 100%; height: 100%; object-fit: cover; }
.bigidea__caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.bigidea__pillars {
  display: flex; flex-direction: column; gap: 22px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.pillar {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 20px; align-items: start;
}
.pillar__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.pillar__t {
  font-family: var(--serif); font-size: 19px; color: var(--ink);
  margin-bottom: 2px;
}
.pillar__s { font-size: 14px; color: var(--text-soft); }

/* ───────── HOW IT WORKS ───────── */
.how { padding: 110px 0; }
.how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.how__card { display: flex; flex-direction: column; }
.how__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-warm);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 2px;
}
.how__media img { width: 100%; height: 100%; object-fit: cover; }
.how__num {
  position: absolute; top: 16px; left: 16px;
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--ink); font-size: 18px;
}
.how__title {
  font-family: var(--serif); font-size: 26px; color: var(--ink);
  margin: 0 0 10px;
}
.how__desc { color: var(--text-soft); font-size: 15px; margin: 0; max-width: 32ch; }

/* ───────── TESTIMONIALS ───────── */
.quotes { padding: 100px 0; background: var(--bg-warm); }
.quotes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  background: var(--bg);
  padding: 36px 32px;
  margin: 0;
  position: relative;
  border-radius: 2px;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 8px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 500;
}
.quote figcaption { padding-top: 16px; border-top: 1px solid var(--hairline-soft); }
.quote__name { font-size: 14px; color: var(--ink); font-weight: 500; }
.quote__role { font-size: 12px; color: var(--text-soft); letter-spacing: 0.04em; }

/* ───────── OFFER ───────── */
.offer { padding: 110px 0; }
.offer__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 64px; align-items: center;
}
.offer__media { display: flex; flex-direction: column; gap: 24px; }
.offer__stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: background 0.4s;
}
.offer__stage--ebook { background: linear-gradient(135deg, #ebe4d6, #f4eee4); }
.offer__stage--printed { background: linear-gradient(135deg, #e3dccd, #efe7d7); }
.offer__hero {
  width: 78%;
  filter: drop-shadow(0 30px 50px rgba(20, 30, 50, 0.22));
}
.offer__stage--ebook .offer__hero {
  width: 100%;
}
.offer__toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
}
.offer__toggleBtn {
  background: transparent; border: 0;
  padding: 14px 18px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--text-soft);
  transition: background 0.25s, color 0.25s;
  font-size: 14px;
  font-weight: 500;
}
.offer__toggleBtn .offer__toggleIcon { color: currentColor; }
.offer__toggleBtn:first-child { border-right: 1px solid var(--hairline); }
.offer__toggleBtn.is-active { background: var(--ink); color: #fff; }
.offer__toggleNote {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.offer__toggleBtn:not(.is-active):hover { background: var(--bg-warm); color: var(--ink); }

.offer__panel {
  padding: 8px 0;
}
.offer__title { margin-bottom: 8px; }
.offer__sub {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 0.5em;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.offer__list {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.offer__list li {
  font-size: 15px;
  display: flex; align-items: flex-start; gap: 12px;
  color: #333;
}
.ico--check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 4px;
  vertical-align: middle;
}

.price {
  background: var(--bg-warm);
  padding: 24px 28px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid var(--hairline-soft);
}
.price__row {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 8px;
}
.price__crossed {
  color: var(--text-faint);
  text-decoration: line-through;
  font-size: 16px;
}
.price__tag {
  display: inline-flex; align-items: baseline; color: var(--ink);
}
.price__cur {
  font-size: 16px;
  font-family: var(--serif);
  margin-right: 4px;
}
.price__big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
}
.price__cents { font-size: 18px; margin-left: 2px; color: var(--ink-soft); }
.price__line { font-size: 14px; color: #333; margin-bottom: 4px; }
.price__line strong { color: var(--ink); font-weight: 500; }
.price__hint {
  font-size: 12px; color: var(--text-soft);
  font-style: italic;
  font-family: var(--serif);
  margin-top: 8px;
}

.offer__footRow {
  margin-top: 18px;
  display: flex; gap: 22px; flex-wrap: wrap;
  justify-content: center;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.offer__footItem {
  display: inline-flex; align-items: center; gap: 6px;
}
.offer__footItem svg { color: var(--ink); }

/* ───────── GUARANTEE ───────── */
.guarantee { padding: 80px 0; background: var(--bg-warm); }
.guarantee__inner {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 48px; align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.guarantee__seal { color: var(--gold); }
.guarantee__copy p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 16px;
}
.guarantee__signature {
  font-family: var(--serif); font-style: italic;
  color: var(--gold);
  font-size: 16px;
}

/* ───────── FAQ ───────── */
.faq { padding: 110px 0; }
.faq__list {
  max-width: 780px; margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__q {
  width: 100%; background: transparent; border: 0;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  line-height: 1.3;
}
.faq__icon {
  font-size: 24px;
  color: var(--gold);
  width: 28px; text-align: center;
  font-family: var(--sans);
  font-weight: 300;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.2,.8,.2,1), padding 0.4s;
}
.faq__a p {
  margin: 0; padding-bottom: 28px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
.faq__item.is-open .faq__a { max-height: 320px; }

/* ───────── FINAL CTA ───────── */
.finalcta {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.finalcta__inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.finalcta__ornament { color: var(--gold-soft); margin-bottom: 12px; }
.finalcta .display { color: #fff; }
.finalcta .display em { color: var(--gold-soft); }
.finalcta .btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
}
.finalcta .btn--primary:hover { background: var(--gold-soft); }
.finalcta__note {
  font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ───────── FOOTER ───────── */
.footer {
  background: #0F1F35;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 40px;
  font-size: 13px;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
}
.footer__brand em { color: var(--gold-soft); }
.footer__copy {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  max-width: 40ch;
  line-height: 1.5;
}
.footer__meta { text-align: right; line-height: 1.8; }
.footer__legal a:hover { color: #fff; }

/* ───────── STICKY ───────── */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--hairline);
  padding: 12px 20px;
  animation: stickyIn 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes stickyIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.sticky__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sticky__price {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--ink);
}
.sticky__priceCur { font-size: 14px; font-family: var(--serif); }
.sticky__priceBig {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; line-height: 1;
}
.sticky__priceMeta {
  font-size: 11px; color: var(--text-soft);
  line-height: 1.3;
  margin-left: 8px;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 960px) {
  .hero__grid, .bigidea__grid, .offer__grid { grid-template-columns: 1fr; gap: 48px; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid, .quotes__grid { grid-template-columns: 1fr; }
  .topbar__nav { display: none; }
  .topbar__inner { grid-template-columns: 1fr auto; }
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__meta { text-align: left; }
  .container { padding: 0 24px; }
  .pain, .bigidea, .how, .quotes, .offer, .faq, .finalcta { padding: 72px 0; }
}
@media (max-width: 560px) {
  .pain__grid { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 16px; }
  .hero__ctaRow { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sticky__priceMeta { display: none; }
  .price__big { font-size: 52px; }
}
