/* Palette: cool paper ground, slate ink, one clay accent reserved for the action. */
:root {
  --bg: #f5f6f4;
  --bg-alt: #eaece8;
  --ink: #17212b;
  --muted: #5b6670;
  --accent: #b8471a;
  --accent-ink: #ffffff;
  --accent-soft: #f6e6dc;
  --line: #d9ded9;
  --radius: 10px;
  --max: 900px;
  --narrow: 680px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.55; font-size: 17px; }
body.home { padding-bottom: 84px; } /* room for sticky CTA on mobile */
img, iframe { max-width: 100%; }
a { color: var(--accent); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; text-wrap: balance; }
h1, h2 { font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.1rem); line-height: 1.08; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
.btn-primary { box-shadow: 0 8px 24px rgba(184,71,26,.28); }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(184,71,26,.38); }
.guarantee blockquote { font-family: var(--display); font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.wrap.narrow { max-width: var(--narrow); }
section { padding: 56px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 600; color: var(--accent); margin-bottom: 14px; }
.lede { font-size: 1.15rem; color: var(--muted); }

/* hero + VSL */
.hero { padding-top: 48px; text-align: center; }
.hero .lede { margin: 0 auto 28px; max-width: 600px; }
.vsl { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.18); margin: 0 auto 28px; }
.vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA */
.cta { text-align: center; }
.btn { display: inline-block; font-weight: 600; text-decoration: none; border-radius: 999px; padding: 16px 30px; font-size: 1.05rem; border: 2px solid transparent; cursor: pointer; transition: transform .08s ease, box-shadow .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-secondary { background: var(--ink); color: #fff; }
.cta-note { margin: 12px 0 4px; color: var(--muted); font-size: .95rem; }
.cta-alt { color: var(--muted); font-size: .95rem; margin: 0; }

/* proof strip */
.proof { padding: 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof ul { list-style: none; margin: 0 auto; padding: 18px 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 32px; font-weight: 500; font-size: .95rem; color: var(--muted); }
.proof li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 8px; }

/* steps */
.steps ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.steps .num { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; display: grid; place-items: center; }
.steps p { color: var(--muted); margin: 0; }

/* stack */
.stack { background: var(--bg-alt); }
.stack h2 { text-align: center; margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* who */
.who h3 { margin-top: 22px; color: var(--muted); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }
ul.check, ul.dash { list-style: none; padding: 0; margin: 0; }
ul.check li, ul.dash li { padding: 8px 0 8px 30px; position: relative; border-bottom: 1px solid var(--line); }
ul.check li::before { content: "✓"; position: absolute; left: 4px; color: var(--accent); font-weight: 800; }
ul.dash li::before { content: "–"; position: absolute; left: 6px; color: var(--muted); font-weight: 800; }

/* guarantee */
.guarantee blockquote { margin: 0; padding: 26px 30px; background: #fff; border-left: 5px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.15rem; }
.guarantee blockquote footer { margin-top: 12px; color: var(--muted); font-size: .95rem; }

/* faq */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; font-weight: 600; padding: 12px 0; list-style: none; position: relative; padding-right: 32px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 8px; font-size: 1.4rem; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0 0 14px; }
.disclaimer { margin-top: 18px; font-size: .85rem; color: var(--muted); }

/* final + magnet */
.final { text-align: center; background: var(--ink); color: #fff; }
.final .lede { color: #c9d1d9; }
.final .cta-note, .final .cta-alt { color: #c9d1d9; }
.final .cta-alt a { color: #fff; }
.magnet { background: var(--bg-alt); }
.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.lead-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); }
.lead-form input, .lead-form select { display: block; width: 100%; margin-top: 6px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: #fff; color: var(--ink); }
.lead-form .hp { position: absolute; left: -9999px; }
.lead-form .fine { font-size: .8rem; color: var(--muted); margin: 12px 0 0; }

/* sticky CTA (mobile only) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(245,246,244,.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line); text-align: center; transform: translateY(110%); transition: transform .25s ease; z-index: 50; }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; max-width: 420px; }

/* footer */
.site-footer { padding: 36px 0 44px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); text-align: center; }
.site-footer p { margin: 0 0 8px; }
.site-footer a { color: var(--muted); }
.legal { font-size: .8rem; }

/* inner pages */
.page main { padding: 48px 20px 40px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

@media (min-width: 760px) {
  body.home { padding-bottom: 0; }
  .sticky-cta { display: none; }
}
@media (max-width: 560px) {
  .lead-form .row { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
}
