/* ============================================================
   MailCull — Landing Proposal v9
   Direction: "museum meets modern SaaS."
   Old-master oil paintings as framed plates, fused with an
   Intercom-grade modern system: big LIGHT Inter headlines, warm
   off-white paper, ink-black primary buttons, Fin orange as a
   small accent, and a subtle geometric language (dotted halftone
   fields + corner crop-marks) on a few key moments.
   Base tokens: colors_and_type.css   Chrome: site-chrome.css
   No em-dashes in visible copy (brand rule).
   ============================================================ */

:root {
  /* Warm off-white paper, a touch cooler/lighter than the old cream */
  --paper:     #f6f3ec;
  --paper-2:   #efeae0;   /* plate / band tint */
  --panel:     #fffefb;   /* product card surface */
  --ink:       #14120e;
  --ink-soft:  #2a2620;
  --muted:     #6f6a60;
  --muted-2:   #908a7e;
  --line:      #ddd8cd;
  --line-2:    #c7c1b4;
  --accent:    #ff5600;
  --accent-dk: #cc4400;
  --good:      #067647;
  --warn:      #b54708;
  --danger:    #c41c1c;
  --dot:       rgba(20, 18, 12, 0.17);
  --dot-light: rgba(245, 241, 233, 0.22);

  --r-btn:  8px;
  --r-ui:   12px;
  --r-pill: 999px;

  --mono: "IBM Plex Mono", "Courier New", ui-monospace, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --shadow-ui:    0 1px 2px rgba(20, 18, 12, 0.04), 0 24px 56px -30px rgba(20, 18, 12, 0.22);
  --shadow-plate: 0 2px 4px rgba(20, 18, 12, 0.06), 0 30px 64px -28px rgba(20, 18, 12, 0.34);
  --shadow-lift:  0 3px 8px rgba(20, 18, 12, 0.08), 0 40px 80px -32px rgba(20, 18, 12, 0.30);

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  background-image:
    radial-gradient(1200px 680px at 78% -8%, rgba(255, 138, 77, 0.07), transparent 60%),
    linear-gradient(180deg, #f8f5ef 0%, var(--paper) 22%, var(--paper) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[id] { scroll-margin-top: 92px; }

/* Clip decorative bleed (hero dot field, full-bleed bands) without
   breaking the sticky header, which lives OUTSIDE <main>. */
main#main { overflow-x: clip; }


.shell { width: min(var(--maxw), calc(100% - 56px)); margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────
   TYPE
   ───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid rgba(255, 86, 0, 0.22);
  border-radius: var(--r-pill);
  background: rgba(255, 86, 0, 0.06);
}
.eyebrow.plain { color: var(--muted); border-color: var(--line-2); background: transparent; }

.display {
  font-size: clamp(46px, 6.1vw, 84px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-wrap: balance;
}
.h2 .mut, .display .mut { color: var(--muted-2); }
.lead {
  font-size: 19px;
  line-height: 1.56;
  color: var(--muted);
  max-width: 52ch;
  text-wrap: pretty;
}
.lead strong { color: var(--ink); font-weight: 500; }
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS + LINKS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-soft); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { background: rgba(20, 18, 12, 0.04); border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dk); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.link-arrow .ar { color: var(--accent); transition: transform 0.2s ease; }
.link-arrow:hover .ar { transform: translateX(4px); }
.underlink {
  font-size: 15px; color: var(--muted); font-weight: 500;
  border-bottom: 1px solid var(--line-2); padding-bottom: 1px;
}
.underlink:hover { color: var(--ink); border-color: var(--ink); }

/* ─────────────────────────────────────────────────────────────
   GEOMETRIC LANGUAGE — dotted halftone fields + crop-marks
   ───────────────────────────────────────────────────────────── */
.dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.dots i { position: absolute; display: block; }
/* soft pool: dense centre, fades out — sits behind a card */
.dots-pool {
  inset: -80px -64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, #000 18%, transparent 72%);
          mask-image: radial-gradient(ellipse 60% 60% at center, #000 18%, transparent 72%);
}
/* frame: ring of dots, centre stays clear (behind the pricing stage) */
.dots-frame {
  inset: -130px -96px;
  -webkit-mask-image: radial-gradient(ellipse 46% 52% at center, transparent 52%, #000 88%);
          mask-image: radial-gradient(ellipse 46% 52% at center, transparent 52%, #000 88%);
}
/* edge: dots cling to the far perimeter; large clear centre keeps text crisp */
.dots-edge {
  inset: 0;
  -webkit-mask-image: radial-gradient(ellipse 58% 62% at center, transparent 70%, #000 99%);
          mask-image: radial-gradient(ellipse 58% 62% at center, transparent 70%, #000 99%);
}
/* dark bands: dots pool toward the outer corners only */
.dots-dim {
  inset: 0;
  -webkit-mask-image: radial-gradient(ellipse 70% 78% at center, transparent 62%, #000 99%);
          mask-image: radial-gradient(ellipse 70% 78% at center, transparent 62%, #000 99%);
}
.values, .gallery, .honest, .trust, .faq, .process, .verdicts { position: relative; }
.values > *:not(.dots), .gallery > *:not(.dots), .honest > *:not(.dots), .trust > *:not(.dots), .faq > *:not(.dots), .process > *:not(.dots), .verdicts > *:not(.dots) { position: relative; z-index: 1; }

/* crop-mark corner ticks */
.tick {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--ink);
  z-index: 3;
}
.tick.acc { background: var(--accent); }
.tick.lt { background: var(--dot-light); }
.tick.tl { top: -3.5px; left: -3.5px; }
.tick.tr { top: -3.5px; right: -3.5px; }
.tick.bl { bottom: -3.5px; left: -3.5px; }
.tick.br { bottom: -3.5px; right: -3.5px; }

/* ─────────────────────────────────────────────────────────────
   MUSEUM PLATE (framed oil painting)
   ───────────────────────────────────────────────────────────── */
.plate-art { position: relative; }
.plate-art .mat {
  position: relative;
  padding: 16px;
  background: linear-gradient(155deg, #fdfbf6 0%, #f3eee3 55%, #ece5d8 100%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-plate);
}
/* thin gilt inner line on the mat — the museum-frame tell */
.plate-art .mat::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(176, 141, 87, 0.45);
  pointer-events: none;
  z-index: 1;
}
.plate-art .frame {
  position: relative;
  line-height: 0;
  border: 1px solid rgba(20, 18, 12, 0.55);
  overflow: hidden;
}
.plate-art .frame::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10), inset 0 0 40px rgba(20, 18, 12, 0.25);
  pointer-events: none;
}
.plate-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plate-cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plate-cap .no { color: var(--accent); }
.plate-cap .ti { color: var(--ink); }
.plate-cap .sub { color: var(--muted-2); letter-spacing: 0.06em; }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 68px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero { position: relative; overflow: clip; }
.hero > .hero-copy, .hero > .hero-demo { position: relative; z-index: 1; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 26px; max-width: 13ch; }
.hero h1 .mut { color: var(--muted-2); }
.hero .lead { font-size: 19.5px; max-width: 45ch; }
.hero-cta { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust span {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before { content: ""; width: 6px; height: 6px; background: var(--accent); flex: none; }

.hero-demo { position: relative; }
.hero-demo .dots-pool {
  inset: -70px -80px -84px -64px;
  -webkit-mask-image: radial-gradient(ellipse 52% 54% at center, transparent 40%, #000 62%, #000 82%, transparent 100%);
          mask-image: radial-gradient(ellipse 52% 54% at center, transparent 40%, #000 62%, #000 82%, transparent 100%);
}
/* extra dot field filling the empty right margin of the hero */
.dots-hero-r {
  position: absolute;
  z-index: 0;
  top: -60px;
  bottom: 8px;
  left: 54%;
  right: -120px;
  -webkit-mask-image: radial-gradient(120% 100% at 78% 30%, #000 22%, transparent 72%);
          mask-image: radial-gradient(120% 100% at 78% 30%, #000 22%, transparent 72%);
}
.demo-plate { position: relative; z-index: 1; }

/* ── Live check card ── */
.demo-card {
  position: relative; z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0) 90px),
    var(--panel);
  border: 1px solid var(--line-2);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lift);
}
.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 18px; background: #faf7f1; border-bottom: 1px solid var(--line);
}
.demo-bar .lbl { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.demo-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--good); }
.demo-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px rgba(6,118,71,0.16); }
.demo-body { padding: 20px 18px 18px; display: grid; gap: 16px; }
.demo-input-row { display: flex; gap: 9px; }
.demo-input-row input {
  flex: 1; min-width: 0; padding: 13px 15px;
  font-family: var(--mono); font-size: 14px; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-btn); outline: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}
.demo-input-row input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 86, 0, 0.14); }
.demo-input-row .btn { padding: 13px 20px; }
.check-steps { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-btn); overflow: hidden; }
.check-step {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px; font-family: var(--mono); font-size: 12px; color: var(--muted);
  white-space: nowrap; border-bottom: 1px solid var(--line); background: var(--panel);
  transition: background 0.22s ease;
}
.check-step:last-child { border-bottom: 0; }
.check-step .step-result { color: var(--line-2); font-weight: 700; }
.check-step.is-running { background: #faf7f1; }
.check-step.is-running .step-result { color: var(--accent); }
.check-step.is-done .step-result { color: var(--good); }
.check-step.is-done.is-flagged .step-result { color: var(--warn); }
.verdict { border: 1px solid var(--line); border-radius: var(--r-btn); padding: 15px 16px; display: grid; gap: 8px; background: #faf7f1; }
.verdict[hidden] { display: none; }
.verdict-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.verdict-addr { font-family: var(--mono); font-size: 13px; font-weight: 600; word-break: break-all; }
.verdict-copy { font-size: 13.5px; color: var(--muted); text-wrap: pretty; }
.verdict-copy strong { color: var(--ink); font-weight: 500; }
.verdict-evidence { margin-top: 4px; padding-top: 10px; border-top: 1px dashed var(--line); display: grid; gap: 5px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.verdict-evidence b { color: var(--ink); font-weight: 700; }
.demo-foot { padding: 12px 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); background: #faf7f1; }

/* status chips */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; border: 1px solid; white-space: nowrap; }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.chip-good   { color: var(--good);   border-color: rgba(6, 118, 71, 0.28);  background: rgba(6, 118, 71, 0.08); }
.chip-warn   { color: var(--warn);   border-color: rgba(181, 71, 8, 0.28);  background: rgba(181, 71, 8, 0.08); }
.chip-danger { color: var(--danger); border-color: rgba(196, 28, 28, 0.28); background: rgba(196, 28, 28, 0.07); }
.chip-muted  { color: var(--muted);  border-color: var(--line-2);           background: var(--paper-2); }

/* ── Checks ticker ── */
.ticker {
  position: relative; overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--line);
  background: var(--paper-2);
  margin-inline: calc(50% - 50vw);
}
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 1; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(to right, var(--paper-2), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--paper-2), transparent); }
.ticker-track { display: inline-flex; align-items: center; gap: 32px; padding: 15px 0; }
.ticker-track span { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 32px; }
.ticker-track span::after { content: "\25C6"; font-size: 6px; color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: tk 44s linear infinite; }
  @keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }
}

