/* ═══════════════════════════════════════════════════════════════
   OVERCOMING ANXIETY — LANDING PAGE
   Atlas-style premium DTC layout · inherits tokens from ebook-styles.css
   ═══════════════════════════════════════════════════════════════ */

/* ───────── Page reset (overrides ebook body for landing context) ───────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(at 15% 8%, rgba(232, 168, 73, 0.10) 0px, transparent 55%),
    radial-gradient(at 85% 35%, rgba(184, 92, 58, 0.06) 0px, transparent 50%),
    radial-gradient(at 50% 90%, rgba(201, 116, 43, 0.05) 0px, transparent 60%);
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--amber-deep); text-decoration: none; }
a:hover { color: var(--terracotta); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.center { text-align: center; }

/* ───────── Sticky top bar ───────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 233, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.topbar.scrolled {
  box-shadow: 0 4px 24px rgba(74, 55, 41, 0.10);
  border-bottom-color: var(--rule-soft);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--honey) 0%, var(--amber) 70%, var(--amber-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(184, 92, 58, 0.25);
  overflow: hidden;
}
.topbar-logo img { width: 100%; height: 100%; object-fit: cover; }
.topbar-wordmark {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink);
  font-weight: 700;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.topbar-price {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
}
.topbar-price strong { color: var(--amber-deep); font-style: normal; font-weight: 700; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 12px; letter-spacing: 0.1em; }

/* ───────── Buttons ───────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 45%, var(--amber-deep) 100%);
  border-radius: 999px;
  box-shadow:
    0 2px 0 rgba(156, 84, 24, 0.4) inset,
    0 8px 22px rgba(184, 92, 58, 0.28),
    0 2px 6px rgba(184, 92, 58, 0.18);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 2px 0 rgba(156, 84, 24, 0.4) inset, 0 12px 28px rgba(184, 92, 58, 0.32); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-primary.btn-lg { padding: 20px 38px; font-size: 17px; }
.btn-primary .arrow { transition: transform 0.15s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
}
.btn-ghost:hover { color: var(--amber-deep); }

/* ───────── Hero ───────── */
.hero {
  padding: 56px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-left {
  position: relative;
}
.hero-product-frame {
  position: relative;
  background:
    radial-gradient(at 30% 20%, rgba(232, 168, 73, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, #fdf6e9 0%, #f4e4c1 100%);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--rule-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 60px rgba(74, 55, 41, 0.12),
    0 10px 30px rgba(74, 55, 41, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hero-product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(74, 55, 41, 0.06);
  border-radius: 18px;
}
.hero-product-main {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(74, 55, 41, 0.22)) saturate(1.04);
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.hero-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: center;
}
.hero-thumb {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--rule-soft);
  padding: 0;
  background: linear-gradient(160deg, #fdf6e9 0%, #f4e4c1 100%);
  transition: border-color 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.hero-thumb:hover { transform: translateY(-2px); border-color: var(--amber); }
.hero-thumb.active { border-color: var(--amber-deep); box-shadow: 0 0 0 2px rgba(201, 116, 43, 0.15); }

.hero-right { padding-right: 8px; }

.eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-deep);
  margin: 0 0 22px;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero h1 em { font-style: italic; color: var(--amber-deep); font-weight: 400; }

.hero-subhead {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-weight: 400;
}

ul.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
ul.hero-bullets li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--rule);
}
ul.hero-bullets li:last-child { border-bottom: none; }
ul.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--amber));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(184, 92, 58, 0.25);
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 8px;
}
.price-now {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--amber-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-was {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
}
.price-note {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.price-note strong {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: rgba(232, 168, 73, 0.18);
  color: var(--amber-deep);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}
.price-final {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 22px;
  font-weight: 500;
}
.price-final-amount {
  color: var(--amber-deep);
  font-weight: 700;
  font-size: 19px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.trust-line {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

/* ───────── Trust strip ───────── */
.trust-strip {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 168, 73, 0.06) 100%);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 36px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip-inner span::before { content: "✓"; color: var(--amber); font-weight: 700; }
.trust-divider {
  color: var(--amber);
  opacity: 0.6;
}

/* ───────── Generic section ───────── */
.section {
  padding: 96px 0;
}
.section-narrow { max-width: 760px; margin: 0 auto; }
.section-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 500;
}
.section-heading em { font-style: italic; color: var(--amber-deep); font-weight: 400; }
.section-sub {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 21px;
  color: var(--muted);
  margin: 0 0 48px;
  line-height: 1.5;
}

/* ───────── Problem section ───────── */
.problem .container { max-width: 780px; }
.problem .section-heading { text-align: center; }
.problem-paragraphs p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.problem-paragraphs p::first-line { font-weight: 500; }

.pull-quote-soft {
  margin: 60px -20px;
  padding: 56px 50px;
  text-align: center;
  background:
    radial-gradient(at 30% 20%, rgba(232, 168, 73, 0.18) 0%, transparent 60%),
    radial-gradient(at 80% 80%, rgba(184, 92, 58, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #fdf6e9 0%, #f4e4c1 100%);
  border-radius: 14px;
  border: 1px solid var(--rule-soft);
  position: relative;
}
.pull-quote-soft p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

/* ───────── Solution section ───────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-grid .solution-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 20px 50px rgba(74, 55, 41, 0.12);
}
.solution-grid .solution-image img {
  width: 100%; height: auto; display: block;
  filter: saturate(1.05);
}
.solution-body p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.solution-body p em { color: var(--amber-deep); }

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.outcome-list li {
  padding: 16px 0 16px 50px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--rule);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}
.outcome-list li:last-child { border-bottom: none; }
.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, var(--honey) 0%, var(--amber) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(184, 92, 58, 0.22);
}
.outcome-list li::after {
  content: "✦";
  position: absolute;
  left: 0;
  top: 19px;
  width: 28px;
  height: 28px;
  color: #fff;
  text-align: center;
  line-height: 28px;
  font-size: 12px;
}

/* ───────── What's inside ───────── */
.whats-inside { background: linear-gradient(180deg, transparent 0%, rgba(232, 168, 73, 0.05) 100%); }
.whats-inside .section-heading { text-align: center; }
.whats-inside .section-sub { text-align: center; }

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.chapter-col h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--amber-deep);
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.chapter-col h3::before { content: ""; }

.chapter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chapter-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.chapter-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--honey);
  font-size: 11px;
}
.chapter-list li strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.chapter-list li em {
  color: var(--muted);
  font-style: italic;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
}

/* ───────── Bonuses ───────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.bonus-card {
  padding: 32px 32px 28px;
  background:
    radial-gradient(at 100% 0%, rgba(232, 168, 73, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #fdf6e9 0%, #f4e4c1 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(74, 55, 41, 0.10); }
.bonus-card .bonus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--honey), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(184, 92, 58, 0.22);
}
.bonus-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px;
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 6px;
}
.bonus-card h3::before { content: ""; }
.bonus-card p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.bonus-card .bonus-tag {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--amber-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

/* ───────── Who for / Not for ───────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 600px));
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}
.who-card {
  padding: 36px 36px 32px;
  background: linear-gradient(160deg, #fdf6e9 0%, #f7ebd3 100%);
  border-radius: 12px;
  border: 1px solid var(--rule-soft);
}
.who-card.not-for {
  background: linear-gradient(160deg, rgba(122, 136, 104, 0.07) 0%, rgba(122, 136, 104, 0.03) 100%);
  border-color: rgba(122, 136, 104, 0.25);
}
.who-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px;
  font-style: normal;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 600;
}
.who-card h3::before { content: ""; }
.who-card.not-for h3 { color: var(--sage-deep); }
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-card li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.who-card.for li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--amber);
  font-weight: 700;
}
.who-card.not-for li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--sage);
  font-weight: 700;
}

/* ───────── Pricing block ───────── */
.pricing-section .container { max-width: 760px; }
.pricing-card {
  text-align: center;
  padding: 64px 56px;
  background:
    radial-gradient(at 20% 20%, rgba(232, 168, 73, 0.25) 0%, transparent 55%),
    radial-gradient(at 80% 80%, rgba(184, 92, 58, 0.10) 0%, transparent 55%),
    linear-gradient(135deg, #fdf6e9 0%, #f4e4c1 100%);
  border: 1px solid var(--amber);
  border-radius: 18px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 20px 60px rgba(184, 92, 58, 0.15);
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--terracotta), var(--honey));
  border-radius: 18px 18px 0 0;
}
.pricing-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--amber-deep);
  font-weight: 700;
  margin: 0 0 18px;
}
.pricing-card h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 36px;
  font-weight: 500;
  padding-top: 0;
}
.pricing-card h2::before { display: none; }
.pricing-card h2 em { font-style: italic; color: var(--amber-deep); font-weight: 400; }

