/* ==========================================================================
   HomeTruth — landing page styles
   Palette: pine/ink brand, warm paper ground, semantic green/amber/red
   ========================================================================== */

:root {
  --paper:      #f6f4ee;
  --paper-2:    #fffdf8;
  --ink:        #14201c;
  --ink-soft:   #3c4b45;
  --ink-mute:   #6b7a72;
  --line:       #e2ddd1;
  --line-soft:  #ece8dd;

  --pine:       #14493f;
  --pine-deep:  #0d322b;
  --pine-600:   #1a5c50;
  --pine-tint:  #e7efe9;

  --amber:      #b06a12;
  --amber-bg:   #fbecd6;
  --red:        #b23a34;
  --red-bg:     #f8dfdc;
  --green:      #2f7d4f;
  --green-bg:   #dcefe0;

  --accent:     #c9962f;      /* warm gold highlight */

  --shadow-sm:  0 1px 2px rgba(20,32,28,.06), 0 2px 8px rgba(20,32,28,.05);
  --shadow-md:  0 4px 14px rgba(20,32,28,.08), 0 12px 34px rgba(20,32,28,.09);
  --shadow-lg:  0 10px 30px rgba(13,50,43,.14), 0 30px 70px rgba(13,50,43,.16);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  --wrap: 1140px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -.01em; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pine); color: #fff; box-shadow: 0 2px 0 var(--pine-deep), var(--shadow-sm); }
.btn-primary:hover { background: var(--pine-600); box-shadow: 0 2px 0 var(--pine-deep), var(--shadow-md); }
.btn-sm { padding: 9px 16px; font-size: .92rem; }
.btn-lg { padding: 15px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.link-quiet { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: .96rem; border-bottom: 1px solid transparent; }
.link-quiet:hover { border-bottom-color: currentColor; }

/* ---------- Shared section bits ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--pine-600);
  margin: 0 0 14px;
}
.eyebrow-center { text-align: center; }
.section-h { font-size: clamp(1.6rem, 3.4vw, 2.5rem); color: var(--ink); }
.section-h.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 46px; }
.section-sub { text-align: center; color: var(--ink-mute); font-size: 1.08rem; margin: 14px 0 0; }

/* ---------- No-JS notice ---------- */
.noscript-note { background: var(--amber-bg); color: #8a5510; border-bottom: 1px solid var(--line); padding: 12px 24px; text-align: center; font-size: .92rem; }
.noscript-note strong { color: #6f4409; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,244,238,.82);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--pine); font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--pine); color: #fff; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.header-nav { margin-left: auto; display: flex; gap: 26px; }
.header-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .96rem; }
.header-nav a:hover { color: var(--pine); }
.header-inner .btn { margin-left: 4px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 7vw, 88px); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5.1vw, 3.7rem); line-height: 1.04; }
.hero h1 .hl { color: var(--pine); position: relative; white-space: nowrap; }
.hero .lede { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 34ch; margin: 22px 0 0; }
.hero-cta { display: flex; align-items: center; gap: 22px; margin: 32px 0 26px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 0; color: var(--ink-mute); font-size: .9rem; }
.hero-trust li { position: relative; padding-left: 18px; font-weight: 500; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--green); transform: translateY(-50%); }

/* Hero visual mini-card */
.hero-visual { display: grid; place-items: center; }
.mini-card {
  width: 100%; max-width: 400px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: rotate(1.3deg);
}
.mini-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.mini-addr { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.badge { font-size: .72rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.mini-range-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); font-weight: 700; }
.mini-range-value { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin: 2px 0 12px; }
.gauge { position: relative; height: 9px; border-radius: 999px; background: var(--line-soft); overflow: visible; }
.gauge-fill { position: absolute; inset: 0 auto 0 0; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--pine-600)); }
.gauge-ask { position: absolute; top: 50%; left: var(--x); width: 3px; height: 18px; background: var(--amber); border-radius: 2px; transform: translate(-50%,-50%); }
.mini-range-foot { display: flex; justify-content: space-between; font-size: .8rem; color: var(--ink-mute); margin-top: 12px; }
.mini-flags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.chip { font-size: .76rem; font-weight: 600; padding: 5px 10px; border-radius: 8px; }
.chip-red { background: var(--red-bg); color: var(--red); }
.chip-amber { background: var(--amber-bg); color: var(--amber); }
.chip-green { background: var(--green-bg); color: var(--green); }

