/* ============================================================
   RR MASTERY — Empire Blueprint Theme
   Design language adapted from top-converting WarriorPlus
   pages (Kuron / KDP-FE / PLR Launch / DFY Fortune):
   - Deep ink hero + alternating dark/light sections
   - Gold accent on ink (premium "blueprint" feel)
   - Display serif headlines, mono eyebrow labels
   - No product-image or video slots — copy-forward design
   ============================================================ */

:root {
  --ink: #0A0F1C;        /* hero / dark sections */
  --ink-2: #0E1526;      /* raised dark cards */
  --ink-3: #131C33;      /* hover states */
  --line-dark: rgba(233, 185, 73, 0.16);
  --line-dark-soft: rgba(255, 255, 255, 0.07);
  --paper: #FAF6EC;      /* light sections */
  --paper-2: #F3EDDD;    /* raised light cards */
  --paper-line: rgba(10, 15, 28, 0.10);
  --gold: #E9B949;
  --gold-2: #F7D47E;
  --gold-deep: #C8932B;
  --emerald: #3ECF8E;
  --red: #F07878;
  --body-dark: #C7CFE0;
  --muted-dark: #8A95AD;
  --body-light: #3A3F4C;
  --muted-light: #6A7284;
  --head-dark: #F5F2E9;
  --head-light: #141A2B;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 20px 50px -18px rgba(10, 15, 28, 0.25);
  --shadow-glow: 0 0 0 1px rgba(233, 185, 73, 0.35), 0 18px 55px -12px rgba(233, 185, 73, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(233, 185, 73, 0.35); }

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

/* ---------- Scroll progress bar (Kuron pattern) ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-2));
  z-index: 1000;
  box-shadow: 0 0 12px rgba(233, 185, 73, 0.6);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
em.accent { font-style: italic; color: var(--gold-deep); }
.dark em.accent { color: var(--gold-2); }

.section { padding: 96px 0; position: relative; }
.section.dark { background: var(--ink); color: var(--body-dark); }
.section.paper { background: var(--paper); color: var(--body-light); }

.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 18px 0 16px; }
.dark .section-head h2 { color: var(--head-dark); }
.paper .section-head h2 { color: var(--head-light); }
.section-head p.lead { font-size: 18.5px; color: var(--muted-light); }
.dark .section-head p.lead { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn-wrap { text-align: center; margin-top: 34px; }
.btn-wrap .btn-sub { margin-top: 14px; font-size: 13.5px; }
.dark .btn-wrap .btn-sub, .paper .btn-wrap .btn-sub { color: var(--muted-dark); }
.wplus-btn { display: inline-block; transition: transform .18s ease, filter .18s ease; }
.wplus-btn:hover { transform: translateY(-3px) scale(1.02); filter: drop-shadow(0 14px 30px rgba(233,185,73,.45)); }
.wplus-btn img { margin: 0 auto; }

.pulse-ring { position: relative; display: inline-block; }
.pulse-ring::after {
  content: ""; position: absolute; inset: -7px; border-radius: 14px;
  border: 2px solid var(--gold); opacity: .6;
  animation: pulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.07); opacity: 0; }
  100% { transform: scale(1.07); opacity: 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  background-image:
    radial-gradient(1000px 520px at 78% -8%, rgba(233, 185, 73, 0.14), transparent 60%),
    radial-gradient(800px 480px at 8% 108%, rgba(62, 207, 142, 0.08), transparent 60%),
    linear-gradient(rgba(233, 185, 73, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 185, 73, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  color: var(--body-dark);
  padding: 150px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,15,28,0) 55%, var(--ink) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid var(--line-dark); background: rgba(233,185,73,.06);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 30px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  color: var(--head-dark);
  max-width: 900px;
}
.hero h1 em { color: var(--gold-2); }
.hero .sub { font-size: clamp(17px, 2vw, 20px); max-width: 720px; margin-top: 26px; color: var(--body-dark); }

.hero-list { margin-top: 40px; display: grid; gap: 14px; max-width: 780px; }
.hero-list li {
  list-style: none; display: flex; gap: 14px; align-items: flex-start;
  font-size: 16.5px; color: var(--head-dark);
}
.hero-list .tick {
  flex: 0 0 auto; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  background: rgba(233,185,73,.12); border: 1px solid rgba(233,185,73,.4);
  display: grid; place-items: center;
}
.hero-list .tick svg { width: 13px; height: 13px; stroke: var(--gold-2); }
.hero-list li small { display: block; color: var(--muted-dark); font-size: 14.5px; font-weight: 400; }

/* ---------- Trust marquee (Kuron/KDP pattern) ---------- */
.marquee {
  background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  padding: 16px 0; overflow: hidden; position: relative;
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 36s linear infinite; }
.marquee-track span {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2); white-space: nowrap; padding: 0 28px; display: flex; align-items: center; gap: 10px;
}
.marquee-track span::after { content: "★"; color: var(--gold); font-size: 11px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Check / cross lists ---------- */
.check-list { display: grid; gap: 13px; }
.check-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.check-list .ic {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%;
  display: grid; place-items: center;
}
.check-list .ic svg { width: 12px; height: 12px; }
.check-list.green .ic { background: rgba(62,207,142,.14); border: 1px solid rgba(62,207,142,.5); }
.check-list.green .ic svg { stroke: var(--emerald); }
.check-list.red .ic { background: rgba(240,120,120,.12); border: 1px solid rgba(240,120,120,.5); }
.check-list.red .ic svg { stroke: var(--red); }

/* ---------- Big quote / pain block ---------- */
.pain { max-width: 780px; }
.pain p { font-size: 20px; line-height: 1.7; margin-bottom: 26px; color: var(--body-light); }
.pain p strong { color: var(--head-light); }
.pain p.punch { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3.4vw, 34px); color: var(--head-light); line-height: 1.2; }
.pain p.punch em { color: var(--gold-deep); }

