/* ============================================================
   FIVE GALLON — styles
   Design system: design/website design/undefeated/DESIGN.md
   Ink-on-white, 0px radius everywhere, no shadows, heavy italic
   uppercase display type (Inter 900i), Noto Sans body, one olive
   accent per view, full-bleed / hard-edged photography.
   ============================================================ */

:root {
  --primary: #1c1d1d;
  --primary-active: #000000;
  --ink: #1c1d1d;
  --body-c: #222323;
  --muted: #69727b;
  --muted-soft: #9aa0a6;
  --hairline: #1c1d1d;
  --hairline-soft: #e4e4e0;
  --canvas: #ffffff;
  --surface-soft: #f4f4f2;
  --surface-card: #ededea;
  --surface-strong: #e4e4e0;
  --on-primary: #ffffff;
  --on-dark: #ffffff;
  /* olive is the single accent; former "brand" hues now map to ink / olive / paper */
  --olive: #4c5b3c;
  --olive-pale: #c9d4bb;
  --stage: #0c0c0c;
  --brand-pink: #1c1d1d;
  --brand-pink-deep: #1c1d1d;
  --brand-coral: #4c5b3c;
  --brand-coral-deep: #4c5b3c;
  --brand-teal: #1c1d1d;
  --brand-teal-soft: #0c0c0c;
  --brand-lavender: #f4f4f2;
  --brand-peach: #c9d4bb;
  --brand-ochre: #f4f4f2;
  --brand-mint: #c9d4bb;
  --r-sm: 0px; --r-md: 0px; --r-lg: 0px; --r-xl: 0px; --r-pill: 0px;
  --font-body: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

body {
  font-family: var(--font-body);
  color: var(--body-c);
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 860px; }

h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-style: italic; text-transform: uppercase; }
h1 { font-size: clamp(40px, 2.2rem + 3.4vw, 92px); font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 1.6rem + 2.2vw, 60px); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; }
h3 { font-size: 19px; font-weight: 900; line-height: 1.12; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--olive-pale); }

.section { padding: 96px 0; }
.section--tint { background: var(--surface-soft); }
.section--dark { background: var(--brand-teal); color: rgba(255, 250, 240, 0.85); }
.section--dark h2 { color: var(--on-dark); }
.section__sub {
  max-width: 640px;
  margin-top: 16px;
  color: var(--body-c);
  font-size: 18px;
}
.section__sub--light { color: rgba(255, 250, 240, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 180ms ease-out, transform 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-active); }
.btn--ghost { background: var(--canvas); color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--on-primary); border-color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); margin-top: 24px; }
.btn--ghost-dark:hover { background: var(--ink); color: var(--on-primary); border-color: var(--ink); }
.btn--lg { padding: 19px 32px; font-size: 14px; }
.btn--full { width: 100%; }
/* on teal band, ghost flips to on-color */
.section--dark .btn--ghost { background: var(--canvas); border-color: transparent; }
.section--dark .btn--ghost:hover { background: var(--surface-card); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo::before {
  content: "";
  width: 24px;
  height: 26px;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32.712 40.352'%3E%3Cg fill='%231c1d1d'%3E%3Cpath d='m4.058,16.966H0v2.723c2.241,0,4.058,1.817,4.058,4.058v13.097c0,1.938,1.571,3.508,3.508,3.508h12.365c1.938,0,3.508-1.571,3.508-3.508v-19.878H4.058Z'/%3E%3Ccircle cx='27.586' cy='15.858' r='2.349'/%3E%3Ccircle cx='30.362' cy='9.184' r='2.349'/%3E%3Ccircle cx='21.304' cy='12.44' r='2.349'/%3E%3Ccircle cx='12.174' cy='12.013' r='2.349'/%3E%3Ccircle cx='17.112' cy='7.742' r='2.349'/%3E%3Ccircle cx='23.987' cy='2.349' r='2.349'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.nav__logo { font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-weight: 900; letter-spacing: -0.5px; }
.nav__logo span { color: var(--olive); }
.nav__links { display: flex; gap: 8px; }
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 10px;
}
.nav__links a:hover { color: var(--muted); text-decoration: underline; text-underline-offset: 6px; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0; background: var(--canvas); }
.hero__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  max-width: none;
}
.hero h1 em { font-style: italic; color: var(--olive); }
.hero__sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--body-c);
  max-width: 560px;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__note { margin-top: 24px; font-size: 14px; color: var(--muted); max-width: 520px; }