.pricing-numbers {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}
.pricing-was {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 26px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
}
.pricing-now {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--amber-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-promo {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.pricing-promo strong {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: rgba(232, 168, 73, 0.18);
  color: var(--amber-deep);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 4px;
}
.pricing-final {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink-soft);
  font-size: 19px;
  margin: 0 0 32px;
  font-weight: 500;
}
.pricing-final-amount {
  color: var(--amber-deep);
  font-weight: 700;
  font-size: 24px;
}
.pricing-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.pricing-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ───────── FAQ ───────── */
.faq .container { max-width: 760px; }
.faq .section-heading { text-align: center; }

.faq-list { margin-top: 12px; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--amber);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--amber-deep); }
.faq-item[open] summary { color: var(--amber-deep); }
.faq-answer {
  padding: 0 0 26px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-answer p { margin: 0 0 14px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ───────── Crisis-line callout ───────── */
.crisis { padding: 24px 0 60px; }
.crisis .container { max-width: 760px; }
.crisis-callout {
  background: linear-gradient(135deg, rgba(122, 136, 104, 0.10) 0%, rgba(122, 136, 104, 0.04) 100%);
  border: 1px solid rgba(122, 136, 104, 0.25);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  padding: 28px 34px;
  position: relative;
}
.crisis-callout::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 44px;
  height: 44px;
  background: linear-gradient(225deg, var(--sage) 0%, var(--sage) 50%, transparent 50%);
  border-radius: 0 8px 0 44px;
  opacity: 0.35;
}
.crisis-callout .callout-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 700;
  color: var(--sage-deep);
  margin: 0 0 12px;
}
.crisis-callout p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.crisis-callout p strong { color: var(--sage-deep); }