/* ---------- Pain ---------- */
.pain { padding: clamp(40px, 6vw, 72px) 0; }
.pain .section-h { max-width: 20ch; margin-bottom: 42px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); }
.pain-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pine-tint); color: var(--pine); display: grid; place-items: center; margin-bottom: 18px; }
.pain-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.pain-card p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

/* ---------- Sample report ---------- */
.sample { padding: clamp(52px, 7vw, 92px) 0; background: linear-gradient(180deg, var(--paper) 0%, #efece2 100%); }
.report {
  max-width: 860px; margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.report-banner { background: repeating-linear-gradient(45deg, #fbecd6, #fbecd6 12px, #f9e6c9 12px, #f9e6c9 24px); color: #8a5510; font-size: .82rem; font-weight: 600; text-align: center; padding: 9px 16px; border-bottom: 1px solid var(--line); }

.report-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; padding: 26px 30px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.report-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--pine-600); margin: 0 0 6px; }
.report-addr { font-size: 1.55rem; }
.report-meta { color: var(--ink-mute); font-size: .92rem; margin: 6px 0 0; }
.verdict { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--r-sm); font-size: .92rem; }
.verdict strong { display: block; font-family: var(--serif); font-size: 1.02rem; }
.verdict span { color: var(--ink-mute); font-size: .84rem; }
.verdict-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.verdict-amber { background: var(--amber-bg); }
.verdict-amber .verdict-dot { background: var(--amber); }
.verdict-amber strong { color: var(--amber); }

.report-block { padding: 26px 30px; border-bottom: 1px solid var(--line-soft); }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.block-head h4 { font-size: 1.16rem; }
.conf { font-size: .84rem; color: var(--ink-mute); }
.conf strong { color: var(--ink-soft); }
.tag { font-size: .74rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.tag-amber { background: var(--amber-bg); color: var(--amber); }

/* value */
.value-hero { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 24px; }
.value-figure { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 600; letter-spacing: -.02em; }
.value-figure span { color: var(--ink-mute); font-weight: 400; }
.value-note { color: var(--ink-soft); font-size: .96rem; max-width: 40ch; }
.band { margin-top: 26px; }
.band-track { position: relative; height: 12px; border-radius: 999px; background: var(--line-soft); margin: 34px 0 8px; }
.band-fill { position: absolute; top: 0; bottom: 0; left: 8%; right: 46%; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--pine-600)); }
.band-tick { position: absolute; top: 50%; left: var(--x); transform: translate(-50%,-50%); }
.band-tick i { display: block; width: 3px; height: 22px; border-radius: 2px; background: var(--ink); margin: 0 auto; }
.band-tick em { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: .74rem; font-weight: 700; white-space: nowrap; color: var(--ink-soft); }
.band-ask i { background: var(--amber); }
.band-ask em { color: var(--amber); }
.band-scale { display: flex; justify-content: space-between; font-size: .76rem; color: var(--ink-mute); }

/* timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 20px 30px; }
.timeline li:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--pine); border: 3px solid var(--paper-2); box-shadow: 0 0 0 1px var(--pine); }
.tl-dot-old { background: var(--ink-mute); box-shadow: 0 0 0 1px var(--ink-mute); }
.tl-body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.tl-date { font-weight: 700; font-size: .82rem; color: var(--pine-600); min-width: 66px; }
.tl-event { font-size: 1rem; }
.tl-note { color: var(--ink-mute); font-size: .84rem; }

/* comps table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm); }
.comps { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 520px; }
.comps th, .comps td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.comps thead th { background: var(--pine-tint); color: var(--pine-deep); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.comps .num { text-align: right; font-variant-numeric: tabular-nums; }
.comps tbody tr:hover { background: #faf8f2; }
.comps tfoot td { font-weight: 700; background: #f3f0e7; border-top: 2px solid var(--line); }

/* split */
.report-split { display: grid; grid-template-columns: 1fr 1fr; }
.report-split .report-block { border-bottom: 1px solid var(--line-soft); }
.report-split .report-block:first-child { border-right: 1px solid var(--line-soft); }

/* planning */
.planning, .risks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.planning li { display: flex; gap: 12px; }
.pl-mark { flex: none; width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; }
.planning strong { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 600; }
.planning span { font-size: .86rem; color: var(--ink-mute); }
.pl-red .pl-mark { background: var(--red); }
.pl-amber .pl-mark { background: var(--amber); }
.pl-green .pl-mark { background: var(--green); }

/* risks */
.rk { display: flex; gap: 12px; align-items: flex-start; }
.rk-badge { flex: none; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; margin-top: 2px; min-width: 52px; text-align: center; }
.rk strong { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 600; }
.rk span { font-size: .86rem; color: var(--ink-mute); }
.rk-red .rk-badge { background: var(--red-bg); color: var(--red); }
.rk-amber .rk-badge { background: var(--amber-bg); color: var(--amber); }
.rk-green .rk-badge { background: var(--green-bg); color: var(--green); }

/* costs */
.costs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r-sm); overflow: hidden; }
.cost { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; background: var(--paper-2); }
.cost-k { color: var(--ink-soft); font-size: .92rem; }
.cost-v { font-weight: 700; font-variant-numeric: tabular-nums; }
.cost-total { grid-column: 1 / -1; background: var(--pine-tint); }
.cost-total .cost-k, .cost-total .cost-v { color: var(--pine-deep); font-family: var(--serif); font-size: 1.08rem; }
.costs-note { font-size: .82rem; color: var(--ink-mute); margin: 12px 0 0; }

