/*
  WorkCatcher landing site — full visual system.

  Upstream:   templates/base.html links this as the only stylesheet.
  Downstream: none (end of the chain).
  Flow:       Implements the Claude Design WorkCatcher handoff
              (../design/workcatcher-handoff/) per jinja-handoff.md. All hex
              colors live in the :root token block ONLY — everything below
              reads tokens (alpha variants of the text color are the one
              allowed rgba() pattern, for borders/washes). Accent ships as
              safety yellow #fbbf24 (approved in final design review; the
              file default was orange #ff5c1f — flip --accent to retheme).
              Money green is for lead/job dollar values ONLY, never prices.
*/

:root {
  --ground: #161826;
  --band: #1b1d29;
  --surface: #232532;
  --text: #e9e9ed;
  --copy: #b9bac6;
  --bright: #d0d1da;
  --muted: #a3a4b2;
  /* Lightened from #6d6e7e (3.0–3.7:1, failed AA on every surface and it
     carried the TRUST copy). #8a8b99 clears AA everywhere. */
  --faint: #8a8b99;
  --accent: #fbbf24;
  --money: #4ade80;
  --ink: #14151d;
  --warn: #fbbf24;
  --bezel: #0a0b11;
  --notch: #05060a;
  --screen: #12131d;
  --chip-bg: #3a3d52;
  --step-idle: #7b7d90; /* was #565866 — 2.5:1, failed even large-text AA */
  --missed: #f0a08b;
  --radius: 8px;
  --border: rgba(233, 233, 237, 0.09);
  /* In-phone demo dashboard (light theme, mirrors the real product UI) */
  --dash-bg: #eef1f6;
  --dash-card: #ffffff;
  --dash-ink: #1a2233;
  --dash-muted: #5b6472;
  --dash-line: #e3e7ee;
  --dash-blue: #2e6bff;
  /* Darkened for AA on white — the originals measured 2.7–4.4:1 and sit on
     8.5–11px labels inside the mock. */
  --dash-green: #17743d;
  --dash-red: #c93a3a;
  --dash-amber: #9a6510;
  --dash-purple: #7a4fd6;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: Barlow, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}

/* ── Base ─────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

::selection { background: color-mix(in oklab, var(--accent) 40%, transparent); }

h1, h2, h3, p { margin: 0; }

/* One global focus ring: before this, only the phone mock had focus styles,
   so every control on the actual conversion path fell back to the UA default
   on a near-black background. */
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 100;
}
.skip:focus { left: 0; color: var(--ink); }