/* ───────── Final CTA ───────── */
.final-cta {
  padding: 80px 0 110px;
  text-align: center;
  background:
    radial-gradient(at 50% 0%, rgba(232, 168, 73, 0.14) 0%, transparent 60%);
}
.final-cta .container { max-width: 720px; }
.final-cta-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 40px;
}

/* ───────── Footer ───────── */
.site-footer {
  border-top: 1px solid var(--rule-soft);
  padding: 56px 0 80px;
  background: rgba(232, 168, 73, 0.04);
}
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-logo {
  height: 38px;
  opacity: 0.8;
}
.footer-logo img { height: 100%; width: auto; display: block; filter: saturate(1.05); }
.footer-fallback {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--amber-deep);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a { color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--amber-deep); }
.footer-copy {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ───────── Mobile sticky bar ───────── */
.mobile-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(253, 246, 233, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--rule);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 40;
  box-shadow: 0 -6px 24px rgba(74, 55, 41, 0.12);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky .ms-price {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.mobile-sticky .ms-price small {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}
.mobile-sticky .btn-primary { padding: 12px 18px; font-size: 13px; }

/* ───────── Stripe checkout modal ───────── */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-modal[hidden] { display: none; }
.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
}
.checkout-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(42, 31, 23, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: panelIn 0.25s ease;
}
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule-soft);
  background: linear-gradient(180deg, #fdf6e9 0%, #f7ebd3 100%);
}
.checkout-header strong {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}
.checkout-header small {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.checkout-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(74, 55, 41, 0.06);
  color: var(--ink);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.checkout-close:hover { background: rgba(74, 55, 41, 0.14); }
.checkout-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#checkout { min-height: 420px; }
.checkout-loading,
.checkout-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.checkout-loading p, .checkout-error p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.checkout-error p { color: var(--terracotta); }
.checkout-error small {
  display: block;
  margin-top: 12px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
  max-width: 360px;
}
.spinner {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid var(--rule);
  border-top-color: var(--amber);
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body.modal-open { overflow: hidden; }

/* ───────── Success page ───────── */
.success-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 32px 120px;
  text-align: center;
}
.success-ornament {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--amber));
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 14px 36px rgba(184, 92, 58, 0.32);
}
.success-ornament.error {
  background: linear-gradient(135deg, var(--terracotta), var(--amber-deep));
  box-shadow: 0 14px 36px rgba(156, 84, 24, 0.32);
}
.success-ornament .spinner {
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
}
.success-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--amber-deep);
  font-weight: 700;
  margin: 0 0 18px;
}
.success-wrap h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 500;
}
.success-wrap h1 em { font-style: italic; color: var(--amber-deep); font-weight: 400; }
.success-lede {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 36px;
}
.success-body p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.success-cta { margin: 36px 0 14px; }
.success-cta .btn-primary { min-width: 280px; }
.success-meta {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.success-back { margin-top: 40px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-style: italic; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero-grid { gap: 48px; }
  .section-heading { font-size: 34px; }
  .chapter-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pricing-card { padding: 50px 36px; }
  .pricing-now { font-size: 54px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .topbar-inner { padding: 10px 18px; gap: 10px; }
  .topbar-logo { width: 32px; height: 32px; font-size: 15px; }
  .topbar-wordmark { font-size: 10px; letter-spacing: 0.14em; }
  .topbar-price { display: none; }
  .btn-primary.btn-sm { padding: 9px 16px; font-size: 12px; }

  .hero {
    padding: 28px 0 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-product-frame {
    padding: 6px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }
  .hero-thumbs { gap: 10px; margin-top: 14px; }
  .hero-thumb { width: 72px; height: 72px; border-radius: 8px; }
  .hero-right { padding-right: 0; }
  .hero h1 { font-size: 32px; line-height: 1.08; margin-bottom: 18px; }
  .hero-subhead { font-size: 17px; line-height: 1.55; margin-bottom: 22px; }
  ul.hero-bullets { margin: 0 0 22px; }
  ul.hero-bullets li { font-size: 15px; padding-left: 28px; padding-top: 9px; padding-bottom: 9px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 16px; }
  .price-now { font-size: 38px; }
  .price-was { font-size: 18px; }
  .price-note { font-size: 12px; }
  .btn-primary.btn-lg { width: 100%; padding: 16px 20px; font-size: 15px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn-primary { width: 100%; }
  .trust-line { font-size: 12px; line-height: 1.5; }

  .section { padding: 48px 0; }
  .section-heading { font-size: 26px; line-height: 1.18; }
  .section-sub { font-size: 16px; margin-bottom: 26px; }

  .pull-quote-soft { padding: 28px 20px; margin: 32px 0; }
  .pull-quote-soft p { font-size: 19px; line-height: 1.45; }

  .solution-grid { grid-template-columns: 1fr; gap: 28px; }
  .solution-grid .solution-image { order: -1; }
  .solution-body p { font-size: 16px; line-height: 1.65; }

  .chapter-grid { grid-template-columns: 1fr; gap: 24px; }

  .bonus-grid { grid-template-columns: 1fr; gap: 14px; }
  .bonus-card { padding: 22px 20px; }

  .who-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-card { padding: 24px 22px; }
  .who-card li { font-size: 15px; padding: 8px 0 8px 26px; }

  .pricing-card { padding: 36px 22px; border-radius: 14px; }
  .pricing-card h2 { font-size: 22px; margin-bottom: 20px; line-height: 1.22; }
  .pricing-now { font-size: 46px; }
  .pricing-was { font-size: 18px; }
  .pricing-promo { font-size: 13px; }
  .pricing-card .btn-primary.btn-lg { width: 100%; }

  .faq-item summary { font-size: 15px; padding-right: 36px; padding-top: 16px; padding-bottom: 16px; }
  .faq-answer { font-size: 15px; line-height: 1.62; }
  .faq-answer p { margin-bottom: 12px; }

  .final-cta { padding: 56px 0 92px; }
  .final-cta-text { font-size: 18px; }

  .site-footer { padding: 40px 0 100px; }

  .mobile-sticky { display: flex; }

  .checkout-panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    animation: slideUp 0.25s ease;
  }
  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .success-wrap { padding: 56px 22px 80px; }
  .success-wrap h1 { font-size: 32px; }
  .success-lede { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