.hero__art {
  background: var(--stage);
  border: 2px solid var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.hero__art svg { width: 100%; height: 100%; display: block; }

/* ---------- Proof bar : colored stat cards ---------- */
.proofbar { padding: 0 0 96px; background: var(--canvas); }
.proofbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof {
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.proof:nth-child(1) { background: var(--brand-pink-deep); color: var(--on-dark); }
.proof:nth-child(2) { background: var(--brand-teal); color: var(--on-dark); }
.proof:nth-child(3) { background: var(--brand-lavender); color: var(--ink); }
.proof:nth-child(4) { background: var(--brand-ochre); color: var(--ink); }
.proof__num {
  display: block;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}
.proof__label { display: block; margin-top: 10px; font-size: 13px; opacity: 0.85; }

/* ---------- Deal : saturated feature cards ---------- */
.deal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.deal__card {
  border-radius: var(--r-xl);
  padding: 32px;
}
.deal__card h3 { margin-bottom: 12px; font-size: 18px; }
.deal__card p { font-size: 14px; line-height: 1.6; }
.deal__card--pink { background: var(--brand-pink-deep); }
.deal__card--pink h3, .deal__card--pink p { color: var(--on-dark); }
.deal__card--pink p { opacity: 0.92; }
.deal__card--teal { background: var(--brand-teal); }
.deal__card--teal h3, .deal__card--teal p { color: var(--on-dark); }
.deal__card--teal p { opacity: 0.92; }
.deal__card--lavender { background: var(--brand-lavender); }
.deal__card--lavender h3, .deal__card--lavender p { color: var(--ink); }

/* ---------- Steps : numbered process cards ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: 24px;
}
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-dark);
  background: var(--brand-teal);
}
.step:nth-child(1) .step__num { background: var(--brand-pink-deep); }
.step:nth-child(2) .step__num { background: var(--brand-teal); }
.step:nth-child(3) .step__num { background: var(--brand-coral-deep); }
.step:nth-child(4) .step__num { background: var(--ink); }
.step h3 { margin: 16px 0 8px; font-size: 16px; }
.step p { color: var(--body-c); font-size: 14px; }

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.price-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.price-card--active {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
}
.price-card--active h3, .price-card--active .price-card__price { color: var(--on-dark); }
.price-card--active .price-card__price span, .price-card--active .price-card__job { color: var(--olive-pale); }
.price-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--brand-mint);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.price-card__badge--wait { background: var(--surface-card); color: var(--muted); }
.price-card__price {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  margin-top: 10px;
  line-height: 1.1;
}
.price-card__price span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 6px;
}
.price-card__job { margin-top: 16px; font-size: 13px; color: var(--muted); }

.pricing__fineprint {
  margin-top: 40px;
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  max-width: 760px;
}
.pricing__fineprint h4 { color: var(--ink); font-weight: 600; margin-bottom: 8px; }
.pricing__fineprint p { color: var(--body-c); font-size: 14px; }

/* ---------- Estimator (teal band) ---------- */
.estimator {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 48px;
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--r-xl);
  padding: 40px;
}
.field { margin-bottom: 26px; }
.field:last-child { margin-bottom: 0; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 250, 240, 0.92);
}
.field output { color: var(--brand-peach); font-weight: 600; }
.field select,
.field input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: var(--brand-teal-soft);
  color: var(--canvas);
  font-family: var(--font-body);
  font-size: 15px;
}
.field input[type="range"] { width: 100%; accent-color: var(--brand-peach); }
.estimator__results {
  background: var(--canvas);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  align-self: start;
}
.est-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 14px;
  color: var(--muted);
}
.est-row strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.est-row--total { border-bottom: none; }
.est-row--total strong { font-size: 32px; font-weight: 500; letter-spacing: -1px; color: var(--brand-coral-deep); }
.estimator__note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* ---------- Snapshot offer band ---------- */
.snapshot-band {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}
.snapshot-band h2 { margin-bottom: 16px; }
.snapshot-band > div > p { font-size: 18px; max-width: 480px; }
.snapshot-band__free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-mint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.snapshot-band ul {
  list-style: none;
  margin: 24px 0 32px;
}
.snapshot-band li {
  font-size: 15px;
  color: var(--body-c);
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.snapshot-band li::before {
  content: "";
  width: 14px; height: 14px; flex-shrink: 0;
  background-color: var(--brand-coral-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.snapshot-band__art svg { width: 100%; height: auto; display: block; border-radius: var(--r-lg); }
.snapshot-band__fine { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ---------- Compare table ---------- */
.compare { margin-top: 48px; overflow-x: auto; }
.compare table {
  width: 100%;
  border-collapse: collapse;
  background: var(--canvas);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.compare th, .compare td {
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--hairline-soft);
}
.compare thead th {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  background: var(--surface-card);
}
.compare tbody td:first-child { font-weight: 600; color: var(--ink); width: 24%; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare__us { background: rgba(76, 91, 60, 0.10); color: var(--olive); font-weight: 700; }
.compare td:last-child { color: var(--muted); }

.pledge {
  margin-top: 48px;
  border-left: 4px solid var(--brand-coral-deep);
  padding: 8px 0 8px 28px;
  max-width: 720px;
}
.pledge p {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.4;
  color: var(--ink);
}
.pledge cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Journal ---------- */
.journal {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.journal__text p { color: var(--body-c); margin-top: 16px; max-width: 540px; }
.journal__card {
  background: var(--brand-lavender);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.journal__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--canvas);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.journal__card h3 { margin: 18px 0 10px; font-size: 22px; font-weight: 600; letter-spacing: -0.3px; }
.journal__card p { color: rgba(10, 10, 10, 0.75); font-size: 14px; }
.journal__slots { margin-top: 18px !important; font-size: 15px !important; color: var(--ink) !important; }
.journal__slots strong { color: var(--brand-coral-deep); font-size: 20px; }

/* ---------- FAQ ---------- */
.faq {
  border-bottom: 1px solid var(--hairline);
  padding: 6px 0;
  margin-top: 8px;
}
.faq summary {
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-coral-deep);
}
.faq[open] summary::after { content: "–"; }
.faq p { padding: 0 0 20px; color: var(--body-c); max-width: 700px; font-size: 15px; }
#faq h2 { margin-bottom: 24px; }

/* ---------- CTA / wizard (teal band, cream card) ---------- */
.cta__inner { text-align: left; }
.cta__fine {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.wizard {
  margin-top: 40px;
  background: var(--canvas);
  border-radius: var(--r-xl);
  padding: 40px;
}
.wizard [hidden] { display: none !important; }
.wizard__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}
.wizard__count {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.wizard__count strong { color: var(--brand-coral-deep); font-size: 16px; font-weight: 600; }
.wizard__bar {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--surface-strong);
  overflow: hidden;
}
.wizard__bar-fill {
  height: 100%;
  width: 20%;
  border-radius: var(--r-pill);
  background: var(--brand-coral-deep);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.wizard__step {
  display: none;
  border: none;
  animation: wizard-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.wizard__step--active { display: block; }
@keyframes wizard-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard__question {
  display: block;
  font-size: clamp(20px, 1.1rem + 1vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 22px;
}
.wizard__input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 2px solid var(--surface-strong);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  box-shadow: 0 2px 6px rgba(10, 10, 10, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wizard__input::placeholder { color: var(--muted-soft); }
.wizard__input:hover { border-color: var(--muted-soft); }
.wizard__input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.08);
}
.wizard__sublabel {
  display: block;
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.wizard__sublabel span { font-weight: 400; color: var(--muted); }
.wizard__textarea { resize: vertical; min-height: 110px; }
.wizard__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
}
.wizard__options { display: grid; gap: 12px; }
.wizard__option { position: relative; display: block; }
.wizard__option input { position: absolute; opacity: 0; pointer-events: none; }
.wizard__option span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface-soft);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.wizard__option span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--muted-soft);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.wizard__option:hover span { border-color: var(--muted-soft); }
.wizard__option input:checked + span {
  border-color: var(--ink);
  background: var(--surface-card);
}
.wizard__option input:checked + span::before {
  border-color: var(--brand-coral-deep);
  background: var(--brand-coral-deep);
  box-shadow: inset 0 0 0 3px var(--canvas);
}
.wizard__option input:focus-visible + span { box-shadow: 0 0 0 3px rgba(199, 62, 44, 0.3); }
.wizard__error {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-coral-deep);
}
.wizard__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.wizard__back {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0;
}
.wizard__back:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.wizard__next, .wizard__submit { margin-left: auto; }
.wizard__submit:disabled { opacity: 0.6; cursor: wait; }
.wizard__hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-soft);
  text-align: right;
}
.wizard__hint strong { color: var(--muted); }

/* ---------- Success + snapshot result ---------- */
.cta__success {
  background: var(--canvas);
  color: var(--body-c);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  margin-top: 40px;
  animation: wizard-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__success-head { text-align: center; margin-bottom: 36px; }
.cta__success h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.cta__success-head > p { color: var(--body-c); max-width: 520px; margin: 0 auto; }
.cta__success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-mint);
  color: var(--ink);
  font-size: 26px;
  margin-bottom: 20px;
}

.snapshot {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
}
.snapshot__head {
  background: var(--brand-teal);
  color: var(--on-dark);
  padding: 28px 32px;
}
.snapshot__head .caption { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand-mint); margin-bottom: 8px; }
.snapshot__head h4 { font-size: 22px; font-weight: 500; letter-spacing: -0.3px; line-height: 1.25; }
.snapshot__head p { margin-top: 6px; font-size: 13px; color: var(--olive-pale); }
.snapshot__body { padding: 32px; display: grid; gap: 28px; }
.snapshot__section h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.snapshot__searches { list-style: none; display: grid; gap: 8px; }
.snapshot__searches li {
  background: var(--surface-soft);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: center;
}
.snapshot__searches li::before { content: "🔍"; font-size: 12px; }
.snapshot__math {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.snapshot__stat {
  border-radius: var(--r-md);
  padding: 16px;
}
.snapshot__stat:nth-child(1) { background: var(--surface-card); }
.snapshot__stat:nth-child(2) { background: var(--brand-peach); }
.snapshot__stat:nth-child(3) { background: var(--brand-mint); }
.snapshot__stat strong { display: block; font-size: 22px; font-weight: 600; letter-spacing: -0.4px; color: var(--ink); }
.snapshot__stat span { font-size: 12px; color: rgba(10, 10, 10, 0.65); }
.snapshot__wins { list-style: none; display: grid; gap: 10px; }
.snapshot__wins li { display: flex; gap: 12px; font-size: 14px; color: var(--body-c); align-items: baseline; }
.snapshot__wins .num {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-coral-deep);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(3px);
}
.snapshot__foot {
  border-top: 1px solid var(--hairline-soft);
  padding: 20px 32px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.snapshot__actions { text-align: center; margin-top: 24px; }

/* ---------- Footer : cream, never dark ---------- */
.footer {
  background: var(--surface-soft);
  color: var(--body-c);
  padding: 72px 0 32px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.nav__logo--footer { color: var(--ink); }
.footer__tag { margin-top: 14px; font-size: 14px; color: var(--muted); }
.footer__cols { display: flex; gap: 64px; }
.footer__cols h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--muted);
}
.footer__cols a {
  display: block;
  color: var(--body-c);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
}
.footer__cols a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-strong);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Print : the snapshot is the deliverable ---------- */
@media print {
  body * { visibility: hidden; }
  .snapshot, .snapshot * { visibility: visible; }
  .snapshot { position: absolute; inset: 0 auto auto 0; width: 100%; border: none; }
  .snapshot__head { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero { padding: 64px 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; }
  .proofbar__inner { grid-template-columns: repeat(2, 1fr); }
  .deal__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .estimator { grid-template-columns: 1fr; padding: 28px; }
  .snapshot-band { grid-template-columns: 1fr; padding: 40px 32px; }
  .journal { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { display: none; }
  .wizard__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .proofbar__inner { grid-template-columns: 1fr; }
  .wizard { padding: 28px 20px; }
  .wizard__hint { display: none; }
  .snapshot__math { grid-template-columns: 1fr; }
  .snapshot__body, .snapshot__head { padding: 24px 20px; }
  .nav__cta { padding: 10px 14px; font-size: 13px; }
  .footer__cols { gap: 40px; }
}

/* ============================================================
   UNDEFEATED RE-THEME OVERRIDES
   Monochrome + one olive accent, hard edges, no shadows,
   heavy display numerals. Placed last so it wins the cascade.
   ============================================================ */

/* Big numerals -> upright Inter 900, tight tracking (legible, sporty) */
.proof__num,
.price-card__price,
.est-row strong,
.est-row--total strong,
.snapshot__stat strong,
.journal__slots strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -1.5px;
}

/* Dark bands: neutralise the warm-white text to cool white on ink */
.section--dark { color: rgba(255, 255, 255, 0.82); }
.section--dark .section__sub--light { color: rgba(255, 255, 255, 0.7); }

/* Proof bar rhythm: ink / olive / paper / ink */
.proof:nth-child(1) { background: var(--ink); color: var(--on-dark); }
.proof:nth-child(2) { background: var(--olive); color: var(--on-dark); }
.proof:nth-child(3) { background: var(--surface-soft); color: var(--ink); border: 2px solid var(--ink); }
.proof:nth-child(4) { background: var(--ink); color: var(--on-dark); }

/* Deal cards: ink / olive / paper (paper gets a 2px ink frame) */
.deal__card--pink { background: var(--ink); }
.deal__card--teal { background: var(--olive); }
.deal__card--lavender { background: var(--surface-soft); border: 2px solid var(--ink); }

/* Step number badges: hard squares, alternating ink / olive */
.step { border: 2px solid var(--ink); }
.step__num { border-radius: 0; font-family: var(--font-display); font-style: italic; }
.step:nth-child(1) .step__num { background: var(--ink); }
.step:nth-child(2) .step__num { background: var(--olive); }
.step:nth-child(3) .step__num { background: var(--olive); }
.step:nth-child(4) .step__num { background: var(--ink); }

/* Price cards: 2px ink frame; active card is ink */
.price-card { border: 2px solid var(--ink); }
.price-card--active { background: var(--ink); border-color: var(--ink); }
.price-card__badge { border: 2px solid var(--ink); background: var(--olive); color: var(--on-primary); }
.price-card__badge--wait { background: var(--surface-card); color: var(--muted); border-color: var(--muted-soft); }

/* Journal card: paper with ink frame */
.journal__card { background: var(--surface-soft); border: 2px solid var(--ink); }
.journal__tag { border: 2px solid var(--ink); }

/* Pledge: 6px olive rule (the brand's accent divider) */
.pledge { border-left: 6px solid var(--olive); }

/* Snapshot deliverable: ink header + hard-edged, framed */
.snapshot { border: 2px solid var(--ink); }
.snapshot__stat:nth-child(1) { background: var(--surface-card); }
.snapshot__stat:nth-child(2) { background: var(--surface-soft); border: 2px solid var(--ink); }
.snapshot__stat:nth-child(3) { background: var(--olive); color: var(--on-primary); }
.snapshot__stat:nth-child(3) strong,
.snapshot__stat:nth-child(3) span { color: var(--on-primary); }

/* Kill decorative circles -> hard squares */
.cta__success-check,
.snapshot__wins .num { border-radius: 0; }
.cta__success-check { background: var(--olive); color: var(--on-primary); }

/* Wizard: 2px ink inputs, no shadows, square radios, olive selection */
.wizard { border: 2px solid var(--ink); }
.wizard__input {
  border: 2px solid var(--ink);
  box-shadow: none;
}
.wizard__input:focus {
  border-color: var(--olive);
  box-shadow: none;
}
.wizard__option span { border: 2px solid var(--ink); background: var(--surface-soft); }
.wizard__option span::before { border-radius: 0; border: 2px solid var(--muted); }
.wizard__option input:checked + span { border-color: var(--olive); background: var(--surface-card); }
.wizard__option input:checked + span::before {
  border-color: var(--olive);
  background: var(--olive);
  box-shadow: inset 0 0 0 3px var(--canvas);
}
.wizard__option input:focus-visible + span { box-shadow: 0 0 0 3px rgba(76, 91, 60, 0.35); }
.wizard__bar { background: var(--surface-strong); border: 2px solid var(--ink); height: 10px; }
.wizard__bar-fill { background: var(--olive); }

/* Footer: hard ink rule above the legal line */
.footer__legal { border-top: 2px solid var(--ink); }
