/* In Case Anything Happens — landing page v1
   Warm, calm, trustworthy. Mobile-first (cold FB traffic is mostly mobile).
   Palette matches the planner for brand cohesion. */

:root {
  --teal: #2f5d57;
  --teal-dark: #243b38;
  --gold: #b08d57;
  --ink: #2b2b2b;
  --muted: #5f6b66;
  --soft: #faf7f1;       /* page background */
  --cream: #f5efe3;      /* section tint */
  --mint: #eef3f1;       /* callout tint */
  --line: #ddd6c7;
  --maxw: 680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--teal-dark); line-height: 1.18; font-weight: 600; }
p { margin: 0 0 1em; }
strong { color: var(--teal-dark); }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- top bar ---- */
.topbar { border-bottom: 1px solid var(--line); background: var(--soft); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { font-family: Georgia, serif; font-size: 17px; color: var(--teal-dark); font-weight: 600; letter-spacing: .2px; }
.brand .dot { color: var(--gold); }
.topbar .trust { font-size: 13px; color: var(--muted); }

/* ---- hero ---- */
.hero { background: linear-gradient(180deg, var(--soft), var(--cream)); padding: 54px 0 40px; text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--teal); margin: 0 0 18px; font-weight: 600; }
.hero h1 { font-size: 35px; margin: 0 0 18px; }
.hero .sub { font-size: 19px; color: #3c4742; max-width: 600px; margin: 0 auto 26px; }
.hero .shot { max-width: 330px; margin: 30px auto 0; }
.hero .shot img { border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 50px -22px rgba(36,59,56,.45); }

/* ---- CTA ---- */
.cta {
  display: inline-block; background: var(--teal); color: #fff; text-decoration: none;
  font-size: 19px; font-weight: 600; padding: 17px 38px; border-radius: 8px;
  box-shadow: 0 10px 26px -10px rgba(47,93,87,.7); transition: transform .12s ease, background .12s ease;
}
.cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.cta-note { font-size: 14px; color: var(--muted); margin-top: 12px; }
.cta-wrap { text-align: center; }

/* ---- sections ---- */
section { padding: 46px 0; }
section.tint { background: var(--cream); }
section h2 { font-size: 27px; margin: 0 0 18px; }
.lead { font-size: 20px; color: #3c4742; }
.center { text-align: center; }

/* ---- the pain block ---- */
.pain p { color: #3c4742; }
.permanence {
  background: var(--mint); border-left: 4px solid var(--teal); padding: 18px 22px;
  border-radius: 4px; margin: 22px 0 0; font-size: 17px;
}
.permanence strong { color: var(--teal-dark); }

/* ---- what's inside ---- */
.inside-shot { margin: 8px 0 26px; }
.inside-shot img { border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 14px 40px -20px rgba(36,59,56,.4); }
.caption { font-size: 14px; color: var(--muted); text-align: center; margin-top: 9px; font-style: italic; }
ul.checks { list-style: none; padding: 0; margin: 0 0 18px; }
ul.checks li { padding: 9px 0 9px 32px; position: relative; border-bottom: 1px solid var(--line); font-size: 17px; }
ul.checks li:last-child { border-bottom: none; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; color: #fff; background: var(--teal);
  width: 21px; height: 21px; border-radius: 50%; font-size: 12px; line-height: 21px; text-align: center;
}

/* ---- objections ---- */
.obj { margin: 0 0 20px; }
.obj h3 { font-size: 19px; margin: 0 0 5px; color: var(--teal-dark); }
.obj p { color: #3c4742; margin: 0; }

/* ---- offer card ---- */
.offer { background: #fff; border: 2px solid var(--teal); border-radius: 14px; padding: 32px 26px; text-align: center; box-shadow: 0 20px 60px -30px rgba(36,59,56,.5); }
.offer .price { font-family: Georgia, serif; font-size: 46px; color: var(--teal-dark); margin: 6px 0 2px; }
.offer .price small { font-size: 18px; color: var(--muted); font-weight: normal; }
.offer .what { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
.offer ul { text-align: left; max-width: 380px; margin: 0 auto 24px; }
.guarantee { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: var(--muted); margin-top: 16px; }
.guarantee .seal { width: 30px; height: 30px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

/* ---- founding note (honest social proof) ---- */
.founding { background: var(--mint); border-radius: 10px; padding: 20px 22px; font-size: 16px; color: #3c4742; }
.founding strong { color: var(--teal-dark); }

/* ---- footer ---- */
footer { background: var(--teal-dark); color: #d7e0dd; padding: 34px 0; font-size: 13px; line-height: 1.55; }
footer .wrap { text-align: center; }
footer .disc { color: #aebcb8; max-width: 560px; margin: 0 auto 14px; }
footer a { color: #fff; }

.cta-sm { padding: 13px 28px; font-size: 17px; }
.cta-ghost { background: #fff; color: var(--teal); border: 2px solid var(--teal); box-shadow: none; }
.cta-ghost:hover { background: var(--mint); color: var(--teal-dark); }

/* ---- stat band ---- */
.statband { background: var(--teal-dark); color: #eaf1ef; padding: 38px 0; }
.statband .band-title { font-family: Georgia, serif; font-size: 21px; color: #fff; text-align: center; margin: 0 0 24px; }
.stats { display: grid; gap: 22px; }
.stat { text-align: center; }
.stat .num { display: block; font-family: Georgia, serif; font-size: 30px; color: #e8c98c; margin-bottom: 6px; }
.stat .lbl { display: block; font-size: 15px; color: #cbd9d5; line-height: 1.5; }
.stat em { color: #fff; font-style: italic; }
.band-foot { font-size: 11px; color: #8aa39d; text-align: center; margin: 24px 0 0; }
.statband sup { color: #8aa39d; }

/* ---- security ---- */
.security h2 { text-align: center; }
.security .lead { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- founder note ---- */
.founder { max-width: 600px; }
.founder h2 { font-size: 24px; }
.founder p { color: #3c4742; }
.founder .sign { font-family: Georgia, serif; font-style: italic; color: var(--teal-dark); margin-top: 4px; }

/* ---- value stack ---- */
.stack { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 24px; background: #fff; }
.stack-row, .stack-total { display: flex; justify-content: space-between; gap: 16px; padding: 12px 18px; font-size: 16px; }
.stack-row { border-bottom: 1px solid var(--line); }
.stack-row .v { color: var(--muted); white-space: nowrap; }
.stack-total { background: var(--mint); font-weight: 700; font-size: 18px; color: var(--teal-dark); }
.stack-total .v { color: var(--teal-dark); }

/* ---- offer + tiers ---- */
.offer { background: var(--cream); border-radius: 16px; padding: 26px 22px; }
.tiers { display: grid; gap: 16px; margin-bottom: 8px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 18px; text-align: center; }
.tier.featured { border: 2px solid var(--teal); box-shadow: 0 16px 44px -26px rgba(36,59,56,.6); }
.tier-name { font-family: Georgia, serif; font-size: 18px; color: var(--teal-dark); margin: 0 0 4px; }
.tier .price { font-family: Georgia, serif; font-size: 40px; color: var(--teal-dark); margin: 2px 0 4px; }
.tier .price s { font-size: 20px; color: #a7b0ab; }
.tier-note { font-size: 14px; color: var(--muted); margin: 0 0 16px; min-height: 38px; }
.tier .cta { display: block; }
.tier-foot { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin: 12px 0 0; }

.guarantee { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #3c4742; margin-top: 22px; line-height: 1.5; }
.guarantee .seal { flex: none; width: 38px; height: 38px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.urgency { text-align: center; font-size: 15px; color: var(--teal-dark); margin: 16px 0 0; }

/* ---- order bump (the setup/action layer add-on) ---- */
.addon { background: #fff; border: 2px dashed var(--teal); border-radius: 12px; padding: 18px 20px; margin: 22px 0 0; text-align: left; }
.addon-head { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--teal-dark); margin-bottom: 8px; }
.addon-head .addon-check { flex: none; width: 26px; height: 26px; border-radius: 6px; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; line-height: 1; }
.addon-head .addon-price { margin-left: auto; font-family: Georgia, serif; color: var(--teal); font-weight: 700; white-space: nowrap; }
.addon p { font-size: 15px; color: #3c4742; margin: 0 0 6px; }
.addon .addon-note { font-size: 13px; color: var(--muted); font-style: italic; margin: 0; }

/* ---- reviews (when seeded) ---- */
.reviews { margin-top: 30px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; margin: 14px 0; }
.review .quote { font-size: 17px; color: var(--ink); margin: 0 0 8px; }
.review .who { font-size: 14px; color: var(--muted); margin: 0; }

/* ---- sticky mobile buy bar ---- */
.sticky { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -12px rgba(0,0,0,.25); z-index: 50; padding: 10px 0; }
.sticky-in { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sticky-price { font-size: 15px; color: var(--teal-dark); }
.sticky .cta { box-shadow: none; }
body { padding-bottom: 68px; }       /* room for the sticky bar */

@media (min-width: 700px) {
  .hero h1 { font-size: 44px; }
  body { font-size: 19px; padding-bottom: 0; }
  section h2 { font-size: 31px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .tiers { grid-template-columns: 1fr 1fr; }
  .sticky { display: none; }          /* desktop: no sticky bar */
}