.wrap { max-width: 1400px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* !important so it beats later display rules (e.g. .phone-screen's flex). */
.is-hidden { display: none !important; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.eyebrow .tick { width: 18px; height: 2px; background: var(--accent); flex: none; }
.eyebrow-center { justify-content: center; }

.h-xl {
  /* Mobile floor is low on purpose: the headline is long, and at 46px it
     filled a 375px viewport by itself and pushed the phone below the fold. */
  font: 700 clamp(33px, 5.6vw, 78px)/0.96 var(--font-head);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.h-lg {
  font: 700 clamp(30px, 4.5vw, 42px)/0.98 var(--font-head);
  text-transform: uppercase;
}
.accent { color: var(--accent); }
.money { color: var(--money); }

.btn {
  display: inline-block;
  font: 600 16px var(--font-body);
  padding: 13px 22px;
  border-radius: var(--radius);
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { filter: brightness(1.1); color: var(--ink); }
.btn-ghost { border: 1px solid rgba(233, 233, 237, 0.25); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }
.btn-sm { font-size: 15.5px; padding: 10px 18px; }

.mono-note {
  font: 600 12px/1.5 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
}

/* ── Animations ───────────────────────────────────────────────────────── */

@keyframes crSettle {
  from { opacity: 0; transform: translateY(-28px) scale(0.96); }
  65% { opacity: 1; transform: translateY(3px) scale(1); }
  to { opacity: 1; transform: none; }
}
@keyframes crSettle2 {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 0.55; transform: none; }
}
@keyframes crIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes crPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Scroll reveals — site.js adds .reveal-pending below the fold, then
   .revealed on intersection. Without JS nothing is ever hidden. */
[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Nav ──────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--ground) 85%, transparent);
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
}
.nav-row { display: flex; align-items: center; height: 72px; }
.brand {
  font: 700 23px/1 var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand:hover { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 26px; font: 500 15.5px var(--font-body); }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--accent); }

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    640px 420px at 76% 40%,
    color-mix(in oklab, var(--accent) 10%, transparent),
    transparent 70%
  );
}
.hero-grid {
  padding-top: clamp(18px, 2.5vw, 32px);
  padding-bottom: clamp(18px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.hero h1 { margin-top: 14px; }
.lede {
  margin-top: 16px;
  font: 400 17.5px/1.6 var(--font-body);
  color: var(--copy);
  max-width: 47ch;
  text-wrap: pretty;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-note { margin-top: 16px; }
.hero-phone-col { display: flex; justify-content: center; }

/* Lock-screen phone mockup — proportioned like a real iPhone (~1:2.1). */
.phone {
  width: min(300px, 86vw);
  background: var(--bezel);
  border: 1px solid rgba(233, 233, 237, 0.14);
  border-radius: 46px;
  padding: 11px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(165deg, #232743 0%, #141626 55%, #0e0f1a 100%);
  display: flex;
  flex-direction: column;
  min-height: 610px;
}
.phone-notch { width: 88px; height: 26px; background: var(--notch); border-radius: 14px; margin: 12px auto 0; }
.phone-clockblock { text-align: center; margin-top: 24px; }
.phone-clock { font: 500 60px/1 var(--font-head); }
.phone-date { font: 500 13px var(--font-body); color: var(--copy); margin-top: 3px; }
.notif-stack { margin: auto 10px 10px; display: flex; flex-direction: column; gap: 8px; }

.notif {
  background: rgba(38, 41, 58, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(233, 233, 237, 0.1);
  border-radius: 16px;
  padding: 12px 13px;
  animation: crSettle 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.5s both;
}
.notif-head { display: flex; align-items: center; gap: 8px; }
.app-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.app-icon::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.notif-app { font: 600 10px var(--font-mono); letter-spacing: 0.12em; color: var(--muted); }
.notif-when { margin-left: auto; font: 400 11px var(--font-body); color: var(--muted); }
.notif-title { margin-top: 8px; font: 600 14px/1.35 var(--font-body); }
.notif-title .money { font-weight: 700; }
.notif-body { margin-top: 3px; font: 400 12.5px/1.45 var(--font-body); color: var(--copy); }
.notif-urgency { display: flex; align-items: center; gap: 6px; margin-top: 9px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.dot-pulse { animation: crPulse 2s 1.6s infinite; }
.notif-urgency span:last-child { font: 500 11px var(--font-body); color: var(--bright); }

.notif-dim {
  border-color: rgba(233, 233, 237, 0.08);
  padding: 11px 13px;
  opacity: 0.55;
  animation: crSettle2 0.6s ease 1.15s both;
}
.notif-dim .app-icon { width: 16px; height: 16px; border-radius: 5px; background: var(--chip-bg); }
.notif-dim .app-icon::after { width: 7px; height: 7px; }
.notif-dim .notif-app { font-size: 9px; }
.notif-dim .notif-when { font-size: 10.5px; }
.notif-dim .notif-title { margin-top: 6px; font: 600 12.5px/1.3 var(--font-body); }
.notif-dim .notif-title .money { font-weight: 600; }
.notif-dim .notif-body { margin-top: 2px; font-size: 11.5px; line-height: 1.4; }

/* Clickable notification — the hero phone acts like a tiny emulator. The
   accent ring pulses so visitors know the mock is explorable, not a picture. */
@keyframes crTapHint {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 0%, transparent); }
}
.notif-btn {
  cursor: pointer;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  animation: crTapHint 2.4s ease-out 1.8s infinite;
  transition: border-color 0.2s, transform 0.2s;
}
.notif-btn:hover,
.notif-btn:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.notif-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.tap-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 700 8.5px var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--accent);
  border-radius: 4px;
  padding: 3px 6px;
  text-transform: uppercase;
}
.notif-btn .notif-when { margin-left: 0; }

/* In-phone demo dashboard (shown after tapping the notification) */
.phone-dash { background: var(--screen); }
.dash-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
}
/* Back control reads as a button, with a label — an unlabeled arrow on a
   mock screen is easy to miss. */
.dash-back {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  color: var(--accent);
  border-radius: 7px;
  font: 700 11px var(--font-mono);
  letter-spacing: 0.06em;
  padding: 6px 11px;
  cursor: pointer;
  flex: none;
  text-transform: uppercase;
}
.dash-back:hover { background: var(--accent); color: var(--ink); }
.dash-back:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.lc-go { margin-left: 9px; font-size: 15px; font-weight: 700; color: var(--dash-blue); }
.dash-url {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
  font: 500 11.5px var(--font-mono);
  color: var(--muted);
  background: var(--ground);
  border: 1px solid rgba(233, 233, 237, 0.1);
  border-radius: 7px;
  padding: 6px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-url .live-dot { color: var(--money); }
/* The light dashboard app inside the phone — mirrors the product's #demo
   view (business header, filter pills, sort toggle, lead cards). System
   font on purpose: it's a different app, not the marketing site. */
.dash-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dash-bg);
  color: var(--dash-ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}
.dash-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  background: var(--dash-card);
}
.dash-avatar {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--dash-blue);
  color: var(--dash-card);
  font: 700 12px/24px system-ui, sans-serif;
  text-align: center;
  flex: none;
}
.dash-biz { font-size: 13px; font-weight: 700; }
.dash-sub { font-size: 9.5px; font-weight: 500; color: var(--dash-muted); }
.dash-summary {
  padding: 4px 12px 8px;
  background: var(--dash-card);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--dash-muted);
}
.dash-try {
  padding: 7px 12px 0;
  font: 600 9.5px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--dash-blue);
  text-transform: uppercase;
}
.is-inert { opacity: 0.5; }
.dash-pills {
  display: flex;
  gap: 6px;
  padding: 6px 12px 8px;
  background: var(--dash-card);
  overflow: hidden;
}
.pill {
  font-size: 10px;
  font-weight: 600;
  color: var(--dash-muted);
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
}
.pill b { font-weight: 600; opacity: 0.75; }
.pill-on {
  background: var(--dash-blue);
  border-color: var(--dash-blue);
  color: var(--dash-card);
}
.dash-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 8px;
  background: var(--dash-card);
  border-bottom: 1px solid var(--dash-line);
  font: 600 9px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--dash-muted);
}
.sort-toggle {
  display: flex;
  background: var(--dash-bg);
  border-radius: 7px;
  padding: 2px;
}
.sort-btn {
  appearance: none;
  border: 0;
  background: none;
  font: 600 11px system-ui, sans-serif;
  padding: 7px 12px; /* >=24px tall — WCAG 2.5.8 */
  border-radius: 5px;
  color: var(--dash-muted);
  cursor: pointer;
}
.sort-btn.sort-on {
  background: var(--dash-card);
  color: var(--dash-ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.sort-btn:focus-visible { outline: 2px solid var(--dash-blue); outline-offset: 1px; }
.lead-cards {
  flex: 1;
  overflow: hidden;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-card {
  appearance: none;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid transparent;
  background: var(--dash-card);
  border-radius: 10px;
  padding: 10px 11px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  flex: none;
  cursor: pointer;
  display: block;
  transition: border-color 0.15s, transform 0.15s;
}
.lead-card:hover,
.lead-card:focus-visible {
  border-color: var(--dash-blue);
  transform: translateY(-1px);
}
.lead-card:focus-visible { outline: 2px solid var(--dash-blue); outline-offset: 1px; }
.lc-top { display: flex; align-items: center; gap: 6px; }
.lc-urg { text-transform: uppercase; }
.lc-name { font-size: 12.5px; font-weight: 700; }
.lc-urg {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font: 700 8.5px var(--font-mono);
  letter-spacing: 0.08em;
}
.lc-urg .u-dot { width: 5px; height: 5px; border-radius: 50%; }
.lc-urg.high { color: var(--dash-red); }
.lc-urg.high .u-dot { background: var(--dash-red); }
.lc-urg.medium { color: var(--dash-amber); }
.lc-urg.medium .u-dot { background: var(--dash-amber); }
.lc-urg.low { color: var(--dash-muted); }
.lc-urg.low .u-dot { background: var(--dash-muted); }
.lc-sum {
  display: -webkit-box;
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--dash-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-est { display: block; margin-top: 5px; font-size: 11.5px; font-weight: 700; color: var(--dash-green); }
.lc-foot { display: flex; align-items: center; margin-top: 6px; }
.lc-age { font-size: 9.5px; font-weight: 500; color: var(--dash-muted); }
.lc-status {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}
.lc-status.s-new {
  background: color-mix(in srgb, var(--dash-blue) 12%, var(--dash-card));
  color: var(--dash-blue);
}
.lc-status.s-engaged {
  background: color-mix(in srgb, var(--dash-purple) 12%, var(--dash-card));
  color: var(--dash-purple);
}
.lc-status.s-booked {
  background: color-mix(in srgb, var(--dash-green) 12%, var(--dash-card));
  color: var(--dash-green);
}
/* Lead detail — the third screen, opened by tapping a lead card. */
.ld-head {
  padding: 12px;
  background: var(--dash-card);
  border-bottom: 1px solid var(--dash-line);
}
.ld-name { font-size: 14px; font-weight: 700; }
.ld-est { margin-top: 6px; font-size: 20px; font-weight: 800; color: var(--dash-green); }
.ld-job { margin-top: 3px; font-size: 10.5px; color: var(--dash-muted); }
.ld-body { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.ld-block {
  background: var(--dash-card);
  border-radius: 10px;
  padding: 10px 11px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}
.ld-block-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
}
.ld-play {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dash-blue);
  display: grid;
  place-items: center;
  flex: none;
}
.ld-play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid var(--dash-card);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  margin-left: 1px;
}
.ld-tag {
  margin-left: auto;
  font: 700 8.5px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--dash-green);
  text-transform: uppercase;
}
.ld-quote {
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.5;
  font-style: italic;
  color: var(--dash-muted);
}
.ld-sent { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ld-bubble {
  max-width: 90%;
  background: var(--dash-blue);
  color: var(--dash-card);
  border-radius: 12px 12px 3px 12px;
  padding: 8px 11px;
  font-size: 10.5px;
  line-height: 1.45;
}
.ld-sent-cap {
  font: 600 8.5px var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--dash-muted);
  text-transform: uppercase;
}
.ld-actions { display: flex; gap: 7px; align-items: center; }
.ld-call {
  background: var(--dash-green);
  color: var(--dash-card);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 7px;
}
.ld-chip {
  border: 1px solid var(--dash-line);
  color: var(--dash-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 7px;
}
.ld-note {
  margin-top: auto;
  text-align: center;
  font: 500 9px var(--font-mono);
  color: var(--dash-muted);
}

.dash-powered {
  padding: 6px 0 8px;
  text-align: center;
  font: 500 9px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--dash-muted);
  background: var(--dash-bg);
  text-transform: uppercase;
}

.phone-homerow { display: flex; justify-content: space-between; margin: 0 30px 12px; }
.phone-homerow span { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.phone-homebar { width: 104px; height: 4px; background: rgba(255, 255, 255, 0.4); border-radius: 4px; margin: 0 auto 8px; }

/* ── Stat band ────────────────────────────────────────────────────────── */

.band {
  background: var(--band);
  border-top: 1px solid rgba(233, 233, 237, 0.08);
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
}
.stats-grid {
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 28px;
}
.stat-n { font: 700 36px/1 var(--font-head); text-transform: uppercase; }
.stat-n .suffix { font-size: 21px; color: var(--muted); }
.stat-k { margin-top: 5px; font: 500 13.5px/1.45 var(--font-body); color: var(--muted); }
/* The problem hook outranks the other three — equal weight let the price
   cell compete with it. */
.stat-lead .stat-n { font-size: 52px; color: var(--accent); }
.stat-src {
  margin-top: 14px;
  font: 400 11.5px/1.5 var(--font-body);
  color: var(--faint);
}

/* ── Sections ─────────────────────────────────────────────────────────── */

.section { padding-top: clamp(24px, 3vw, 36px); padding-bottom: clamp(24px, 3vw, 36px); }
.section-line { border-top: 1px solid rgba(233, 233, 237, 0.08); }
.section h2 { margin-top: 10px; }
.section-sub { margin-top: 6px; font: 400 16px/1.5 var(--font-body); color: var(--muted); max-width: 52ch; }

/* ── How it works ─────────────────────────────────────────────────────── */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.steps { display: flex; flex-direction: column; margin-top: 20px; }
.step {
  appearance: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  border: 0;
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
  cursor: pointer;
  transition: opacity 0.35s;
}
.step-t, .step-b { display: block; }
.step:last-child { border-bottom: 0; }
.step.dim { opacity: 0.4; }
.step-n {
  font: 700 26px/1 var(--font-head);
  min-width: 34px;
  color: var(--step-idle);
  transition: color 0.35s;
}
.step.active .step-n { color: var(--accent); }
.step.done .step-n { color: var(--text); }
.step-t { font: 600 17px/1.3 var(--font-body); }
.step-b { margin-top: 3px; font: 400 14.5px/1.5 var(--font-body); color: var(--muted); }

/* Demo phone */
.demo-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.demo-phone {
  width: min(290px, 84vw);
  background: var(--bezel);
  border: 1px solid rgba(233, 233, 237, 0.14);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.demo-screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--screen);
  display: flex;
  flex-direction: column;
  min-height: 545px;
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
}
.demo-bar .app-icon { width: 18px; height: 18px; }
.demo-bar .app-icon::after { width: 8px; height: 8px; }
.demo-name { font: 600 12.5px var(--font-body); }
.demo-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 600 9.5px var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--money);
}
.demo-live .dot { width: 5px; height: 5px; background: var(--money); animation: crPulse 1.6s infinite; }
.demo-feed { display: flex; flex-direction: column; gap: 10px; padding: 12px; }