.report-foot { padding: 30px; text-align: center; background: #f3f0e7; }
.report-foot p { font-size: .82rem; color: var(--ink-mute); margin: 16px auto 0; max-width: 46ch; }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(52px, 7vw, 90px) 0; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin: 0 auto; }
.price-card { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card-feature { border: 2px solid var(--pine); box-shadow: var(--shadow-md); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--pine); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-card h3 { font-size: 1.4rem; }
.price-desc { color: var(--ink-mute); font-size: .94rem; margin: 8px 0 18px; min-height: 2.8em; }
.price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 22px; }
.price-cur { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-top: 8px; color: var(--ink-soft); }
.price-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.price-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price-list li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--ink-soft); }
.price-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--green-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f7d4f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---------- Trust ---------- */
.trust { padding: clamp(52px, 7vw, 90px) 0; background: var(--pine-deep); color: #eaf1ec; }
/* Single constrained column by default — the founder quote block is currently
   removed (see index.html), and the old 1.1fr/.9fr grid would leave a dead
   column on the right. The two-column layout is restored automatically by
   :has() if the quote comes back, but only above the 900px breakpoint: an
   unscoped :has() rule outranks the max-width:900px override below and would
   force two columns onto phones. */
.trust-inner { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; max-width: 760px; }
.trust .section-h { color: #fff; max-width: 24ch; }

@media (min-width: 901px) {
  .trust-inner:has(.founder) { grid-template-columns: 1.1fr .9fr; max-width: var(--wrap); }
  .trust-inner:has(.founder) .section-h { max-width: 16ch; }
}
.trust-main p { color: #c4d4cc; font-size: 1.08rem; margin: 20px 0 0; }
.trust-main strong { color: #fff; }
.sources { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.sources span { font-size: .84rem; font-weight: 600; padding: 7px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #d6e2db; }
.founder { margin: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 30px; }
/* Upright, not italic: no italic axis is loaded for Fraunces, so font-style:
   italic gave the founder quote a synthetic slant — visibly cheap on the one
   block of copy that has to read as trustworthy. Loading a real italic would
   roughly double the font payload for a single paragraph. */
.founder blockquote { margin: 0; font-family: var(--serif); font-size: 1.16rem; line-height: 1.5; color: #f2f7f4; }
.founder figcaption { margin-top: 20px; display: flex; flex-direction: column; }
.founder-name { font-weight: 700; }
.founder-role { color: #9fb3aa; font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(52px, 7vw, 90px) 0; }
.faq-wrap { max-width: 780px; }
.faq .section-h { margin-bottom: 40px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--serif); font-size: 1.14rem; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--pine); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.faq-plus::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-plus::after { left: 9px; top: 2px; width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 22px 22px; }
.faq-body p { margin: 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: #10120f; color: #b9c2bc; padding: 52px 0 40px; }
.footer-inner { display: grid; grid-template-columns: .8fr 2fr; gap: 42px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #8a948d; font-size: .94rem; margin: 10px 0 0; max-width: 28ch; }
.footer-legal p { font-size: .86rem; line-height: 1.7; margin: 0 0 14px; color: #98a29b; }
.footer-legal strong { color: #d6ddd8; }
.footer-meta { color: #6f7a72 !important; }
.footer-legal a { color: #b9c2bc; }

/* ==========================================================================
   Checkout modal
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-scrim { position: absolute; inset: 0; background: rgba(13,32,27,.55); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal-panel {
  position: relative; width: 100%; max-width: 460px;
  background: var(--paper-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 32px 30px;
  /* vh first as the fallback, then dvh: on mobile Safari/Chrome the collapsing
     address bar makes 100vh taller than the visible viewport, so the panel's
     footer — the submit button — sits off-screen. Browsers without dvh ignore
     the second declaration and keep the first. */
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  animation: pop .24s cubic-bezier(.2,.8,.3,1);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@media (prefers-reduced-motion: reduce) { .modal-scrim, .modal-panel { animation: none; } }

.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--line-soft); color: var(--ink-soft); display: grid; place-items: center; cursor: pointer; }
.modal-close:hover { background: var(--line); }

.step-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.step-progress span { height: 4px; flex: 1; border-radius: 999px; background: var(--line); }
.step-progress span.on { background: var(--pine); }
.step-progress span.done { background: var(--green); }

.step-h { font-size: 1.55rem; margin-bottom: 8px; }
/* Headings are focused programmatically on step change (so screen readers
   announce the new step); they shouldn't show a focus ring like a control. */
.step-h[tabindex="-1"]:focus { outline: none; }
.step-sub { color: var(--ink-mute); margin: 0 0 22px; font-size: 1rem; }
.addr-echo { color: var(--pine-600); font-weight: 600; }

.field { display: block; margin-bottom: 8px; }
.field-label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input {
  width: 100%; font-family: var(--sans); font-size: 1.02rem;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px var(--pine-tint); }
.field-error { color: var(--red); font-size: .85rem; margin: 4px 0 10px; }
.step form .btn { margin-top: 14px; }
.step-fineprint { font-size: .8rem; color: var(--ink-mute); text-align: center; margin: 14px 0 0; }

/* pay step */
.pay-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.pay-opt { text-align: left; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer; display: flex; flex-direction: column; gap: 3px; transition: border-color .15s, background .15s; }
.pay-opt:hover { border-color: var(--pine-600); }
.pay-opt.is-active { border-color: var(--pine); background: var(--pine-tint); box-shadow: 0 0 0 1px var(--pine); }
.pay-opt-name { font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.pay-opt-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }

.pay-summary { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 6px 16px; margin-bottom: 20px; }
.pay-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: .95rem; }
.pay-row-muted { color: var(--ink-mute); border-bottom: 1px solid var(--line-soft); }
.pay-row-total { font-weight: 700; font-family: var(--serif); font-size: 1.1rem; padding-top: 12px; }

.pay-fields { margin-bottom: 6px; opacity: .7; }
.pay-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-fake { margin-bottom: 12px; }
.fake-input { padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #f4f2ec; color: var(--ink-mute); font-size: 1rem; letter-spacing: .04em; }

/* reveal step */
.reveal-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--pine-tint); color: var(--pine); display: grid; place-items: center; margin: 0 auto 20px; }
.reveal-mark-done { background: var(--green-bg); color: var(--green); }
.step[data-step="reveal"] .step-h, .step[data-step="done"] .step-h { text-align: center; }
.reveal-sub { text-align: center; }
.reveal-sub strong { color: var(--pine-600); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero .lede { max-width: 46ch; }
  .hero-visual { order: -1; }
  .mini-card { transform: none; max-width: 440px; }
  .trust-inner { grid-template-columns: 1fr; gap: 34px; }
  .trust .section-h { max-width: none; }
}
@media (max-width: 760px) {
  .header-nav { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .report-split { grid-template-columns: 1fr; }
  .report-split .report-block:first-child { border-right: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .br-desk { display: none; }
}
@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .report-head, .report-block, .report-foot { padding-left: 20px; padding-right: 20px; }
  .costs { grid-template-columns: 1fr; }
  .modal-panel { padding: 30px 22px 26px; }
  .hero h1 .hl { white-space: normal; }
}