/* ---------- Pull quote (Dan Kennedy pattern) ---------- */
.pullquote {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "\201C"; position: absolute; top: -30px; left: 4%;
  font-family: var(--font-head); font-size: 240px; line-height: 1;
  color: rgba(233,185,73,.08); pointer-events: none;
}
.pullquote p {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(22px, 3.4vw, 32px); font-weight: 600;
  color: var(--head-dark); line-height: 1.35; max-width: 900px;
}
.pullquote p em { color: var(--gold-2); }
.pullquote .pq-sig {
  display: block; margin-top: 22px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-2);
}

/* ---------- Old vs New comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow-card);
}
.dark .card { background: rgba(255,255,255,.03); border: 1px solid var(--line-dark-soft); backdrop-filter: blur(8px); }
.card h3 { font-size: 22px; margin-bottom: 22px; }
.card.bad h3 { color: var(--red); }
.card.good h3 { color: var(--emerald); }
.dark .card h3.bad-h { color: var(--red); }
.dark .card h3.good-h { color: var(--emerald); }
.dark .card .check-list li { color: var(--body-dark); }

/* ---------- Introducing block ---------- */
.intro-stamp {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid rgba(200,147,43,.45); border-radius: 8px;
  display: inline-block; padding: 8px 16px; transform: rotate(-1.5deg);
  background: rgba(233,185,73,.08); margin-bottom: 28px;
}
.intro h2 { font-size: clamp(34px, 5vw, 54px); color: var(--head-light); }
.intro h2 .byline { display: block; font-family: var(--font-mono); font-size: 15px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-light); margin-top: 14px; font-weight: 400; }
.intro-body { max-width: 820px; font-size: 18px; margin-top: 26px; }
.intro-body p { margin-bottom: 20px; }
.intro-body strong { color: var(--head-light); }

/* "No need" strip */
.no-need {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 44px;
}
.no-need span {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em;
  color: var(--muted-dark); border: 1px solid var(--line-dark-soft);
  padding: 9px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.no-need span::before { content: "✕"; color: var(--red); }
.dark .no-need span { color: var(--muted-dark); }
.no-need .free::before { content: "✓"; color: var(--emerald); }

/* ---------- Journey timeline (blueprint style) ---------- */
.journey { position: relative; }
.journey::before {
  content: ""; position: absolute; left: 26px; top: 12px; bottom: 12px; width: 1px;
  background: linear-gradient(180deg, var(--gold-deep), rgba(233,185,73,.1));
}
.stage { position: relative; padding-left: 86px; padding-bottom: 58px; max-width: 860px; }
.stage:last-child { padding-bottom: 0; }
.stage .num {
  position: absolute; left: 0; top: 0;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 17px; font-weight: 700; color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  box-shadow: 0 0 0 6px var(--ink), 0 0 24px rgba(233,185,73,.35);
}
.stage h3 { font-size: 25px; color: var(--head-dark); margin-bottom: 12px; }
.stage .stage-tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); display: block; margin-bottom: 8px;
}
.stage p { color: var(--body-dark); max-width: 720px; }
.stage p + p { margin-top: 12px; }