.demo-idle {
  padding: 34px 12px;
  text-align: center;
  font: 400 13px/1.5 var(--font-body);
  color: var(--faint);
  font-style: italic;
}

.demo-card {
  background: var(--band);
  border: 1px solid rgba(233, 233, 237, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  animation: crIn 0.45s both;
}
.demo-card-head { display: flex; justify-content: space-between; align-items: baseline; }
.demo-missed-label { font: 600 12.5px var(--font-body); color: var(--missed); }
.demo-time { font: 500 10.5px var(--font-mono); color: var(--faint); }
.demo-card-body { margin-top: 3px; font: 400 12px/1.45 var(--font-body); color: var(--muted); }

.demo-reply {
  align-self: flex-end;
  max-width: 88%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  animation: crIn 0.45s both;
}
.demo-bubble {
  background: color-mix(in oklab, var(--accent) 30%, var(--surface));
  border-radius: 12px 12px 3px 12px;
  padding: 9px 12px;
  font: 400 12.5px/1.45 var(--font-body);
}
.demo-caption { font: 500 9.5px var(--font-mono); letter-spacing: 0.08em; color: var(--faint); }

.demo-vm-head { display: flex; align-items: center; gap: 8px; }
.vm-play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(233, 233, 237, 0.5);
  display: grid;
  place-items: center;
  flex: none;
}
.vm-play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid var(--text);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  margin-left: 1px;
}
.demo-vm-label { font: 600 12px var(--font-body); }
.demo-vm-tag { margin-left: auto; font: 600 9px var(--font-mono); letter-spacing: 0.1em; color: var(--money); }
.demo-vm-quote { margin-top: 7px; font: 400 12px/1.5 var(--font-body); color: var(--muted); font-style: italic; }