/* ─────────────────────────────────────────────────────────────
   SECTION RHYTHM + BANDS
   ───────────────────────────────────────────────────────────── */
.sec { padding: 116px 0; }
.sec-head { max-width: 62ch; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head .lead { margin-top: 20px; }
.band { margin-inline: calc(50% - 50vw); padding-inline: max(calc(50vw - 50%), 28px); }
.band-tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.band-inner { width: min(var(--maxw), 100%); margin: 0 auto; }

/* hairline section divider with a small diamond crop-mark */
.divider { padding: 0; }
.rule { position: relative; width: 100%; height: 1px; background: var(--line); }
.rule::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px;
  background: var(--paper); border: 1px solid var(--line-2);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ─────────────────────────────────────────────────────────────
   GUARANTEES strip (real promises, fills the trust→pricing gap)
   ───────────────────────────────────────────────────────────── */
.guarantees { padding-block: 44px; }
.guar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.guar { display: flex; gap: 14px; align-items: flex-start; }
.guar-ic { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 9px; background: var(--panel); }
.guar b { display: block; font-size: 15px; font-weight: 600; letter-spacing: -0.2px; line-height: 1.25; }
.guar span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--muted); line-height: 1.4; }

/* ── Guarantee headline beat (above the 4 promises) ── */
.guar-lead { margin: 0 auto 36px; max-width: 760px; text-align: center; }
.guar-lead .guar-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.guar-lead .guar-mark::before { content: ""; width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.guar-lead p { font-size: 22px; line-height: 1.4; letter-spacing: -0.4px; color: var(--ink); text-wrap: balance; }
.guar-lead p strong { font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   HERO TRUST STRIP (honest, badge-free, directly under hero)
   ───────────────────────────────────────────────────────────── */
.trust-strip { margin-inline: calc(50% - 50vw); padding-inline: max(calc(50vw - 50%), 28px); background: var(--paper-2); border-block: 1px solid var(--line); }
.trust-strip-inner {
  width: min(var(--maxw), 100%); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 36px; padding: 18px 0;
}
.trust-strip-inner span {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.trust-strip-inner span::before { content: ""; width: 7px; height: 7px; flex: none; background: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   PROCESS — how it works in three acts (paintings + steps merged)
   ───────────────────────────────────────────────────────────── */
.process { padding-block: 112px; }
.process .sec-head { max-width: 62ch; margin-bottom: 52px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-step { display: grid; gap: 0; align-content: start; }
.process-grid .plate-art .frame { aspect-ratio: 4 / 5; }
.process-body { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.process-n {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.process-n::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.process-body h3 { margin-top: 16px; font-size: 22px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.18; }
.process-body p { margin-top: 11px; font-size: 15.5px; color: var(--muted); text-wrap: pretty; }

/* ── HOW IT WORKS (3 steps) ── */
.how .sec-head { margin-bottom: 52px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); }
.step { position: relative; padding: 34px 32px 32px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; padding-left: 4px; }
.step:last-child { padding-right: 4px; }
.step-n {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.step-n::after { content: ""; width: 28px; height: 1px; background: var(--line-2); }
.step h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.18; }
.step p { margin-top: 11px; font-size: 15.5px; color: var(--muted); text-wrap: pretty; }

/* ─────────────────────────────────────────────────────────────
   LOSS-AVERSION band
   ───────────────────────────────────────────────────────────── */
.loss { margin-inline: calc(50% - 50vw); padding: 64px max(calc(50vw - 50%), 28px); background: var(--paper-2); border-block: 1px solid var(--line); }
.loss-inner { width: min(880px, 100%); margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; }
.loss-mark { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 10px; background: var(--panel); margin-top: 4px; }
.loss-inner p { font-size: 23px; line-height: 1.42; letter-spacing: -0.5px; color: var(--ink); text-wrap: pretty; }
.loss-inner p strong { font-weight: 600; color: var(--accent-dk); }

/* ─────────────────────────────────────────────────────────────
   FOUR VERDICTS (own scannable section)
   ───────────────────────────────────────────────────────────── */
.verdicts { padding-block: 104px; }
.verdicts .sec-head { margin-bottom: 48px; }
.verdicts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vcard { position: relative; background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-ui); padding: 26px 24px 24px; display: grid; gap: 12px; align-content: start; box-shadow: var(--shadow-ui); }
.vcard .vtop { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vcard .vno { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted-2); }
.vcard h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; }
.vcard p { font-size: 14.5px; color: var(--muted); line-height: 1.5; text-wrap: pretty; }
.vcard.is-good { border-top: 3px solid var(--good); }
.vcard.is-warn { border-top: 3px solid var(--warn); }
.vcard.is-danger { border-top: 3px solid var(--danger); }
.vcard.is-unknown { border-top: 3px solid var(--muted-2); }

/* ── Honest accuracy card (replaces result panel on the right) ── */
.accuracy-card { position: relative; background: radial-gradient(420px 320px at 78% 0%, #221c13, #14120e 70%); color: #f4efe7; border: 1px solid #14120e; border-radius: var(--r-ui); padding: 40px 36px; box-shadow: var(--shadow-plate); display: grid; gap: 10px; align-content: center; }
.accuracy-card .ac-k { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #ff8a4d; }
.accuracy-card .ac-num { font-size: clamp(54px, 6vw, 76px); font-weight: 400; letter-spacing: -2.6px; line-height: 1; }
.accuracy-card .ac-sub { font-size: 16px; color: #d9d4ca; }
.accuracy-card .ac-d { margin-top: 12px; padding-top: 16px; border-top: 1px solid #2f2a23; font-size: 14.5px; color: #a8a195; line-height: 1.55; text-wrap: pretty; }
.accuracy-card .ac-d strong { color: #f4efe7; font-weight: 500; }

@media (max-width: 1000px) {
  .how-grid { grid-template-columns: 1fr; border-top: 0; }
  .step { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0; }
  .step:first-child { border-top: 0; }
  .verdicts-grid { grid-template-columns: 1fr 1fr; }
  .loss-inner p { font-size: 20px; }
  .how, .verdicts { padding-block: 72px; }
}
@media (max-width: 600px) {
  .verdicts-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 14px 24px; }
  .loss-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────────────────────────────────────────────────────────
   VALUE PROPS
   ───────────────────────────────────────────────────────────── */
.values { padding-block: 84px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); }
.value { padding: 36px 32px 34px; border-left: 1px solid var(--line); }
.value:first-child { border-left: 0; padding-left: 4px; }
.value:last-child { padding-right: 4px; }
.value-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.value-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 10px; background: var(--panel); }
.value-no { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted-2); }
.value h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.4px; line-height: 1.2; }
.value p { margin-top: 11px; font-size: 15.5px; color: var(--muted); text-wrap: pretty; }
.values-honesty {
  margin-top: 40px; display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border: 1px solid var(--line-2); border-radius: var(--r-ui); background: var(--panel);
}
.values-honesty .mk { width: 9px; height: 9px; flex: none; background: var(--accent); transform: rotate(45deg); }
.values-honesty p { font-size: 15.5px; color: var(--muted); text-wrap: pretty; }
.values-honesty p strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   GALLERY (three museum plates)
   ───────────────────────────────────────────────────────────── */
.gallery { padding-block: 84px; }
.gallery .sec-head { max-width: 60ch; margin-bottom: 52px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gallery-grid .plate-art .frame { aspect-ratio: 4 / 5; }

/* ─────────────────────────────────────────────────────────────
   HONEST RESULTS — balanced split (product panel opposite copy)
   ───────────────────────────────────────────────────────────── */
.honest { padding-block: 92px; }
.honest .sec-head { max-width: 64ch; margin-bottom: 56px; }
.honest-row {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px; align-items: center;
}
.honest-copy h3 { font-size: 25px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.15; }
.honest-copy > p { margin-top: 14px; font-size: 17px; color: var(--muted); max-width: 44ch; text-wrap: pretty; }
.honest-points { margin-top: 26px; display: grid; gap: 0; }
.honest-points > div { padding: 18px 0; border-top: 1px solid var(--line); display: grid; gap: 5px; }
.honest-points dt { font-size: 16.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.2px; }
.honest-points dd { font-size: 15px; color: var(--muted); text-wrap: pretty; }
.honest-cta { margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }

/* Product result panel (the balanced right side) */
.result-panel { position: relative; }
.result-panel .tick { z-index: 4; }
.result-card { position: relative; z-index: 1; background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-ui); overflow: hidden; box-shadow: var(--shadow-lift); }
.result-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 18px; background: #faf7f1; border-bottom: 1px solid var(--line); }
.result-bar .t { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.result-bar .n { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.result-rows { display: grid; }
.r-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.r-row:last-child { border-bottom: 0; }
.r-addr { font-family: var(--mono); font-size: 13px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.r-note { margin-top: 3px; font-size: 12.5px; color: var(--muted); white-space: normal; }
.result-foot { padding: 13px 18px; border-top: 1px solid var(--line); background: #faf7f1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.result-foot .sum { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.result-foot .sum b { color: var(--ink); font-weight: 600; }
.result-foot a { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.result-foot a .ar { color: var(--accent); }
.result-foot a:hover { color: var(--ink); }

/* outcome links row */
.outcome-row { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.outcome-link { display: grid; gap: 6px; padding: 26px 28px; background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-ui); box-shadow: var(--shadow-ui); transition: transform 0.2s ease, border-color 0.2s ease; }
.outcome-link:hover { transform: translateY(-2px); border-color: var(--ink); }
.outcome-link .ol-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 19px; font-weight: 500; letter-spacing: -0.3px; }
.outcome-link .ol-h .ar { color: var(--accent); transition: transform 0.2s ease; }
.outcome-link:hover .ol-h .ar { transform: translateX(4px); }
.outcome-link .ol-d { font-size: 15px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   DEVELOPERS (dark band)
   ───────────────────────────────────────────────────────────── */
.dev { position: relative; margin-inline: calc(50% - 50vw); padding: 104px max(calc(50vw - 50%), 28px); background: radial-gradient(900px 520px at 82% 6%, #211c14, #14120e 64%); color: #f4efe7; overflow: hidden; }
.dev .dots { inset: 0; }
.dev-inner { position: relative; z-index: 1; width: min(var(--maxw), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 56px; align-items: center; }
.dev .eyebrow { color: #ff8a4d; border-color: rgba(255, 138, 77, 0.3); background: rgba(255, 138, 77, 0.08); }
.dev h2 { margin: 18px 0 0; color: #f4efe7; }
.dev h2 .mut { color: #8a8478; }
.dev p { margin-top: 20px; font-size: 17.5px; line-height: 1.6; color: #a8a195; max-width: 46ch; text-wrap: pretty; }
.dev p strong { color: #f4efe7; font-weight: 500; }
.dev-cta { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.dev-cta .btn-ink { background: var(--accent); }
.dev-cta .btn-ink:hover { background: var(--accent-dk); }
.dev-cta .btn-line { color: #f4efe7; border-color: #3a352e; }
.dev-cta .btn-line:hover { background: rgba(255,255,255,0.05); border-color: #f4efe7; }
.dev-tags { margin-top: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.dev-tags span { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #a8a195; border: 1px solid #2f2a23; border-radius: 9px; padding: 6px 12px; background: rgba(255,255,255,0.03); }
.code-block { position: relative; z-index: 1; background: #0c0a07; border: 1px solid #2c271f; border-radius: var(--r-ui); padding: 24px; font-family: var(--mono); font-size: 13px; line-height: 1.78; color: #d9d4ca; overflow-x: auto; box-shadow: 0 30px 64px -30px rgba(0,0,0,0.7); }
.code-block .c-dim { color: #7b766c; }
.code-block .c-acc { color: #ff8a4d; }
.code-block .c-good { color: #5fc08c; }
.code-wrap { position: relative; }
.code-wrap .tick { background: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   TRUST (copy + museum plate)
   ───────────────────────────────────────────────────────────── */
.trust { padding-block: 88px; }
.trust-row { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); gap: 60px; align-items: center; }
.trust-row .sec-head { margin-bottom: 0; }
.promise-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.promise { padding: 4px 32px; border-left: 1px solid var(--line-2); }
.promise:first-child { padding-left: 0; border-left: 0; }
.promise-k { display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.promise h4 { margin-top: 14px; font-size: 20px; font-weight: 500; letter-spacing: -0.3px; line-height: 1.2; }
.promise p { margin-top: 10px; font-size: 15px; color: var(--muted); max-width: 32ch; text-wrap: pretty; }
.trust-art .frame { aspect-ratio: 4 / 5; }

/* ─────────────────────────────────────────────────────────────
   PRICING (the geometric moment)
   ───────────────────────────────────────────────────────────── */
.pricing { padding-block: 96px; }
.pricing .sec-head { max-width: 70ch; margin: 0 auto 56px; text-align: center; }
.pricing .sec-head .eyebrow { margin-bottom: 0; }
.pricing .sec-head .h2 { margin-top: 18px; }
.price-compare { margin: 18px auto 0; font-size: 16px; color: var(--muted); max-width: 60ch; }
.price-compare s { text-decoration-color: var(--danger); text-decoration-thickness: 1.5px; margin: 0 3px; }
.price-compare strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.price-compare strong em { font-style: normal; color: var(--accent); }

.price-stage { position: relative; max-width: 1100px; margin: 0 auto; padding: 34px 36px 38px; background: var(--paper-2); border: 1px solid var(--line-2); }

/* PRICING as a horizontal ledger: one row per plan, the three differences in
   fixed columns so you compare straight down. Pro is the dark band. */
.ptable { position: relative; z-index: 1; display: grid; gap: 10px; }
.ptable-row { display: grid; grid-template-columns: minmax(208px, 1.35fr) 1fr 1fr 1.08fr minmax(186px, 0.95fr); }

/* column titles, written once */
.ptable-head { padding-top: 2px; }
.ptable-head .pth { padding-left: 25px; align-self: center; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted-2); }

/* one plan = one ledger line, internal column rules keep values from floating */
.ptier { position: relative; background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-ui); box-shadow: var(--shadow-ui); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.ptier > * { display: flex; align-items: center; min-height: 94px; padding: 20px 25px; }
.ptier > * + * { border-left: 1px solid var(--line); }
.ptier:not(.is-featured):hover { transform: translateY(-1px); border-color: var(--line-2); box-shadow: 0 2px 4px rgba(20,18,12,0.05), 0 28px 56px -34px rgba(20,18,12,0.30); }

.ptier-plan { flex-direction: column; align-items: flex-start; justify-content: center; gap: 9px; }
.ptier-name { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); }
.ptier-chip { font-family: var(--mono); font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 3px 7px; }
.ptier-price { display: flex; align-items: baseline; gap: 7px; }
.ptier-amt { font-size: 32px; font-weight: 400; letter-spacing: -1.5px; line-height: 1; color: var(--ink); font-feature-settings: "tnum" 1; }
.ptier-amt.is-text { font-size: 25px; letter-spacing: -0.7px; }
.ptier-per { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

.ptier-v { font-size: 20px; font-weight: 500; letter-spacing: -0.4px; color: var(--ink); font-feature-settings: "tnum" 1; }
.ptier-v .vmain { display: inline-flex; align-items: center; gap: 7px; }
.ptier-v .u { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); }
/* Column labels: shown once by .ptable-head on desktop, but kept per-cell in the
   a11y tree (visually hidden, NOT display:none) so a screen reader hears
   "Validation checks 500 / mo" instead of a bare "500 / mo". */
.ptier-v .vlab { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.ptier-v.api { font-size: 16px; }
/* --muted (not --muted-2) clears WCAG AA contrast on the light Free row. */
.ptier-v.is-no { color: var(--muted); }
.mk { flex: none; display: inline-block; }
.mk-yes { width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.mk-no { width: 10px; height: 1.5px; background: var(--line-2); }

.ptier-cta { flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; }
/* Keep ledger CTAs on one line: the logged-in labels ("Manage billing",
   "Dashboard") are longer than the guest ones ("Go Pro") and would wrap in the
   narrow column. Trim the side padding + font a touch and never wrap. */
.ptier-cta .btn { width: 100%; padding-left: 16px; padding-right: 16px; font-size: 14px; white-space: nowrap; }
.ptier-foot { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 7px; line-height: 1.35; }
.ptier-foot::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--good); flex: none; }
.ptier-foot.is-plain::before { background: var(--line-2); }

/* Pro — the dark ledger band that draws the eye */
.ptier.is-featured { background: radial-gradient(680px 280px at 14% -36%, #241d14, #14120e 72%); border-color: #14120e; color: #f4efe7; box-shadow: var(--shadow-plate); }
.ptier.is-featured > * + * { border-left-color: #322c24; }
.ptier.is-featured .ptier-name { color: #ff8a4d; }
.ptier.is-featured .ptier-amt { color: #f7f3ec; }
.ptier.is-featured .ptier-per,
.ptier.is-featured .ptier-v .u { color: #a8a195; }
.ptier.is-featured .ptier-v { color: #f4efe7; }
.ptier.is-featured .ptier-foot { color: #c9c3b8; }
.ptier.is-featured .ptier-foot::before { background: #5fc08c; }

/* same engine on every plan — said once, below the table */
.price-engine { max-width: 620px; margin: 30px auto 0; text-align: center; font-size: 15.5px; line-height: 1.62; color: var(--muted); text-wrap: pretty; }
.price-engine strong { color: var(--ink); font-weight: 600; }

/* pricing — tablet + mobile: drop the header, stack each row into a card */
@media (max-width: 1000px) {
  .ptable-head { display: none; }
  .ptier { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; padding: 22px 22px 24px; }
  .ptier > * { padding: 0; min-height: 0; border-left: 0; }
  .ptier > * + * { border-left: 0; }
  .ptier-plan { grid-column: 1 / -1; flex-direction: row; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .ptier.is-featured .ptier-plan { border-bottom-color: #322c24; }
  .ptier-v { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ptier-v.api { grid-column: 1 / -1; }
  .ptier-v .vlab { position: static; width: auto; height: auto; overflow: visible; clip-path: none; white-space: normal; font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
  .ptier.is-featured .ptier-v .vlab { color: #a8a195; }
  .ptier-cta { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .ptier { grid-template-columns: 1fr; }
  .ptier-v, .ptier-v.api { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq { padding-block: 88px; }
.faq-row { display: grid; grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr); gap: 48px; align-items: start; }
.faq-list { border-top: 1px solid var(--line-2); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-size: 18px; font-weight: 500; letter-spacing: -0.3px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 20px; font-weight: 700; }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { padding: 0 4px 24px; font-size: 16px; color: var(--muted); max-width: 80ch; text-wrap: pretty; }
.faq-list details p a { color: var(--accent-dk); text-decoration: underline; text-underline-offset: 2px; }
.faq-list details p strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   FINAL CTA (dark band + plate)
   ───────────────────────────────────────────────────────────── */
.final { position: relative; margin-inline: calc(50% - 50vw); padding: 104px max(calc(50vw - 50%), 28px); background: radial-gradient(820px 480px at 80% 0%, #221c13, #14120e 62%); color: #f5f1ea; overflow: hidden; }
.final .dots { inset: 0; }
.final-inner { position: relative; z-index: 1; width: min(var(--maxw), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 60px; align-items: center; }
.final h2 { color: #f5f1ea; }
.final h2 .mut { color: #8a8478; }
.final p { margin-top: 18px; font-size: 18px; line-height: 1.6; color: #a8a195; max-width: 44ch; text-wrap: pretty; }
.final-cta { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.final-cta .underlink { color: #a8a195; border-color: #3a352e; }
.final-cta .underlink:hover { color: #f5f1ea; border-color: #f5f1ea; }
.final-art .frame { aspect-ratio: 4 / 5; }
.final-art .mat { background: linear-gradient(160deg, #211d16, #16130e); border-color: #322c24; }
.final-art .plate-cap .ti { color: #d8d3c9; }
.final-art .plate-cap .no { color: var(--accent); }

/* ── Reveal ── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
  [data-reveal].visible { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .shell { width: calc(100% - 40px); }
  .guar-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { grid-template-columns: 1fr; gap: 44px; padding: 48px 0 64px; }
  .hero h1 { max-width: 18ch; }
  .hero-demo .dots-pool { inset: -40px; }
  .values-grid { grid-template-columns: 1fr; border-top: 0; }
  .value { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0; }
  .value:first-child { border-top: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 22px; max-width: 460px; }
  .gallery-grid .plate-art .frame { aspect-ratio: 16 / 11; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; max-width: 460px; }
  .process-grid .plate-art .frame { aspect-ratio: 16 / 10; }
  .process { padding-block: 80px; }
  .honest-row { grid-template-columns: 1fr; gap: 36px; }
  .outcome-row { grid-template-columns: 1fr; }
  .dev-inner, .final-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-row { grid-template-columns: 1fr; gap: 40px; }
  .trust-art { max-width: 380px; }
  .price-stage { padding: 24px; }
  .faq-row { grid-template-columns: 1fr; gap: 18px; }
  .final-art { max-width: 340px; }
  .sec, .values, .gallery, .honest, .trust, .pricing, .faq { padding-block: 84px; }
  .dev, .final { padding-block: 72px; }
}
@media (max-width: 600px) {
  .shell { width: calc(100% - 32px); }
  .guar-grid { grid-template-columns: 1fr; gap: 22px; }
  .promise-grid { grid-template-columns: 1fr; gap: 28px; }
  .promise { padding: 0; }
  .display { font-size: clamp(40px, 12vw, 56px); }
}