/* ---------- Fit / no-fit ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card { padding: 38px 34px; border-radius: var(--radius); }
.fit-card.yes { background: rgba(62,207,142,.07); border: 1px solid rgba(62,207,142,.35); }
.fit-card.no { background: rgba(240,120,120,.05); border: 1px solid rgba(240,120,120,.3); }
.fit-card h3 { font-size: 21px; margin-bottom: 20px; }
.fit-card.yes h3 { color: #2BA876; }
.fit-card.no h3 { color: var(--red); }
.fit-card .check-list li { color: var(--body-light); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 34px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-dark-soft);
}
.stat .big { font-family: var(--font-head); font-weight: 900; font-size: clamp(34px, 4vw, 48px); color: var(--gold-2); line-height: 1; }
.stat .lbl { margin-top: 12px; font-size: 13.5px; color: var(--muted-dark); line-height: 1.45; }

/* ---------- Value stack ---------- */
.stack { max-width: 860px; margin-inline: auto; }
.stack-row {
  display: flex; align-items: baseline; gap: 20px; justify-content: space-between;
  padding: 20px 6px; border-bottom: 1px dashed var(--paper-line);
}
.stack-row .item { display: flex; gap: 16px; align-items: flex-start; }
.stack-row .item .star { color: var(--gold-deep); font-size: 15px; margin-top: 3px; flex: 0 0 auto; }
.stack-row h4 { font-family: var(--font-head); font-size: 19px; color: var(--head-light); font-weight: 700; }
.stack-row p { font-size: 15px; color: var(--muted-light); margin-top: 3px; max-width: 600px; }
.stack-row .price { font-family: var(--font-mono); font-size: 15px; color: var(--head-light); white-space: nowrap; }
.stack-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 26px; padding: 26px 28px; border-radius: var(--radius);
  background: var(--ink); color: var(--head-dark);
}
.stack-total .lbl { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.stack-total .amt { font-family: var(--font-head); font-weight: 900; font-size: 26px; }
.stack-total .amt strike { color: var(--muted-dark); font-weight: 400; font-size: 20px; }

/* ---------- Bonus cards ---------- */
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bonus {
  position: relative; padding: 36px 32px 32px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-dark-soft);
  transition: transform .2s ease, border-color .2s ease;
}
.bonus:hover { transform: translateY(-4px); border-color: var(--line-dark); }
.bonus .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 16px; font-weight: 700;
}
.bonus h4 { font-size: 21px; color: var(--head-dark); margin-bottom: 10px; }
.bonus p { font-size: 15px; color: var(--body-dark); }
.bonus .val { font-family: var(--font-mono); font-size: 13.5px; color: var(--gold-2); margin-top: 16px; display: block; }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 620px; margin-inline: auto; text-align: center;
  background: var(--ink); color: var(--head-dark);
  border-radius: 22px; padding: 52px 44px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 260px at 50% -20%, rgba(233,185,73,.22), transparent 65%),
    linear-gradient(rgba(233,185,73,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,185,73,.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
}
.pricing-card > * { position: relative; }
.pricing-card .pc-label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); }
.pricing-card .pc-title { font-size: clamp(24px, 3.4vw, 32px); margin-top: 14px; }
.pricing-card .pc-price { margin: 26px 0 6px; }
.pricing-card .pc-price .was { font-size: 21px; color: var(--muted-dark); text-decoration: line-through; }
.pricing-card .pc-price .now { font-family: var(--font-head); font-weight: 900; font-size: clamp(58px, 8vw, 84px); line-height: 1; color: var(--gold-2); text-shadow: 0 0 40px rgba(233,185,73,.4); }
.pricing-card .pc-price .now small { font-size: 22px; }
.pricing-card .pc-perks { margin-top: 20px; display: grid; gap: 9px; }
.pricing-card .pc-perks li { list-style: none; font-size: 15px; color: var(--body-dark); display: flex; gap: 10px; justify-content: center; align-items: center; }
.pricing-card .pc-perks svg { width: 14px; height: 14px; stroke: var(--emerald); }
.pricing-card .pc-note { margin-top: 20px; font-size: 13.5px; color: var(--muted-dark); }
.pricing-lock { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.pricing-lock span { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); display: inline-flex; gap: 8px; align-items: center; }
.pricing-lock span::before { content: "●"; color: var(--emerald); font-size: 9px; }