.demo-lead {
  border: 1px solid color-mix(in srgb, var(--money) 35%, transparent);
  background: color-mix(in oklab, var(--money) 7%, var(--band));
  border-radius: 12px;
  padding: 12px;
  animation: crIn 0.45s both;
}
.demo-lead-tag { font: 600 9.5px var(--font-mono); letter-spacing: 0.14em; color: var(--money); }
.demo-lead-est {
  margin-top: 4px;
  font: 700 24px/1 var(--font-head);
  color: var(--money);
  text-transform: uppercase;
}
.demo-lead-job { margin-top: 4px; font: 400 12.5px/1.4 var(--font-body); }
.demo-lead-foot { display: flex; align-items: center; gap: 6px; margin-top: 9px; }
.demo-lead-foot span:nth-child(2) { font: 500 11.5px var(--font-body); color: var(--bright); }
.demo-callback {
  margin-left: auto;
  background: var(--money);
  color: var(--ink);
  font: 600 11px var(--font-body);
  padding: 5px 10px;
  border-radius: 6px;
}

.demo-hidden { display: none; }

.demo-replay {
  background: none;
  border: 1px solid rgba(233, 233, 237, 0.2);
  color: var(--muted);
  font: 600 10.5px var(--font-mono);
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
}
.demo-replay:hover { border-color: var(--accent); color: var(--text); }

