:root {
  --ink: oklch(0.24 0.02 160);          /* near-black, spruce-tinted */
  --ink-soft: oklch(0.42 0.02 160);
  --paper: oklch(0.975 0.008 95);       /* warm off-white */
  --paper-deep: oklch(0.94 0.012 95);
  --brand: oklch(0.38 0.09 165);        /* deep spruce green */
  --brand-bright: oklch(0.52 0.11 165);
  --brand-whisper: oklch(0.93 0.025 165);
  --accent: oklch(0.62 0.13 75);        /* ochre, numbers only */
  --accent-deep: oklch(0.5 0.12 75);
  --line: oklch(0.86 0.015 120);
  --no: oklch(0.55 0.12 25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
.sans { font-family: 'Segoe UI', system-ui, sans-serif; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

header { padding: 20px 0; border-bottom: 1px solid var(--line); }
header .wrap { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.brand-name { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.01em; }
.brand-name a { color: inherit; text-decoration: none; }
.brand-name .mark { color: var(--brand); }
header nav { display: flex; gap: 22px; align-items: baseline; }
header nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; }
header nav a:hover { color: var(--brand); }
header nav a.now { color: var(--brand); font-weight: 600; }

.deadline { background: var(--ink); color: oklch(0.93 0.01 95); padding: 13px 0; font-size: 0.95rem; }
.deadline .wrap { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; text-align: center; }
.deadline strong { color: oklch(0.82 0.1 75); }

.hero { padding: 76px 0 56px; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  max-width: 18ch;
  font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .sub { margin-top: 22px; font-size: 1.18rem; max-width: 56ch; color: var(--ink-soft); }
.hero .sub strong { color: var(--ink); }
.cta-row { margin-top: 34px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--brand);
  color: oklch(0.97 0.01 95);
  padding: 15px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover { background: var(--brand-bright); }
.btn.ghost {
  background: transparent;
  color: var(--brand);
  outline: 1.5px solid var(--brand);
  outline-offset: -1.5px;
}
.btn.ghost:hover { background: var(--brand-whisper); }
.cta-row .quiet { font-size: 0.92rem; color: var(--ink-soft); max-width: 34ch; }

section { padding: 64px 0; }
section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.2; max-width: 30ch; margin-bottom: 14px; }
section .lede { color: var(--ink-soft); max-width: 64ch; font-size: 1.08rem; }
section .lede strong { color: var(--ink); }

/* ---- steps (how it works) ---- */
.how { background: var(--paper-deep); }
.steps { margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step .n {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); max-width: 60ch; }

/* ---- verdict preview cards (amount-free, info page) ---- */
.verdicts { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; align-items: stretch; }
.verdict { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.verdict .k { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.verdict .headline { font-size: 1.5rem; font-weight: 700; line-height: 1.25; }
.verdict .headline .money { color: var(--accent-deep); }
.verdict p { color: var(--ink-soft); font-size: 0.98rem; }
.verdict .foot { margin-top: auto; padding-top: 10px; font-size: 0.88rem; color: var(--ink); border-top: 1px solid var(--line); }

/* ---- five year module ---- */
.fivey .box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fivey .calc { background: var(--brand-whisper); border-radius: 8px; padding: 34px 32px; }
.fivey .calc .label { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.fivey .calc .peryr { font-size: 2rem; font-weight: 700; color: var(--ink); margin-top: 4px; font-variant-numeric: tabular-nums; }
.fivey input[type="range"] { width: 100%; margin: 22px 0 10px; accent-color: var(--brand); }
.fivey .calc .total { font-size: 3rem; font-weight: 700; color: var(--brand); line-height: 1.1; font-variant-numeric: tabular-nums; }
.fivey .calc .totallabel { color: var(--ink-soft); font-size: 0.95rem; margin-top: 2px; }
.fivey .why p { color: var(--ink-soft); margin-top: 14px; max-width: 48ch; }
.fivey .why p strong { color: var(--ink); }

/* ---- pricing (revealed post-qualification only) ---- */
.pricing { background: var(--paper-deep); }
.tierline { margin-top: 10px; font-size: 1.25rem; max-width: 44ch; font-weight: 700; }
.tierline .a { color: var(--ink-soft); font-weight: 400; }
.plans { margin-top: 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 34px; max-width: 820px; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; display: flex; flex-direction: column; position: relative; padding-top: 14px; }
.plan.reco { border: 2px solid var(--brand); }
.plan .tab { position: absolute; top: -17px; left: 50%; transform: translateX(-50%); padding: 8px 24px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; white-space: nowrap; background: var(--brand-whisper); color: var(--brand); border: 1.5px solid var(--brand); }
.plan.reco .tab { background: var(--brand); color: oklch(0.97 0.01 95); border-color: var(--brand); }
.plan .top { padding: 26px 28px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.plan .top .price { font-size: 3rem; font-weight: 700; line-height: 1.05; font-variant-numeric: tabular-nums; color: var(--ink); }
.plan.reco .top .price { color: var(--brand); }
.plan .top .price span { font-size: 1rem; font-weight: 400; color: var(--ink-soft); }
.plan .top .for { margin-top: 6px; font-size: 0.95rem; color: var(--ink-soft); }
.plan .gbanner {
  background: var(--brand);
  color: oklch(0.97 0.01 95);
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
}
.plan .gbanner .sub { display: block; font-weight: 400; font-size: 0.88rem; color: oklch(0.88 0.03 120); margin-top: 2px; }
.plan li.hi { font-weight: 700; color: var(--ink); }
.plan ul { list-style: none; padding: 16px 28px 8px; flex: 1; }
.plan li { display: grid; grid-template-columns: 26px 1fr; gap: 8px; padding: 9px 0; font-size: 0.95rem; align-items: start; }
.plan li + li { border-top: 1px solid oklch(0.92 0.008 120); }
.plan li .tick { font-weight: 700; color: var(--brand); }
.plan li.off { color: oklch(0.62 0.01 120); }
.plan li.off .tick { color: var(--no); font-weight: 400; }
.plan .cta { padding: 20px 28px 28px; }
.plan .cta .btn { width: 100%; text-align: center; }
.plan .cta .note { margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }
.smallprint {
  margin-top: 30px;
  max-width: 820px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 22px;
}
.smallprint strong { color: var(--ink); }

/* ---- samples (info page) ---- */
.sample .frame {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.snippet {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 32px 0;
  box-shadow: 0 8px 28px oklch(0.24 0.02 160 / 0.08);
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.snippet::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 110px;
  background: linear-gradient(to bottom, transparent, white 85%);
}
.snippet .doctag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.snippet h4 { font-size: 1.05rem; margin-bottom: 10px; }
.snippet p { font-size: 0.95rem; line-height: 1.65; color: var(--ink); }
.snippet table { border-collapse: collapse; width: 100%; font-size: 0.85rem; margin-top: 8px; }
.snippet th, .snippet td { text-align: left; padding: 7px 8px; border-bottom: 1px solid var(--line); }
.snippet th { font-weight: 600; color: var(--ink-soft); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.snippet td.num { font-variant-numeric: tabular-nums; }
.sample .caption { margin-top: 18px; font-size: 0.88rem; color: var(--ink-soft); max-width: 70ch; }

/* ---- speed ---- */
.speed .steps2 { margin-top: 40px; max-width: 640px; }
.speed .st { display: grid; grid-template-columns: 30px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline; }
.speed .st .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--brand); position: relative; top: 1px; justify-self: center; }
.speed .st.pending .dot { background: var(--line); }
.speed .st .t { font-weight: 700; }
.speed .st p { color: var(--ink-soft); font-size: 0.95rem; max-width: 56ch; }

/* ---- numbers ---- */
.numbers .grid { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 40px; }
.numbers .fig .big { font-size: 2.4rem; font-weight: 700; color: var(--brand); line-height: 1.1; }
.numbers .fig p { margin-top: 8px; color: var(--ink-soft); max-width: 30ch; }

/* ---- guarantee (info page, amount-free) ---- */
.guarantee { background: var(--brand); color: oklch(0.96 0.012 95); }
.guarantee h2 { color: inherit; }
.guarantee .lede { color: oklch(0.88 0.02 120); }
.guarantee .terms { margin-top: 30px; font-size: 1.25rem; max-width: 48ch; line-height: 1.55; }
.guarantee .terms strong { color: oklch(0.85 0.11 75); }
.guarantee .also { margin-top: 18px; font-size: 0.95rem; color: oklch(0.88 0.02 120); max-width: 56ch; }

/* ---- faq ---- */
.faq dl { margin-top: 40px; max-width: 72ch; }
.faq dt { font-weight: 700; font-size: 1.12rem; padding-top: 26px; border-top: 1px solid var(--line); margin-top: 26px; }
.faq dt:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.faq dd { margin-top: 8px; color: var(--ink-soft); }

/* ---- the check form ---- */
.check { background: var(--paper-deep); }
form { margin-top: 36px; max-width: 560px; display: grid; gap: 16px; }
label { font-size: 0.92rem; font-weight: 600; display: grid; gap: 6px; }
input, select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus { outline: 2px solid var(--brand-bright); border-color: transparent; }
form .btn { justify-self: start; }
form .fine { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; }
.optin { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-weight: 400; font-size: 0.88rem; color: var(--ink-soft); align-items: start; }
.optin input { margin-top: 3px; accent-color: var(--brand); }
#purchase-extra { display: grid; gap: 16px; }

/* ---- live check theater ---- */
.qcheck { max-width: 560px; margin-top: 36px; }
.qcheck h3 { font-size: 1.35rem; margin-bottom: 6px; }
.qcheck .sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 24px; }
.qtrack { height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
.qfill { height: 100%; width: 2%; background: var(--brand); border-radius: 4px; transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.qsteps { margin-top: 22px; }
.qstep { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 10px 0; align-items: baseline; color: var(--ink-soft); }
.qstep .qdot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); justify-self: center; position: relative; top: 1px; }
.qstep.active { color: var(--ink); font-weight: 600; }
.qstep.active .qdot { background: var(--accent); animation: qpulse 1.2s ease-in-out infinite; }
.qstep.done { color: var(--ink); }
.qstep.done .qdot { background: var(--brand); animation: none; }
@keyframes qpulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: 0.55; } }
.qcheck .fine { margin-top: 20px; font-size: 0.85rem; color: var(--ink-soft); }
.qactivity { margin-top: 10px; min-height: 1.3em; font-size: 0.88rem; font-style: italic; color: var(--ink-soft); transition: opacity 0.4s; }

/* ---- verdict panels ---- */
.qresult { max-width: 640px; margin-top: 36px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 34px 32px; }
.qresult.win { border: 2px solid var(--brand); }
.qresult .k { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.qresult h3 { font-size: 1.7rem; line-height: 1.2; margin: 6px 0 10px; }
.qresult .band { font-size: 2.2rem; font-weight: 700; color: var(--accent-deep); font-variant-numeric: tabular-nums; line-height: 1.2; }
.qresult .bandlabel { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.qresult p { color: var(--ink-soft); font-size: 0.98rem; margin: 10px 0; }
.qresult .btns { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0 6px; }
.qresult .small { font-size: 0.85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 16px; }

footer { padding: 44px 0 60px; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-soft); }
footer .wrap { display: grid; gap: 10px; max-width: 72ch; }

@media (max-width: 760px) {
  .fivey .box { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 56px 1fr; }
  .step .n { font-size: 2rem; }
}