/* ---------- Urgency panel ---------- */
.urgency {
  max-width: 860px; margin: 56px auto 0; text-align: center;
  border: 1px dashed rgba(240,120,120,.5); border-radius: var(--radius);
  padding: 34px 30px; background: rgba(240,120,120,.05);
}
.urgency h4 { font-family: var(--font-head); font-size: 22px; color: var(--head-light); margin-bottom: 10px; }
.urgency p { font-size: 15.5px; color: var(--muted-light); max-width: 620px; margin-inline: auto; }
.urgency .countdown { font-family: var(--font-mono); font-size: clamp(26px, 4vw, 34px); color: var(--red); font-weight: 700; margin-top: 16px; letter-spacing: .05em; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  border: 1px solid var(--line-dark-soft); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); overflow: hidden; transition: border-color .2s;
}
.faq details[open] { border-color: var(--line-dark); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-size: 18.5px; font-weight: 700; color: var(--head-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { font-family: var(--font-mono); color: var(--gold-2); font-size: 22px; transition: transform .2s; flex: 0 0 auto; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 26px 22px; font-size: 15.5px; color: var(--body-dark); }
.faq .answer p { margin-bottom: 12px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Closing CTA ---------- */
.finale { text-align: center; }
.finale h2 { font-size: clamp(32px, 5vw, 52px); color: var(--head-light); }
.finale p { max-width: 700px; margin: 22px auto 0; font-size: 18px; color: var(--muted-light); }
.finale p strong { color: var(--head-light); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink); color: var(--muted-dark);
  padding: 64px 0 110px; border-top: 1px solid var(--line-dark);
}
footer .f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
footer h4 { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
footer p, footer li { font-size: 14.5px; }
footer li { list-style: none; margin-bottom: 9px; }
footer a { color: var(--body-dark); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--gold-2); }
footer .disc { font-size: 12.5px; line-height: 1.7; color: var(--muted-dark); border-top: 1px solid var(--line-dark-soft); padding-top: 26px; }
footer .disc a { color: var(--gold-2); }

/* ---------- Sticky mobile CTA (DFY pattern) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 20px;
  background: rgba(10, 15, 28, 0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
}
.sticky-cta .price { font-family: var(--font-head); color: var(--head-dark); line-height: 1.1; }
.sticky-cta .price .was { font-size: 13px; color: var(--muted-dark); text-decoration: line-through; display: block; }
.sticky-cta .price .now { font-size: 22px; font-weight: 900; color: var(--gold-2); }
.sticky-cta a img { height: 52px; width: auto; }

/* ---------- Sub pages ---------- */
.sub-hero { background: var(--ink); padding: 120px 0 54px; border-bottom: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.sub-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 80% -10%, rgba(233,185,73,.12), transparent 60%); pointer-events: none; }
.sub-hero .container { position: relative; }
.sub-hero h1 { font-size: clamp(30px, 4.4vw, 46px); color: var(--head-dark); margin-top: 16px; }
.sub-hero p { color: var(--muted-dark); margin-top: 12px; max-width: 640px; }
.sub-body { max-width: 820px; margin-inline: auto; padding: 64px 0 90px; }
.sub-body h2 { font-size: 24px; color: var(--head-light); margin: 40px 0 14px; }
.sub-body h2:first-child { margin-top: 0; }
.sub-body p { margin-bottom: 16px; font-size: 16px; }
.sub-body ul { margin: 0 0 18px 4px; display: grid; gap: 8px; }
.sub-body ul li { list-style: none; padding-left: 26px; position: relative; }
.sub-body ul li::before { content: "→"; position: absolute; left: 4px; color: var(--gold-deep); font-family: var(--font-mono); }
.sub-body .box { background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: var(--radius-sm); padding: 24px 26px; margin: 22px 0; }
.sub-body .box h3 { font-size: 18px; color: var(--head-light); margin-bottom: 10px; }
.sub-body .updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 8px; }
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 950;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4%; background: rgba(10,15,28,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.topbar .brand { font-family: var(--font-head); font-weight: 900; font-size: 19px; color: var(--head-dark); text-decoration: none; letter-spacing: .01em; }
.topbar .brand em { color: var(--gold-2); }
.topbar nav { display: flex; gap: 24px; }
.topbar nav a { font-size: 13.5px; color: var(--body-dark); text-decoration: none; letter-spacing: .04em; }
.topbar nav a:hover { color: var(--gold-2); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 70px; }
  .compare, .fit-grid, .bonus-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .journey::before { left: 22px; }
  .stage { padding-left: 72px; }
  .stage .num { width: 46px; height: 46px; font-size: 15px; }
  .pricing-card { padding: 42px 26px; }
  footer .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar nav { display: none; }
  .sticky-cta { display: flex; }
  .stack-row { flex-direction: column; gap: 6px; }
  .stack-row .price { align-self: flex-start; }
  .wplus-btn img { height: auto; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card, .fit-card, .bonus { padding: 28px 22px; }
}