/* ── Why cards (merged into the How section per owner tweak) ─────────── */

.why-merged { margin-top: clamp(22px, 3vw, 32px); }
.why-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card-kicker {
  font: 600 10px var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.card-title { margin: 8px 0 5px; font: 700 23px/1.05 var(--font-head); text-transform: uppercase; }
.card-body { font: 400 14.5px/1.55 var(--font-body); color: var(--muted); }
.money-chip {
  display: inline-block;
  margin-top: 12px;
  font: 700 13px/1 var(--font-mono);
  color: var(--money);
  background: color-mix(in srgb, var(--money) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--money) 25%, transparent);
  border-radius: 6px;
  padding: 6px 9px;
}

/* ── No-login band ────────────────────────────────────────────────────── */

/* Two-column grid matching .how-grid so the chip centers under the demo
   phone and the copy aligns with the steps column. */
.nologin-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.nologin-merged { margin-top: clamp(40px, 5.5vw, 64px); }
.nologin-title { font: 700 clamp(30px, 3.4vw, 40px)/1.02 var(--font-head); text-transform: uppercase; }
.nologin-sub { margin-top: 10px; font: 400 17.5px/1.6 var(--font-body); color: var(--muted); max-width: 58ch; }
.link-demo {
  justify-self: center;
  margin: 0;
  max-width: 520px;
  text-align: center;
}
.link-label {
  font: 700 13px var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 11px;
}
.link-note {
  margin-top: 11px;
  font: 400 15.5px/1.55 var(--font-body);
  color: var(--muted);
}
.link-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font: 500 clamp(15px, 1.5vw, 19px) var(--font-mono);
  background: var(--ground);
  border: 1px solid rgba(233, 233, 237, 0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.link-chip .expiry { white-space: nowrap; }
.link-chip .live-dot { color: var(--money); }
.link-chip b { font-weight: 700; }
.link-chip .expiry { color: var(--faint); }

/* ── App section ──────────────────────────────────────────────────────── */

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.perks { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; font: 400 15px/1.45 var(--font-body); }
.perk { display: flex; gap: 9px; }
.tick-money { color: var(--money); font-weight: 700; }
.store-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.store-chip {
  border: 1px solid rgba(233, 233, 237, 0.15);
  border-radius: var(--radius);
  padding: 8px 13px;
  font: 600 10.5px var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
}

.inbox {
  max-width: 400px;
  width: 100%;
  justify-self: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.inbox-bar {
  display: flex;
  align-items: center;
  padding: 11px 15px;
  border-bottom: 1px solid rgba(233, 233, 237, 0.08);
}
.inbox-bar b { font: 600 13px var(--font-body); }
.inbox-sort {
  margin-left: auto;
  font: 600 9.5px var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
}
.lead-row { padding: 11px 15px; border-bottom: 1px solid rgba(233, 233, 237, 0.06); }
.lead-row:last-child { border-bottom: 0; }
.lead-row.dim { opacity: 0.55; }
.lead-top { display: flex; align-items: baseline; gap: 8px; }
.lead-top .dot { align-self: center; }
.lead-row.dim .lead-top,
.lead-row.dim .lead-sub { padding-left: 14px; }
.lead-name { font: 600 14.5px var(--font-body); }
.lead-val { margin-left: auto; font: 700 13.5px var(--font-mono); color: var(--money); }
.lead-sub { display: flex; margin-top: 2px; padding-left: 14px; }
.lead-job { font: 400 13px var(--font-body); color: var(--muted); }
.lead-age { margin-left: auto; font: 500 11px var(--font-mono); color: var(--faint); }

/* ── Pricing ──────────────────────────────────────────────────────────── */

.pricing-col { display: flex; flex-direction: column; align-items: center; }
.pricing-col h2 { margin-bottom: 14px; text-align: center; }
.price-anchor {
  max-width: 56ch;
  margin: 0 auto 20px;
  text-align: center;
  font: 400 16px/1.6 var(--font-body);
  color: var(--muted);
}
.price-anchor b { color: var(--text); font-weight: 700; }
.roi-line,
.minutes-line {
  margin-top: 12px;
  font: 400 14.5px/1.55 var(--font-body);
  color: var(--muted);
}
.roi-line b,
.minutes-line b { color: var(--text); }
.price-card {
  width: 100%;
  max-width: 540px;
  background: var(--surface);
  border: 1px solid rgba(233, 233, 237, 0.12);
  border-radius: 12px;
  padding: 24px;
}
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.price-n { font: 700 62px/1 var(--font-head); }
.price-per { font: 400 17px var(--font-body); color: var(--muted); }
.launch-tag {
  font: 700 10px var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 5px;
  padding: 4px 7px;
  text-transform: uppercase;
}
.setup-line { margin-top: 7px; font: 400 14.5px/1.5 var(--font-body); color: var(--muted); }
.guarantee {
  margin-top: 14px;
  border: 1px solid color-mix(in srgb, var(--money) 30%, transparent);
  background: color-mix(in srgb, var(--money) 6%, transparent);
  border-radius: var(--radius);
  padding: 11px 13px;
  font: 400 14.5px/1.5 var(--font-body);
}
.guarantee b { color: var(--money); font-weight: 600; }
.incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
  margin-top: 16px;
  font: 400 14.5px/1.4 var(--font-body);
}
.incl-grid div { display: flex; gap: 8px; }
.btn-block { display: block; text-align: center; margin-top: 18px; padding: 13px; }
.price-foot { margin-top: 12px; text-align: center; font-size: 10.5px; line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.faq-wrap { max-width: 900px; }
.faq-wrap h2 { margin-bottom: 8px; }
details { border-bottom: 1px solid var(--border); }
details:last-of-type { border-bottom: 0; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 2px;
  font: 600 16.5px/1.35 var(--font-body);
}
.faq-q span:first-child { flex: 1; }
.faq-x { font: 400 24px/1 var(--font-head); color: var(--accent); transition: transform 0.2s; }
details[open] .faq-x { transform: rotate(45deg); }
.faq-a { padding: 0 2px 16px; font: 400 15.5px/1.6 var(--font-body); color: var(--copy); max-width: 62ch; }

/* ── Contact ──────────────────────────────────────────────────────────── */

.contact { text-align: center; padding-top: clamp(26px, 3.5vw, 38px); padding-bottom: clamp(26px, 3.5vw, 38px); }
.contact h2 { margin: 12px auto 8px; font: 700 clamp(34px, 5vw, 50px)/0.98 var(--font-head); text-transform: uppercase; max-width: 18ch; }
.contact-sub { margin: 0 auto; font: 400 16px/1.55 var(--font-body); color: var(--muted); max-width: 46ch; }
/* "What happens after you text" — nobody messages a stranger without
   knowing what they're walking into. */
.next-steps {
  list-style: none;
  counter-reset: step;
  margin: 22px auto 0;
  padding: 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.next-steps li {
  counter-increment: step;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font: 400 15px/1.5 var(--font-body);
  color: var(--muted);
}
.next-steps li::before {
  content: counter(step);
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  color: var(--accent);
  font: 700 12px/23px var(--font-mono);
  text-align: center;
}
.next-steps b { color: var(--text); font-weight: 600; }
.contact-legal {
  margin-top: 20px;
  font: 400 13px/1.55 var(--font-body);
  color: var(--faint);
}
.contact-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.contact-card {
  min-width: 250px;
  text-align: left;
  background: var(--surface);
  border: 1px solid rgba(233, 233, 237, 0.12);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--text); }
.contact-label {
  font: 600 9.5px var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
}
.contact-value { font: 700 26px/1.1 var(--font-head); overflow-wrap: anywhere; }
.contact-note { font: 400 13.5px var(--font-body); color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────────────────── */

.foot { border-top: 1px solid rgba(233, 233, 237, 0.08); }
.foot-inner { padding-top: 20px; padding-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.foot-brand { font: 700 17px/1 var(--font-head); letter-spacing: 0.03em; text-transform: uppercase; }
.foot-links { margin-left: auto; display: flex; gap: 18px; font: 400 14px var(--font-body); }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--accent); }
.foot-legal { font: 400 13px/1.5 var(--font-body); color: var(--faint); }

/* ── Sticky mobile CTA ────────────────────────────────────────────────── */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--band) 94%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(233, 233, 237, 0.1);
}
.sticky-label {
  font: 600 12px var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.sticky-cta .btn { margin-left: auto; font-size: 14px; padding: 10px 16px; }

/* ── Mobile ───────────────────────────────────────────────────────────── */
/* Most visitors are on a phone. A picture of a phone, shown on a phone, is
   redundant framing that was costing 20% of screen width and rendering the
   product story at 8–11px. Below 640px the bezel goes away, the mock screen
   goes full-bleed, and its type scales up. */
@media (max-width: 640px) {
  .sticky-cta { display: flex; }
  .sticky-cta .btn { white-space: nowrap; }
  body { padding-bottom: 84px; } /* the bar wraps taller than the old 62px */

  /* One CTA in persistent chrome, not two. */
  .nav-right > .btn { display: none; }

  .phone, .demo-phone {
    width: 100%;
    border-radius: 22px;
    padding: 5px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
  .phone-screen, .demo-screen { border-radius: 18px; }
  .phone-screen { min-height: 540px; }
  .demo-screen { min-height: 480px; }

  /* Scale the in-mock UI up ~30% so it is actually readable at arm's length. */
  .dash-biz { font-size: 15px; }
  .dash-sub, .pill, .inbox-sort { font-size: 12px; }
  .lc-name { font-size: 15px; }
  .lc-sum { font-size: 13px; }
  .lc-est { font-size: 14px; }
  .lc-urg, .lc-status, .lc-age { font-size: 11px; }
  .ld-name { font-size: 16px; }
  .ld-est { font-size: 23px; }
  .ld-job, .ld-block-head, .ld-bubble { font-size: 12.5px; }
  .ld-quote { font-size: 13px; }
  .ld-tag, .ld-sent-cap, .dash-powered, .ld-note { font-size: 10.5px; }
  .notif-title { font-size: 15.5px; }
  .notif-body { font-size: 13.5px; }
  .notif-app, .notif-when { font-size: 11.5px; }
  .demo-card-body, .demo-bubble, .demo-vm-quote { font-size: 13px; }
  .demo-missed-label, .demo-vm-label { font-size: 13.5px; }

  /* Long numerals and email addresses must not force a scrollbar. */
  .contact-value { font-size: 21px; }
  .stat-lead .stat-n { font-size: 42px; }
}

/* ── Legal pages ──────────────────────────────────────────────────────── */

.legal-wrap { max-width: 720px; margin: 0 auto; padding: 36px 24px 56px; }
.legal-nav-row { max-width: 720px; height: 56px; }
.legal-nav-row .brand { font-size: 18px; }
.back-link { margin-left: auto; font: 500 14px var(--font-body); color: var(--muted); }
.draft-banner {
  display: inline-block;
  font: 600 9.5px var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--warn);
  background: color-mix(in srgb, var(--warn) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--warn) 30%, transparent);
  border-radius: 5px;
  padding: 5px 8px;
  text-transform: uppercase;
}
.legal-wrap h1 {
  margin: 14px 0 4px;
  font: 700 clamp(34px, 5vw, 44px)/1 var(--font-head);
  text-transform: uppercase;
}
.legal-date { font: 500 12px var(--font-mono); color: var(--faint); text-transform: uppercase; }
.legal-wrap h2 { margin: 28px 0 8px; font: 700 22px/1.1 var(--font-head); text-transform: uppercase; }
.legal-wrap p, .legal-wrap li { font: 400 16px/1.65 var(--font-body); color: var(--copy); }
.legal-wrap p { margin: 0; }
.legal-wrap p + p { margin-top: 10px; }
.legal-intro { margin-top: 22px; }
.legal-wrap a { text-decoration: underline; text-underline-offset: 3px; }
.legal-foot-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font: 400 12px/1.5 var(--font-body);
  color: var(--faint);
}
.legal-foot-inner nav { margin-left: auto; display: flex; gap: 14px; }
.legal-foot-inner nav a { color: var(--muted); }

/* ── 404 ──────────────────────────────────────────────────────────────── */

.center { text-align: center; }
.err-wrap { max-width: 640px; }
.err-wrap .lede { margin-left: auto; margin-right: auto; }
.err-wrap .cta-row { justify-content: center; }
