/* ============================================================
   Indexed — platform SEO
   Design rules: hairline rules over cards. No shadows.
   No gradients. Radius 2px max. Emphasis via weight + space.
   ============================================================ */

:root {
  --paper:      #ffffff;
  --paper-warm: #faf9f6;
  --ink:        #101110;
  --ink-soft:   #3d3f3c;
  --muted:      #6e716c;
  --line:       #e3e2dd;
  --line-dark:  #c9c8c2;
  --accent:     #17324d;
  --accent-tint:#eef1f4;

  --max:  1160px;
  --gut:  24px;

  --step--1: 0.8125rem;
  --step-0:  1rem;
  --step-1:  1.125rem;
  --step-2:  1.5rem;
  --step-3:  2rem;
  --step-4:  2.75rem;
  --step-5:  3.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- layout ---------- */

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

.band { border-top: 1px solid var(--line); }
.band--warm { background: var(--paper-warm); }

.section { padding-block: 72px; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- type utilities ---------- */

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
}

.small {
  font-size: var(--step--1);
  color: var(--muted);
}

.num {
  font-variant-numeric: tabular-nums;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- header ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(1.6) blur(8px);
  border-bottom: 1px solid var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.wordmark {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.wordmark::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  align-self: center;
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.nav a:hover { color: var(--ink); }

.nav--links { display: none; }

@media (min-width: 860px) {
  .nav--links { display: flex; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding-inline: 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  white-space: nowrap;
}

.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}
.btn--ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

.btn--sm { height: 38px; padding-inline: 16px; font-size: 0.875rem; }
.btn--wide { width: 100%; }

.textlink {
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 1px;
}
.textlink:hover { border-color: var(--ink); }

/* ---------- hero ---------- */

.hero { padding-block: 80px 72px; }

.hero h1 {
  font-size: var(--step-4);
  max-width: 15ch;
  margin-bottom: 22px;
}

.hero .lede { margin-bottom: 34px; }

@media (min-width: 860px) {
  .hero { padding-block: 116px 100px; }
  .hero h1 { font-size: var(--step-5); }
}

/* handle capture */

.capture {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.capture__field {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--paper);
  transition: border-color 120ms ease;
}

.capture__field:focus-within { border-color: var(--ink); }

.capture__at {
  display: flex;
  align-items: center;
  padding-inline: 14px 0;
  color: var(--muted);
  font-size: 1rem;
  user-select: none;
}

.capture input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 15px 12px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.capture input:focus { outline: none; }
.capture input::placeholder { color: #a2a49f; }

.capture .btn { border-radius: 0 1px 1px 0; margin: -1px -1px -1px 0; height: auto; }

@media (max-width: 520px) {
  .capture__field { flex-wrap: wrap; }
  .capture .btn { width: 100%; margin: 0; height: 46px; border-radius: 0 0 1px 1px; }
}

/* ---------- proof strip ---------- */

.strip {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.strip__item { padding-block: 26px; border-bottom: 1px solid var(--line); }
.strip__item dt { font-size: var(--step--1); color: var(--muted); margin-bottom: 6px; }
.strip__item dd {
  margin: 0;
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 720px) {
  .strip { grid-template-columns: repeat(3, 1fr); }
  .strip__item { border-bottom: 0; padding-inline-end: 32px; }
  .strip__item + .strip__item { border-left: 1px solid var(--line); padding-inline-start: 32px; }
}

/* ---------- two-column section head ---------- */

.split { display: grid; gap: 40px; }

@media (min-width: 900px) {
  .split { grid-template-columns: 340px 1fr; gap: 64px; }
}

.split__head h2 { font-size: var(--step-3); margin-bottom: 14px; }
.split__head p { color: var(--muted); max-width: 40ch; }

/* ---------- numbered list ---------- */

.items { display: grid; gap: 0; }

.item {
  display: grid;
  gap: 6px 20px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

.item:last-child { border-bottom: 1px solid var(--line); }

.item h3 { font-size: var(--step-1); font-weight: 600; }
.item p { color: var(--muted); max-width: 60ch; }

@media (min-width: 620px) {
  .item { grid-template-columns: 44px 1fr; }
  .item .num { padding-top: 5px; }
}

/* ---------- steps ---------- */

.steps { display: grid; gap: 0; counter-reset: s; }

.step-card {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.step-card:last-child { border-bottom: 1px solid var(--line); }

.step-card h3 { font-size: var(--step-1); margin-bottom: 8px; }
.step-card p { color: var(--muted); max-width: 46ch; }

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
  .step-card { border-top: 0; border-bottom: 0; padding: 30px 30px 30px 0; }
  .step-card + .step-card { border-left: 1px solid var(--line); padding-left: 30px; }
}

/* ---------- pricing ---------- */

.plans { display: grid; gap: 0; border-top: 1px solid var(--line); }

.plan {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.plan__name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.plan__amount {
  font-size: var(--step-3);
  font-weight: 600;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.plan__per { font-size: var(--step--1); color: var(--muted); }

.plan__for { color: var(--muted); font-size: var(--step--1); margin-bottom: 22px; }

.plan__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  flex: 1;
}

.plan__list li { padding-left: 18px; position: relative; }

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 1px;
  background: var(--line-dark);
}

.plan--feature { background: var(--accent-tint); }

/* Stacked: the tint would otherwise run flush to the text. Pad it, then pull
   it back out so plan text still lines up with the plans above and below. */
@media (max-width: 859px) {
  .plan--feature { padding-inline: 20px; margin-inline: -20px; }
}

@media (min-width: 860px) {
  .plans { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
  .plan { border-bottom: 0; padding: 34px 26px 36px; border-left: 1px solid var(--line); }
  .plan:first-child { border-left: 0; }
}

.plan-note { margin-top: 20px; }

/* ---------- faq ---------- */

.faq { display: grid; }

.faq__row { border-top: 1px solid var(--line); padding-block: 24px; display: grid; gap: 8px; }
.faq__row:last-child { border-bottom: 1px solid var(--line); }
.faq__row h3 { font-size: var(--step-0); font-weight: 600; }
.faq__row p { color: var(--muted); max-width: 62ch; }

@media (min-width: 760px) {
  .faq__row { grid-template-columns: 320px 1fr; gap: 40px; }
}

/* ---------- cta band ---------- */

.cta { background: var(--ink); color: var(--paper); }
.cta h2 { font-size: var(--step-3); margin-bottom: 14px; max-width: 18ch; }
.cta p { color: #a8aaa6; max-width: 46ch; margin-bottom: 30px; }
.cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn:hover { background: #e6e5e0; border-color: #e6e5e0; }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); padding-block: 34px 44px; }

.foot__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.foot__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: var(--step--1); color: var(--muted); }
.foot__links a:hover { color: var(--ink); }

@media (min-width: 760px) {
  .foot__inner { flex-direction: row; align-items: center; }
}

/* ============================================================
   Signup
   ============================================================ */

.signup { padding-block: 44px 80px; }

.signup__grid { display: grid; gap: 40px; }

@media (min-width: 960px) {
  .signup__grid { grid-template-columns: 260px 1fr; gap: 72px; }
  .signup { padding-block: 60px 100px; }
}

/* progress rail */

.rail { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }

.rail__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-block: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.rail__item:last-child { border-bottom: 1px solid var(--line); }

.rail__n {
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-top: 1px;
}

.rail__label { font-size: 0.9375rem; line-height: 1.4; }
.rail__sub { display: block; font-size: var(--step--1); color: var(--muted); margin-top: 2px; }

.rail__item[data-state="active"] { color: var(--ink); }
.rail__item[data-state="active"] .rail__n { background: var(--accent); border-color: var(--accent); color: #fff; }
.rail__item[data-state="active"] .rail__label { font-weight: 600; }
.rail__item[data-state="done"] { color: var(--ink-soft); }
.rail__item[data-state="done"] .rail__n { background: var(--ink); border-color: var(--ink); color: #fff; }

/* mobile progress bar */

.progress { margin-bottom: 30px; }
.progress__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress__meta .num { color: var(--ink-soft); }
.progress__track { height: 2px; background: var(--line); }
.progress__fill { height: 2px; background: var(--accent); transition: width 220ms ease; }

@media (min-width: 960px) { .progress { display: none; } }
@media (max-width: 959px) { .rail { display: none; } }

/* panels */

.panel { display: none; max-width: 560px; }
.panel[data-active] { display: block; }

.panel h1 { font-size: var(--step-3); margin-bottom: 10px; }
.panel > .lede { margin-bottom: 32px; font-size: var(--step-0); }

/* form */

.field { margin-bottom: 22px; }

.field > label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.005em;
}

.field__hint { display: block; font-weight: 400; color: var(--muted); margin-top: 3px; }

.input {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--paper);
  padding: 13px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 120ms ease;
}

.input:focus { outline: none; border-color: var(--ink); }
.input::placeholder { color: #a2a49f; }
.input[aria-invalid="true"] { border-color: #a33; }

.error {
  display: none;
  font-size: var(--step--1);
  color: #a33;
  margin-top: 6px;
}

.error[data-show] { display: block; }

/* platform choice */

.choices { display: grid; gap: 10px; }

@media (min-width: 520px) { .choices { grid-template-columns: repeat(3, 1fr); } }

.choice {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
  font-size: 0.9375rem;
}

.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:hover { border-color: var(--ink-soft); }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); font-weight: 500; }
.choice:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

/* plan picker */

.picker { display: grid; gap: 12px; margin-bottom: 26px; }

.pick {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: start;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 18px;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}

.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick:hover { border-color: var(--ink-soft); }
.pick:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.pick:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

/* All three placed explicitly. Leaving the price to auto-placement lets it
   claim column 1 and shove the name across into column 2. */
.pick__name  { grid-column: 1; grid-row: 1; font-weight: 600; }
.pick__desc  { grid-column: 1; grid-row: 2; font-size: var(--step--1); color: var(--muted); max-width: 42ch; }
.pick__price { grid-column: 2; grid-row: 1 / span 2; align-self: center; text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pick__price span { display: block; font-size: var(--step--1); font-weight: 400; color: var(--muted); }

/* summary */

.summary { border: 1px solid var(--line); border-radius: 2px; padding: 18px; margin-bottom: 24px; }
.summary dl { margin: 0; display: grid; gap: 9px; }
.summary .row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9375rem; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; font-weight: 500; text-align: right; word-break: break-word; }

/* actions */

.actions { display: flex; flex-direction: column-reverse; gap: 10px; margin-top: 28px; }

@media (min-width: 520px) {
  .actions { flex-direction: row; align-items: center; justify-content: space-between; }
  .actions .btn { min-width: 150px; }
}

.actions--single { justify-content: flex-end; }

.legal { margin-top: 18px; max-width: 46ch; }

/* done state */

.done { max-width: 520px; }
.done h1 { font-size: var(--step-3); margin-bottom: 12px; }
.done ol { margin: 26px 0 0; padding: 0; list-style: none; display: grid; }
.done li { border-top: 1px solid var(--line); padding-block: 16px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.done li:last-child { border-bottom: 1px solid var(--line); }
.done li p { color: var(--muted); font-size: 0.9375rem; margin-top: 3px; }
.done li strong { font-weight: 600; }

/* misc */

.stack-sm > * + * { margin-top: 10px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   Scan capture (landing)
   ============================================================ */

.capture__platform {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  flex: none;
}

.capture__platform select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 15px 30px 15px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236e716c' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.capture__platform select:focus { outline: none; }

@media (max-width: 560px) {
  .capture__field { flex-wrap: wrap; }
  .capture__platform { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .capture__platform select { width: 100%; }
}

/* ============================================================
   Scan report
   ============================================================ */

.scan { padding-block: 40px 80px; }

/* analyzing state */

.analyzing { max-width: 520px; padding-block: 40px; }
.analyzing h1 { font-size: var(--step-3); margin-bottom: 10px; }
.analyzing > p { color: var(--muted); margin-bottom: 34px; }

.tasks { list-style: none; margin: 0; padding: 0; }

.tasks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: center;
  padding-block: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9375rem;
  transition: color 160ms ease;
}

.tasks li:last-child { border-bottom: 1px solid var(--line); }
.tasks li[data-state="done"] { color: var(--ink); }
.tasks li[data-state="active"] { color: var(--ink); }

.tick {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  position: relative;
}

li[data-state="active"] .tick { border-color: var(--accent); border-top-color: transparent; animation: spin 700ms linear infinite; }
li[data-state="done"] .tick { background: var(--accent); border-color: var(--accent); }
li[data-state="done"] .tick::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  li[data-state="active"] .tick { animation: none; }
}

/* report head */

.report__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
}

.report__who { display: flex; align-items: center; gap: 12px; }
.report__handle { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.03em; }
.report__meta { font-size: var(--step--1); color: var(--muted); margin-top: 2px; }

.tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding-inline: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* score */

.score { display: grid; gap: 26px; padding-block: 30px; border-top: 1px solid var(--line); }

@media (min-width: 800px) { .score { grid-template-columns: 220px 1fr; gap: 56px; } }

.score__value { display: flex; align-items: baseline; gap: 4px; }
.score__n { font-size: 3.25rem; font-weight: 600; letter-spacing: -0.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.score__d { font-size: var(--step-1); color: var(--muted); }
.score__label { font-size: var(--step--1); color: var(--muted); margin-top: 8px; }

.metrics { display: grid; gap: 0; }

.metric { padding-block: 16px; border-top: 1px solid var(--line); }
.metric:first-child { border-top: 0; }

@media (min-width: 800px) { .metric:first-child { border-top: 1px solid var(--line); } }

.metric__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 9px; }
.metric__name { font-size: 0.9375rem; font-weight: 500; }
.metric__val { font-size: 0.9375rem; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.metric__bar { height: 3px; background: var(--line); position: relative; }
.metric__fill { height: 3px; background: var(--accent); width: 0; transition: width 700ms cubic-bezier(.2,.7,.3,1); }
.metric__fill[data-tone="low"] { background: #a8551f; }
.metric__note { font-size: var(--step--1); color: var(--muted); margin-top: 7px; }

/* diagnosis callout */

.diagnosis {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 30px;
  margin-block: 8px;
}

.diagnosis h2 { font-size: var(--step-2); margin-bottom: 12px; max-width: 22ch; }
.diagnosis p { color: var(--ink-soft); max-width: 62ch; }
.diagnosis p + p { margin-top: 12px; }

/* opportunities */

.opps { display: grid; }

.opp {
  display: grid;
  gap: 6px 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.opp:last-child { border-bottom: 1px solid var(--line); }
.opp h3 { font-size: var(--step-0); font-weight: 600; }
.opp p { color: var(--muted); font-size: 0.9375rem; max-width: 60ch; }
.opp__impact { font-size: var(--step--1); color: var(--muted); white-space: nowrap; }

@media (min-width: 700px) {
  .opp { grid-template-columns: 44px 1fr 130px; align-items: start; }
  .opp .num { padding-top: 4px; }
  .opp__impact { grid-column: 3; grid-row: 1 / span 2; text-align: right; }
}

/* results / social proof */

.results { display: grid; gap: 0; border-top: 1px solid var(--line); }

.result { padding-block: 24px; border-bottom: 1px solid var(--line); }
.result__n { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.result__what { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 10px; }
.result__who { font-size: var(--step--1); color: var(--muted); }

@media (min-width: 760px) {
  .results { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
  .result { border-bottom: 0; padding: 26px 28px 28px 0; }
  .result + .result { border-left: 1px solid var(--line); padding-left: 28px; }
}

/* sticky cta */

.report-cta {
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 26px;
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.report-cta h2 { font-size: var(--step-2); margin-bottom: 8px; max-width: 24ch; }
.report-cta p { color: var(--muted); max-width: 52ch; font-size: 0.9375rem; }

@media (min-width: 800px) {
  .report-cta { grid-template-columns: 1fr auto; align-items: center; padding: 30px 32px; gap: 32px; }
}

/* ============================================================
   Plan picker (2-up)
   ============================================================ */

.plans--two { grid-template-columns: 1fr; }

@media (min-width: 760px) {
  .plans--two { grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
  .plans--two .plan { border-bottom: 0; padding: 34px 30px 36px; border-left: 1px solid var(--line); }
  .plans--two .plan:first-child { border-left: 0; }
}

@media (max-width: 759px) {
  .plans--two .plan--feature { padding-inline: 20px; margin-inline: -20px; }
}

.plan__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}

.disclosure { color: var(--muted); font-size: var(--step--1); max-width: 62ch; margin-top: 18px; }

/* Section heads use .split with an empty second cell for desktop alignment.
   Stacked, that empty cell becomes a dead gap. */
.split > :empty { display: none; }
