/* =============================================================
   www.mformercury.com — the public site.

   One language with the app: ink, hairlines, one violet that means
   "act here", Geist. Notion's proportions — a lot of white, big black
   headlines, cards that are a hairline and a radius and nothing else.
   No gradients, no stock pastels, no icon tiles.
   ============================================================= */

:root {
  --ink: #1A1A21;
  --ink-2: #4A4A57;
  --ink-3: #7A7A88;
  --ink-4: #A3A3B1;
  --line: #E7E6EC;
  --line-2: #F0EFF4;
  --ground: #FFFFFF;
  --ground-2: #FAFAFA;
  --ground-3: #F4F3F8;
  --accent: #4B3BB5;
  --accent-hover: #3A2D91;
  --accent-tint: #EFEDFD;
  --accent-line: #DDD8F7;
  --good: #1B7F5C;
  --good-tint: #E8F6F0;
  --warn: #9A6100;
  --warn-tint: #FFF6E5;
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1120px;
  /* Inter since 2026-08-31, matching the app. Geist stayed behind on the
     wordmark alone (--font-wordmark), which is a logotype and does not
     follow the UI's face. */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-wordmark: 'Geist', 'Inter', ui-sans-serif, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
/* The done page toggles its buttons with the hidden attribute; a class that
   sets display would otherwise win over the browser's [hidden] rule. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--ground);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── UX ground rules ─────────────────────────────────────── */
/* Anchor targets stop under the sticky header, not behind it. */
main [id] { scroll-margin-top: 76px; }
/* One visible focus language everywhere. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}
.skip-link { position: absolute; left: 16px; top: -48px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px; font-size: 13.5px; font-weight: 600; transition: top .15s ease; }
.skip-link:focus { top: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14.5px; border: 1px solid transparent; cursor: pointer;
  /* The press the app's buttons have (styles/motion.css there): down in
     60ms, back over 260ms with a little overshoot. The asymmetry is what
     reads as a physical press rather than a wobble. Colour stays on its
     own quick ease. */
  transition: background .15s ease, border-color .15s ease, color .15s ease,
              transform .26s cubic-bezier(.34, 1.46, .64, 1);
  white-space: nowrap;
}
.btn:active:not([disabled]) { transform: scale(.96); transition-duration: .06s; transition-timing-function: cubic-bezier(.4, 0, 1, 1); }
/* A trailing arrow leans the way it points. Only when the icon follows
   text — an icon-only button has nothing to lean away from. */
.btn > svg:last-child:not(:only-child) { transition: transform .26s cubic-bezier(.32, .72, 0, 1); }
.btn:hover > svg:last-child:not(:only-child) { transform: translateX(2px); }
/* Every other button on the site — the nav toggle, the pricing calculator's
   steppers, menu triggers — answers a press the same way. */
button:not(.btn):active:not([disabled]) { transform: scale(.95); transition: transform .06s cubic-bezier(.4, 0, 1, 1); }
button:not(.btn) { transition: transform .26s cubic-bezier(.34, 1.46, .64, 1), background .15s ease, border-color .15s ease, color .15s ease; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: #000; border-color: #000; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ground-3); border-color: #D8D7DF; }
.btn-lg { height: 46px; padding: 0 20px; font-size: 15.5px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; }

/* ── Header ──────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* The wordmark alone — the M glyph came off on 2026-08-28 at the owner's request. */
.brand { display: inline-flex; align-items: center; font-family: var(--font-wordmark); font-weight: 700; letter-spacing: -0.045em; font-size: 19px; }
/* Same mark as the app (MercuryMark / m-for-mercury-dark.svg). */
.brand img { display: block; height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: var(--ink); background: var(--ground-3); }
.hdr-cta { display: flex; align-items: center; gap: 8px; }
.hdr-cta .btn { height: 36px; }
.nav-toggle { display: none; width: 40px; height: 36px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); align-items: center; justify-content: center; }
.nav-toggle svg { width: 18px; height: 18px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 88px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
/* min-width:0 — a grid track grows to its content's min-content width by
   default, and the nowrap journey strip inside the visual is ~520px wide.
   On a phone that widened BOTH columns past the viewport and clipped the
   headline (2026-08-28). */
.hero-grid > * { min-width: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line); padding: 5px 10px 5px 6px; border-radius: 999px; background: #fff; }
.eyebrow b { display: inline-block; padding: 1px 7px; border-radius: 999px; background: var(--accent-tint); color: var(--accent); font-weight: 700; font-size: 11.5px; letter-spacing: .02em; }
.hero h1 { font-size: 58px; letter-spacing: -0.035em; line-height: 1.04; margin-top: 22px; text-wrap: balance; }
.hero-lede { margin-top: 20px; font-size: 18.5px; line-height: 1.55; color: var(--ink-2); max-width: 540px; }
.hero-cta { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--ink-3); }
.hero-note b { color: var(--ink); font-weight: 600; }

/* The product, drawn — a dashboard card with two live-looking cards floating
   over it: a positive reply and a sender's limits. Everything is HTML/SVG in
   the app's own language, so it never dates the way a screenshot does. */
.hero { overflow-x: clip; }
.hero-visual { position: relative; }
.hero-glow { position: absolute; inset: -60px -40px -40px; background: radial-gradient(55% 55% at 62% 40%, rgba(75,59,181,.14), rgba(75,59,181,0) 70%); pointer-events: none; z-index: 0; }
.hero-visual .mock { position: relative; z-index: 1; }
.float { position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 1px 2px rgba(26,26,33,.05), 0 18px 48px -16px rgba(26,26,33,.35); padding: 10px 12px; }
.float-reply { right: -26px; bottom: 118px; width: 320px; }
.float-sender { left: -30px; bottom: -22px; width: 262px; }
.float .msg { border: 0; padding: 0; grid-template-columns: 30px 1fr auto; }
.float .msg .pill { align-self: start; }
.sender-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.sender-row b { font-weight: 600; }
.limit-mini { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; font-size: 12px; color: var(--ink-3); margin-top: 8px; }
.limit-mini small { font-family: var(--mono); font-size: 11px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.chart { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.chart-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); }
.chart-head b { color: var(--ink); font-weight: 600; }
.bars { display: block; width: 100%; height: auto; margin-top: 8px; }
.chart-axis { display: flex; justify-content: space-between; margin-top: 4px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-4); }
.mock { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 1px 2px rgba(26,26,33,.04), 0 24px 60px -30px rgba(26,26,33,.25); overflow: hidden; }
.mock-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--ground-2); font-size: 12px; color: var(--ink-3); }
.mock-bar b { color: var(--ink); font-weight: 600; }
.mock-dots { display: flex; gap: 5px; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); display: block; }
.mock-body { padding: 16px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { border: 1px solid var(--line); border-radius: 10px; padding: 12px 12px 10px; }
.kpi small { display: block; font-size: 11px; color: var(--ink-3); font-weight: 500; letter-spacing: .01em; }
.kpi strong { display: block; font-size: 22px; letter-spacing: -0.03em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.kpi em { font-style: normal; font-size: 11px; color: var(--good); font-weight: 600; }
.journey { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.journey-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 10px; }
.journey-head b { color: var(--ink); font-weight: 600; }
.steps { display: flex; align-items: center; gap: 6px; overflow: hidden; }
.step { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; font-size: 12px; font-weight: 500; white-space: nowrap; background: #fff; }
.step i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: block; }
.step.wait i { background: var(--ink-4); }
.step.done i { background: var(--good); }
.arrow { width: 14px; height: 1px; background: var(--line); flex: none; position: relative; }
.arrow::after { content: ''; position: absolute; right: -1px; top: -3px; border: 3.5px solid transparent; border-left-color: var(--ink-4); }
.mock-rows { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; font-size: 12.5px; }
.mock-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr .6fr; gap: 10px; padding: 8px 12px; border-top: 1px solid var(--line-2); align-items: center; }
.mock-row:first-child { border-top: 0; background: var(--ground-2); color: var(--ink-3); font-weight: 500; font-size: 11.5px; }
.mock-row b { font-weight: 600; }
.pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; background: var(--ground-3); color: var(--ink-2); }
.pill.good { background: var(--good-tint); color: var(--good); }
.pill.warn { background: var(--warn-tint); color: var(--warn); }
.pill.accent { background: var(--accent-tint); color: var(--accent); }

/* ── Logos ───────────────────────────────────────────────── */
.logos { padding: 36px 0 52px; border-top: 1px solid var(--line-2); }
.logos p { text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.logo-row { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px; }
.logo-row img { height: 26px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: opacity .15s, filter .15s; }
.logo-row img:hover { filter: none; opacity: 1; }

/* ── Sections ────────────────────────────────────────────── */
.sec { padding: 88px 0; }
.sec-alt { background: var(--ground-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.sec-head { max-width: 680px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.kicker { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .02em; }
.sec h2 { font-size: 40px; letter-spacing: -0.03em; margin-top: 10px; text-wrap: balance; }
.sec-lede { margin-top: 14px; font-size: 17px; color: var(--ink-2); line-height: 1.6; }

/* How it works */
.how { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.num { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 700; font-size: 13px; font-family: var(--mono); }
.how h3 { font-size: 18px; margin-top: 16px; }
.how p { margin-top: 8px; color: var(--ink-2); font-size: 14.5px; }

/* Features — the ten that matter, as a numbered bento grid.
   Two wide cards carry a small live visual; eight standard cards
   carry one animated line icon and one tight paragraph. */
.features { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
/* Grid tracks grow to a child's min-content width by default, and the
   nowrap steps strip inside the wide card is ~520px — the same trap the
   hero fell into on a phone. min-width:0 lets the card clip instead. */
.features > .feat { min-width: 0; }
.feat { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.feat-wide { grid-column: span 2; background: linear-gradient(180deg, #FBFAFF 0%, #FFFFFF 72%); border-color: var(--accent-line); }
.fx { position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-4); }
.feat .ln { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 17.5px; margin-top: 4px; }
.feat p { color: var(--ink-2); font-size: 14.5px; }
.feat-steps { margin-top: auto; padding-top: 8px; }
.feat-pills { margin-top: auto; display: flex; gap: 6px; padding-top: 8px; flex-wrap: wrap; }

/* Split (deep-dive) rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 64px; }
.split:first-of-type { margin-top: 44px; }
.split.rev > .split-copy { order: 2; }
.split h3 { font-size: 28px; letter-spacing: -0.03em; }
.split p { margin-top: 12px; color: var(--ink-2); font-size: 16px; }
.split ul { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.split li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.split li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--good); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.panel { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 16px; box-shadow: 0 1px 2px rgba(26,26,33,.04); }
.panel-title { font-size: 12px; color: var(--ink-3); font-weight: 600; display: flex; justify-content: space-between; margin-bottom: 10px; }
.limits { display: grid; gap: 8px; }
.limit { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 10px; align-items: center; font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; }
.limit b { font-weight: 600; }
.bar { height: 6px; border-radius: 999px; background: var(--ground-3); overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.bar.full i { background: var(--warn); }
.limit small { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.hours { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 10px; }
.hours span { font-size: 11px; text-align: center; padding: 8px 0; border-radius: 6px; background: var(--accent-tint); color: var(--accent); font-weight: 600; }
.hours span.off { background: var(--ground-3); color: var(--ink-4); }
.inbox { display: grid; gap: 6px; }
.msg { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: start; padding: 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; }
.msg .av { width: 30px; height: 30px; border-radius: 50%; background: var(--ground-3); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--ink-2); }
.msg b { display: block; font-weight: 600; }
.msg span { color: var(--ink-2); display: block; margin-top: 2px; }
.msg time { font-size: 11px; color: var(--ink-4); font-family: var(--mono); }
.score { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 18px; border-radius: 12px; background: var(--ink); color: #fff; }
.score strong { font-size: 44px; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.score small { display: block; font-size: 12px; color: #B8B7C4; margin-top: 4px; }
.score ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 12.5px; color: #E9E8EF; }
.score li { display: flex; justify-content: space-between; gap: 12px; }
.score li i { font-style: normal; color: #B8B7C4; font-family: var(--mono); }

/* Results */
.results { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.result { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.result small { font-size: 12.5px; font-weight: 600; color: var(--ink-3); }
.result strong { display: block; font-size: 30px; letter-spacing: -0.035em; margin-top: 8px; }
.result p { margin-top: 8px; color: var(--ink-2); font-size: 14px; }
.results-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); }

/* Audience */
.who { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.who > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.who h3 { font-size: 18px; }
.who p { margin-top: 8px; color: var(--ink-2); font-size: 14.5px; }
.who code { font-family: var(--mono); font-size: 12.5px; background: var(--ground-3); padding: 2px 6px; border-radius: 5px; }

/* ── Pricing ─────────────────────────────────────────────── */
.calc { margin: 40px auto 0; max-width: 720px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 18px 20px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.calc label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.stepper { margin-top: 8px; display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.stepper button { width: 40px; border: 0; background: #fff; cursor: pointer; font-size: 18px; color: var(--ink-2); }
.stepper button:hover { background: var(--ground-3); color: var(--ink); }
.stepper input { width: 72px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font: inherit; font-weight: 700; font-size: 18px; font-variant-numeric: tabular-nums; outline: none; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input[type=number] { -moz-appearance: textfield; }
.calc-hint { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); }
.cycle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--ground-2); }
.cycle button { border: 0; background: transparent; padding: 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); cursor: pointer; display: inline-flex; gap: 6px; align-items: center; }
.cycle button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(26,26,33,.08); }
.cycle button b { font-size: 10.5px; padding: 1px 6px; border-radius: 999px; background: var(--good-tint); color: var(--good); font-weight: 700; }

.plans { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 22px; display: flex; flex-direction: column; position: relative; }
.plan.hot { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.plan .tag { position: absolute; top: -11px; left: 20px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 3px 9px; border-radius: 999px; }
.plan h3 { font-size: 18px; }
.plan .for { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; min-height: 40px; }
.price { margin-top: 18px; display: flex; align-items: baseline; gap: 6px; }
.price strong { font-size: 36px; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; line-height: 1; }
.price span { font-size: 13px; color: var(--ink-3); }
.price-sub { margin-top: 6px; font-size: 12.5px; color: var(--ink-3); min-height: 18px; font-variant-numeric: tabular-nums; }
.total { margin-top: 14px; padding: 10px 12px; border-radius: var(--radius-sm); background: var(--ground-2); border: 1px solid var(--line-2); font-size: 13px; color: var(--ink-2); display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.total b { font-size: 16px; color: var(--ink); font-variant-numeric: tabular-nums; }
.total.na { color: var(--ink-4); }
.plan .btn { margin-top: 14px; width: 100%; }
.plan ul { margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-2); list-style: none; display: flex; flex-direction: column; gap: 8px; }
.plan li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink); }
.plan li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.plan li.muted { color: var(--ink-3); }
.plan li.muted svg { stroke: var(--ink-4); }
.plan-foot { margin-top: auto; }
.addons { margin: 28px auto 0; max-width: 820px; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.addons h4 { font-size: 13px; font-weight: 700; padding: 12px 18px; border-bottom: 1px solid var(--line); background: var(--ground-2); }
.addons table { width: 100%; border-collapse: collapse; font-size: 14px; }
.addons td { padding: 11px 18px; border-top: 1px solid var(--line-2); vertical-align: top; }
.addons tr:first-child td { border-top: 0; }
.addons td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 600; }
.addons td small { display: block; color: var(--ink-3); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.fine { margin-top: 18px; text-align: center; font-size: 12.5px; color: var(--ink-3); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { margin: 40px auto 0; max-width: 760px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-weight: 400; color: var(--ink-3); font-size: 20px; line-height: 1; transition: transform .15s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-2); font-size: 15px; max-width: 680px; }

/* ── CTA band + footer ───────────────────────────────────── */
.band { padding: 72px 0; background: var(--ink); color: #fff; }
.band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.band h2 { font-size: 34px; letter-spacing: -0.03em; }
.band p { margin-top: 8px; color: #B8B7C4; font-size: 16px; }
.band .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.band .btn-primary:hover { background: #ECEBF2; border-color: #ECEBF2; }
.band .btn-ghost { color: #fff; border-color: #3B3B48; }
.band .btn-ghost:hover { background: #2A2A35; }
.ftr { padding: 48px 0 32px; border-top: 1px solid var(--line); background: var(--ground-2); }
.ftr-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.ftr h5 { margin: 0 0 12px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.ftr ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 14px; }
.ftr ul a:hover { color: var(--accent); }
.ftr .brand { font-size: 17px; }
.ftr .brand img { height: 22px; }
.ftr .about { margin-top: 12px; font-size: 13.5px; color: var(--ink-2); max-width: 300px; }
.ftr-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3); }

/* ── Checkout pages ──────────────────────────────────────── */
.co { padding: 56px 0 96px; }
.co-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.co h1 { font-size: 34px; letter-spacing: -0.035em; }
.co .lede { margin-top: 8px; color: var(--ink-2); font-size: 15.5px; }
.form { margin-top: 28px; display: grid; gap: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; height: 42px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 12px;
  font: inherit; font-size: 14.5px; background: #fff; color: var(--ink); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field .hint { margin-top: 6px; font-size: 12px; color: var(--ink-3); }
.field.bad input { border-color: #C8102E; }
.err { display: none; padding: 12px 14px; border: 1px solid #F3C2C9; background: #FFF1F3; color: #9B1B2E; border-radius: var(--radius-sm); font-size: 14px; }
.err.on { display: block; }
.summary { border: 1px solid var(--line); border-radius: 14px; background: #fff; position: sticky; top: 84px; overflow: hidden; }
.summary h2 { font-size: 15px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--ground-2); }
.sum-body { padding: 18px; display: grid; gap: 10px; font-size: 14px; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-2); }
.sum-line b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--line); }
.sum-total strong { font-size: 26px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.sum-total span { font-size: 13px; color: var(--ink-3); }
.sum-foot { padding: 12px 18px 16px; font-size: 12.5px; color: var(--ink-3); border-top: 1px solid var(--line-2); background: var(--ground-2); line-height: 1.5; }
.sum-foot a { color: var(--accent); font-weight: 600; }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--ground-3); color: var(--ink-2); }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); display: block; }
.status.wait i { background: var(--warn); animation: pulse 1.4s ease-in-out infinite; }
.status.paid { background: var(--good-tint); color: var(--good); }
.status.paid i { background: var(--good); }
.status.bad { background: #FFF1F3; color: #9B1B2E; }
.status.bad i { background: #C8102E; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.done-card { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 28px; max-width: 640px; margin: 0 auto; }
.done-card h1 { font-size: 30px; }
.done-steps { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.done-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 10px; }
.done-steps li.active { border-color: var(--accent-line); background: var(--accent-tint); }
.done-steps li.ok { border-color: #CDEBDD; background: var(--good-tint); }
.done-steps .n { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; background: #fff; border: 1px solid var(--line); font-family: var(--mono); }
.done-steps li.active .n { background: var(--accent); color: #fff; border-color: var(--accent); }
.done-steps li.ok .n { background: var(--good); color: #fff; border-color: var(--good); }
.done-steps b { display: block; font-weight: 600; font-size: 15px; }
.done-steps p { margin-top: 3px; font-size: 13.5px; color: var(--ink-2); }
.done-steps .btn { margin-top: 10px; }
.done-meta { margin-top: 20px; font-size: 13px; color: var(--ink-3); display: flex; gap: 14px; flex-wrap: wrap; }
.done-meta code { font-family: var(--mono); font-size: 12px; background: var(--ground-3); padding: 2px 6px; border-radius: 5px; }

/* ── Motion ──────────────────────────────────────────────────
   One system: things rise 18px and fade as they enter the viewport,
   on the same spring-ish curve, staggered inside grids. The hidden
   state exists only under html.js — a visitor without JavaScript gets
   the page plain rather than blank — and every animation collapses
   under prefers-reduced-motion. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--ri, 0) * 70ms);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* Hero entrance — on load, not on scroll. */
html.js .hero-copy > * { opacity: 0; transform: translateY(16px); animation: rise .8s cubic-bezier(.16, 1, .3, 1) forwards; }
html.js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
html.js .hero-copy > *:nth-child(2) { animation-delay: .12s; }
html.js .hero-copy > *:nth-child(3) { animation-delay: .22s; }
html.js .hero-copy > *:nth-child(4) { animation-delay: .32s; }
html.js .hero-copy > *:nth-child(5) { animation-delay: .42s; }
html.js .hero-visual .mock { opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.16, 1, .3, 1) .25s forwards; }
html.js .float { opacity: 0; animation: floatIn .7s cubic-bezier(.16, 1, .3, 1) forwards; }
html.js .float-reply { animation-delay: .9s; }
html.js .float-sender { animation-delay: 1.1s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* The chart draws itself: each bar grows from the baseline. */
html.js .bars rect { transform-origin: bottom; transform: scaleY(0); animation: grow .7s cubic-bezier(.2, .9, .3, 1) forwards; }
@keyframes grow { to { transform: scaleY(1); } }
html.js .bars rect:nth-of-type(1)  { animation-delay: .55s; }
html.js .bars rect:nth-of-type(2)  { animation-delay: .60s; }
html.js .bars rect:nth-of-type(3)  { animation-delay: .65s; }
html.js .bars rect:nth-of-type(4)  { animation-delay: .70s; }
html.js .bars rect:nth-of-type(5)  { animation-delay: .75s; }
html.js .bars rect:nth-of-type(6)  { animation-delay: .80s; }
html.js .bars rect:nth-of-type(7)  { animation-delay: .85s; }
html.js .bars rect:nth-of-type(8)  { animation-delay: .90s; }
html.js .bars rect:nth-of-type(9)  { animation-delay: .95s; }
html.js .bars rect:nth-of-type(10) { animation-delay: 1.00s; }
html.js .bars rect:nth-of-type(11) { animation-delay: 1.05s; }
html.js .bars rect:nth-of-type(12) { animation-delay: 1.10s; }
html.js .bars rect:nth-of-type(13) { animation-delay: 1.15s; }
html.js .bars rect:nth-of-type(14) { animation-delay: 1.20s; }

/* After arriving, the floating cards breathe — barely. */
html.js .float-reply { animation: floatIn .7s cubic-bezier(.16,1,.3,1) .9s forwards, drift 7s ease-in-out 2s infinite alternate; }
html.js .float-sender { animation: floatIn .7s cubic-bezier(.16,1,.3,1) 1.1s forwards, drift 8s ease-in-out 2.4s infinite alternate-reverse; }
@keyframes drift { from { margin-top: 0; } to { margin-top: -6px; } }
.step.wait i { animation: pulse 1.6s ease-in-out infinite; }

/* Cards answer the cursor with a lift, not a scale. */
.feat, .how > div, .who > div, .result, .trust-card, .plan {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat:hover, .how > div:hover, .who > div:hover, .result:hover, .trust-card:hover {
  transform: translateY(-3px);
  border-color: #D8D7DF;
  box-shadow: 0 14px 34px -18px rgba(26, 26, 33, .22);
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -20px rgba(26, 26, 33, .25); }
.plan.hot:hover { box-shadow: 0 0 0 1px var(--ink), 0 16px 40px -20px rgba(26, 26, 33, .3); }

/* Header: a shadow appears once the page moves under it. */
.hdr { transition: box-shadow .25s ease; }
.hdr.scrolled { box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(26, 26, 33, .25); }

/* Feature icon chips: the one violet, on its tint. */
.feat .icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-tint); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; }
.feat .icon svg.ln { stroke: var(--accent); width: 28px; height: 28px; }
.feat .icon .coin-wrap { width: 34px; height: 34px; }

/* Logo marquee: one slow pass, seamless because the row is doubled. */
.logo-marquee { overflow: hidden; margin-top: 22px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
html.js .logo-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 44s linear infinite; }
html:not(.js) .logo-track { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px; }
html:not(.js) .logo-track[aria-hidden] { display: none; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 28px)); } }
.logo-track img { height: 26px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: opacity .15s, filter .15s; }
.logo-track img:hover { filter: none; opacity: 1; }

/* Trust band — the enterprise underneath. */
.trust { padding: 72px 0; background: var(--ink); color: #fff; }
.trust .kicker { color: #A79BF5; }
.trust h2 { color: #fff; font-size: 34px; letter-spacing: -0.03em; margin-top: 10px; }
.trust .sec-lede { color: #B8B7C4; }
.trust-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { border: 1px solid #2C2C35; border-radius: var(--radius); padding: 20px; background: #1F1F27; }
.trust-card:hover { border-color: #3B3B48; box-shadow: 0 14px 34px -18px rgba(0, 0, 0, .5); }
.trust-card svg { width: 20px; height: 20px; stroke: #A79BF5; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-card h3 { font-size: 15.5px; margin-top: 12px; color: #fff; }
.trust-card p { margin-top: 6px; font-size: 13.5px; color: #B8B7C4; line-height: 1.55; }
.trust-facts { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 28px; border-top: 1px solid #2C2C35; padding-top: 20px; font-size: 13px; color: #B8B7C4; }
.trust-facts b { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }

/* FAQ opens softly. */
.faq details[open] p { animation: faqIn .3s ease both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.faq summary { transition: color .15s; }
.faq summary:hover { color: var(--accent); }

/* The closing band gets one quiet violet light. */
.band { background: radial-gradient(46% 90% at 82% 10%, rgba(167, 155, 245, .16), transparent 70%), var(--ink); }

/* ── Between pages ───────────────────────────────────────────
   One rule, no script: a same-origin navigation crossfades the old
   page into the new one where the browser supports it (Chrome, Edge,
   Safari 18) and is a plain navigation everywhere else. Out fast, in
   slower — the page you left is a decision already made. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: .12s; animation-timing-function: cubic-bezier(.4, 0, 1, 1); }
::view-transition-new(root) { animation-duration: .22s; animation-timing-function: cubic-bezier(.32, .72, 0, 1); }

@keyframes navdown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Every animation stands down for reduced motion. */
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  .btn, .btn:active:not([disabled]), button:not(.btn), button:not(.btn):active:not([disabled]) { transform: none; transition: background .15s ease, border-color .15s ease, color .15s ease; }
  .btn:hover > svg:last-child:not(:only-child) { transform: none; }
  .nav.open { animation: none; }
  html.js [data-reveal], html.js .hero-copy > *, html.js .hero-visual .mock, html.js .float, html.js .bars rect {
    opacity: 1; transform: none; animation: none; transition: none;
  }
  html.js .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .step.wait i { animation: none; }
  .feat, .how > div, .who > div, .result, .trust-card, .plan { transition: none; }
}

/* ── Legal pages ─────────────────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.legal h1 { font-size: 36px; letter-spacing: -0.035em; }
.legal .meta { margin-top: 10px; font-size: 13px; color: var(--ink-3); }
.legal h2 { font-size: 20px; margin-top: 36px; }
.legal p, .legal li { margin-top: 10px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.legal ul { padding-left: 22px; margin: 0; }
.legal li { margin-top: 6px; }
.legal a { color: var(--accent); font-weight: 600; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 9px 10px; border-top: 1px solid var(--line); vertical-align: top; }
.legal th { font-weight: 600; color: var(--ink); background: var(--ground-2); border-top: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .results { grid-template-columns: repeat(2, 1fr); }
  .features, .how, .who { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px 14px; flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; animation: navdown .28s cubic-bezier(.32, .72, 0, 1) backwards; }
  .nav a { padding: 11px 10px; }
  .nav-toggle { display: inline-flex; }
  .hdr-cta .btn-ghost { display: none; }
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 40px; }
  .float { position: static; width: auto; margin-top: 10px; }
  .hero-glow { display: none; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
  .split.rev > .split-copy { order: 0; }
  .sec { padding: 64px 0; }
  .sec h2 { font-size: 32px; }
  .calc { grid-template-columns: 1fr; }
  .co-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .plans, .results, .features, .how, .who, .trust-grid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .band h2 { font-size: 28px; }
  .mock-row { grid-template-columns: 1.4fr 1fr .8fr; }
  .mock-row > :last-child { display: none; }
}

/* =============================================================
   Rich pass (2026-08-28) — animated line icons, the two currency
   marks, a capability strip, the plan matrix for /pricing, and
   speed. Appended last so it wins by order.
   ============================================================= */

/* Sections breathe a little more; long lines rag better. */
.sec { padding: 96px 0; }
.sec-lede, .hero-lede { text-wrap: pretty; }

/* A touch more travel on the reveal, same spring. */
html.js [data-reveal] { transform: translateY(22px); transition-duration: .85s; }

/* ── Line icons draw themselves in ───────────────────────── */
html.js .feat .ln *, html.js .trust-card > svg * { stroke-dasharray: 72 73; stroke-dashoffset: 72; }
html.js .feat.in .ln *, html.js .trust-card.in > svg * {
  animation: draw 1.1s cubic-bezier(.45, .55, .25, 1) forwards;
  animation-delay: calc(var(--ri, 0) * 80ms + .25s);
}
.feat:hover .ln * { animation: draw .8s cubic-bezier(.45, .55, .25, 1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
/* The green checks in the deep-dives draw with their column. */
html.js .split li svg path { stroke-dasharray: 24 25; stroke-dashoffset: 24; }
html.js .split-copy.in li svg path { animation: draw .6s ease-out .35s forwards; }

/* ── Currency marks ──────────────────────────────────────────
   The gold coin (embossed M) pays for AI; the verdigris credit
   (struck bust) pays for contact data. The metal is the only
   difference — same as in the product. */
.coin-wrap { position: relative; width: 24px; height: 24px; border-radius: 50%; overflow: hidden; flex: none; }
.coin-wrap .coin { width: 100%; height: 100%; display: block; transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
html.js .coin-wrap::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.65) 47%, transparent 62%); transform: translateX(-110%); animation: glint 6.5s ease-in-out infinite; }
html.js .coin-wrap.cw-verd::after { animation-delay: 3.2s; }
@keyframes glint { 0% { transform: translateX(-110%); } 16% { transform: translateX(110%); } 100% { transform: translateX(110%); } }
.icon.icon-gold { background: #FBF4DF; border-color: #EDDFB0; }
.icon.icon-verd { background: #E7F3EE; border-color: #CBE4D9; }
.feat:hover .coin-wrap .coin { transform: rotate(-9deg); }
.coin-wrap.coin-sm { width: 19px; height: 19px; }

/* Add-on rows lead with their mark. */
.addons .addon-name { display: flex; align-items: flex-start; gap: 10px; }
.addons .addon-name > .coin-wrap, .addons .addon-name > .ln { margin-top: 2px; }
.addons .addon-name .ln { width: 18px; height: 18px; stroke: var(--ink-3); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ── Capability strip ────────────────────────────────────── */
.cap-marquee { overflow: hidden; margin-top: 40px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
html.js .cap-track { display: flex; align-items: center; gap: 18px; width: max-content; animation: marquee 58s linear infinite; }
.cap-track span { font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.cap-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .5; flex: none; }
.cap-track .dup { display: contents; }
html:not(.js) .cap-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
html:not(.js) .cap-track .dup { display: none; }
.cap-marquee:hover .cap-track { animation-play-state: paused; }

/* ── /pricing — page hero, matrix, roadmap ───────────────── */
.page-hero { padding: 72px 0 0; }
.page-hero h1 { font-size: 46px; letter-spacing: -0.035em; line-height: 1.06; margin-top: 10px; text-wrap: balance; }
.page-hero .sec-lede { max-width: 660px; }
.compare-link { margin-top: 22px; text-align: center; font-size: 14.5px; }
.compare-link a { color: var(--accent); font-weight: 600; }
.compare-link a:hover { text-decoration: underline; }

.matrix { margin-top: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.matrix-scroll { overflow-x: auto; }
.matrix table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 820px; }
.matrix th, .matrix td { padding: 10px 14px; border-top: 1px solid var(--line-2); text-align: center; vertical-align: middle; }
.matrix thead th { border-top: 0; background: #fff; font-size: 14px; font-weight: 700; padding: 14px 14px 12px; border-bottom: 1px solid var(--line); }
.matrix thead .plan-price { display: block; font-family: var(--mono); font-weight: 500; font-size: 11px; color: var(--ink-3); margin-top: 3px; letter-spacing: 0; text-transform: none; }
.matrix th:first-child, .matrix td:first-child { text-align: left; position: sticky; left: 0; background: #fff; min-width: 250px; box-shadow: 1px 0 0 var(--line-2); }
.matrix tbody th { font-weight: 500; color: var(--ink); }
.matrix tbody th small { display: block; font-weight: 400; font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }
.matrix tr.grp th { background: var(--ground-2); font-family: var(--mono); font-weight: 600; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); padding: 8px 14px; }
.matrix td.hot, .matrix thead th.hot { background: #FBFAFE; }
.matrix td.yes svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: -3px; }
.matrix td.no { color: var(--ink-4); }
.matrix td b { font-variant-numeric: tabular-nums; font-weight: 600; }
.matrix .soon { display: inline-block; font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--warn-tint); color: var(--warn); padding: 2px 6px; border-radius: 5px; }
.matrix .mark-row { display: inline-flex; align-items: center; gap: 8px; }

.roadmap { margin: 28px auto 0; max-width: 860px; border: 1px dashed var(--accent-line); border-radius: 14px; background: #FCFBFF; padding: 16px 20px; display: flex; gap: 10px 14px; flex-wrap: wrap; align-items: center; }
.roadmap b { font-size: 13px; font-weight: 700; margin-right: 4px; }
.roadmap span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-2); border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 4px 11px; }
.roadmap span i { width: 6px; height: 6px; border-radius: 50%; background: var(--warn); display: block; }

/* ── Speed: below-the-fold sections render as they approach. */
#safety, #results, #teams, #faq { content-visibility: auto; contain-intrinsic-size: auto 820px; }

/* ── Responsive for the new pieces ───────────────────────── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feat-wide { grid-column: span 2; }
}
@media (max-width: 860px) {
  .page-hero h1 { font-size: 34px; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .feat-wide { grid-column: auto; }
  .fx { top: 16px; right: 16px; }
}

/* ── Reduced motion: everything new stands down too ──────── */
@media (prefers-reduced-motion: reduce) {
  html.js .feat .ln *, html.js .trust-card > svg *, html.js .split li svg path { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  .feat:hover .ln * { animation: none; }
  html.js .coin-wrap::after { animation: none; opacity: 0; }
  .coin-wrap .coin { transition: none; }
  .feat:hover .coin-wrap .coin { transform: none; }
  html.js .cap-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  html.js [data-reveal] { transition: none; }
}

/* =============================================================
   Motion, unhurried (v4) — the animations live longer on stage.
   Same curves; more travel, more time, wider staggers.
   ============================================================= */
html.js [data-reveal] {
  transform: translateY(30px);
  transition-duration: 1.2s;
  transition-delay: calc(var(--ri, 0) * 120ms);
}
html.js .hero-copy > * { animation-duration: 1.2s; }
html.js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
html.js .hero-copy > *:nth-child(2) { animation-delay: .2s; }
html.js .hero-copy > *:nth-child(3) { animation-delay: .36s; }
html.js .hero-copy > *:nth-child(4) { animation-delay: .52s; }
html.js .hero-copy > *:nth-child(5) { animation-delay: .68s; }
html.js .hero-visual .mock { animation-duration: 1.3s; animation-delay: .35s; }
html.js .float-reply { animation: floatIn 1s cubic-bezier(.16, 1, .3, 1) 1.3s forwards, drift 7s ease-in-out 2.8s infinite alternate; }
html.js .float-sender { animation: floatIn 1s cubic-bezier(.16, 1, .3, 1) 1.6s forwards, drift 8s ease-in-out 3.2s infinite alternate-reverse; }
/* The chart takes its time bar by bar. */
html.js .bars rect { animation-duration: 1.1s; }
html.js .bars rect:nth-of-type(1)  { animation-delay: .8s; }
html.js .bars rect:nth-of-type(2)  { animation-delay: .88s; }
html.js .bars rect:nth-of-type(3)  { animation-delay: .96s; }
html.js .bars rect:nth-of-type(4)  { animation-delay: 1.04s; }
html.js .bars rect:nth-of-type(5)  { animation-delay: 1.12s; }
html.js .bars rect:nth-of-type(6)  { animation-delay: 1.2s; }
html.js .bars rect:nth-of-type(7)  { animation-delay: 1.28s; }
html.js .bars rect:nth-of-type(8)  { animation-delay: 1.36s; }
html.js .bars rect:nth-of-type(9)  { animation-delay: 1.44s; }
html.js .bars rect:nth-of-type(10) { animation-delay: 1.52s; }
html.js .bars rect:nth-of-type(11) { animation-delay: 1.6s; }
html.js .bars rect:nth-of-type(12) { animation-delay: 1.68s; }
html.js .bars rect:nth-of-type(13) { animation-delay: 1.76s; }
html.js .bars rect:nth-of-type(14) { animation-delay: 1.84s; }
/* Icons draw slowly enough to watch. */
html.js .feat.in .ln * { animation-duration: 1.8s; animation-delay: calc(var(--ri, 0) * 120ms + .3s); }
.feat:hover .ln * { animation-duration: 1.2s; }
html.js .split-copy.in li svg path { animation-duration: 1s; }
/* The coins glint in a longer, lazier pass. */
html.js .coin-wrap::after { animation-duration: 8.5s; }
@keyframes glint { 0% { transform: translateX(-110%); } 26% { transform: translateX(110%); } 100% { transform: translateX(110%); } }
/* Both marquees slow to a read-along pace. */
html.js .logo-track { animation-duration: 70s; }
html.js .cap-track { animation-duration: 85s; }
.faq details[open] p { animation-duration: .5s; }
.feat, .how > div, .who > div, .result, .plan { transition-duration: .35s; }

/* Reduced motion outranks all of the above by coming last. */
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.js .hero-copy > *, html.js .hero-visual .mock, html.js .float, html.js .bars rect { opacity: 1; transform: none; animation: none; }
  html.js .feat.in .ln *, .feat:hover .ln *, html.js .split-copy.in li svg path { animation: none; }
  html.js .coin-wrap::after { animation: none; opacity: 0; }
  html.js .logo-track, html.js .cap-track { animation: none; }
}


/* ── v6: the database card, the voice-note card, the duo row ─ */
.feat-duo { grid-column: span 2; }
.soon-chip { display: inline-block; vertical-align: 2px; margin-left: 8px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--warn-tint); color: var(--warn); padding: 2px 7px; border-radius: 5px; white-space: nowrap; }
.dbstat { margin-top: 12px; display: flex; align-items: baseline; gap: 10px; }
.dbstat strong { font-size: 38px; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.dbstat span { font-size: 12.5px; color: var(--ink-3); }
.wave { margin-top: auto; padding-top: 10px; display: flex; align-items: center; gap: 12px; }
.wave .play { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); flex: none; display: flex; align-items: center; justify-content: center; }
.wave .play svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }
.wave .bars2 { display: flex; align-items: center; gap: 3px; height: 36px; flex: 1; min-width: 0; overflow: hidden; }
.wave .bars2 i { width: 4px; border-radius: 2px; background: var(--accent); opacity: .5; height: calc(var(--h) * 1%); flex: none; }
html.js .wave .bars2 i { animation: wavepulse 1.5s ease-in-out calc(var(--wi) * 90ms) infinite alternate; }
@keyframes wavepulse { from { transform: scaleY(.5); opacity: .35; } to { transform: scaleY(1); opacity: .75; } }
@media (max-width: 560px) {
  .feat-duo { grid-column: auto; }
  .dbstat strong { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .wave .bars2 i { animation: none; }
}

/* ── /demo — form on its own page, plus the click-to-open modal ─ */
.demo-page { padding-top: 56px; padding-bottom: 72px; }
.demo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.demo-copy .sec-head { max-width: none; }
.demo-copy .sec-head h1 {
  font-size: clamp(32px, 4.2vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-top: 12px;
  text-wrap: balance;
}
.demo-copy .sec-lede { margin-top: 14px; max-width: 520px; }
.demo-copy h2 { margin-top: 32px; font-size: 18px; letter-spacing: -0.02em; }
.demo-points { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.demo-points li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.demo-points li b { color: var(--ink); font-weight: 600; }
.demo-points li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--accent); fill: none; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.demo-live-cta { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.demo-live-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
.demo-live-cta .btn svg { width: 16px; height: 16px; margin-left: 2px; }
.demo-note { margin: 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.55; max-width: 420px; }
.demo-note a { color: var(--accent); font-weight: 600; }
.cal-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 1px 2px rgba(26,26,33,.04), 0 24px 60px -30px rgba(26,26,33,.25); }
.cal-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--ground-2); font-size: 13px; color: var(--ink-3); }
.cal-head b { color: var(--ink); font-size: 14.5px; }
.cal-card .form { margin: 0; padding: 20px 18px 22px; }
.cal-card .form .btn { width: 100%; justify-content: center; }
.cal-card-body { padding: 20px 18px 22px; }
.cal-card-body:has([data-demo-form]) { padding: 0; }
.cal-embed-body { padding: 0; overflow: hidden; }
.cal-embed-body .calendly-inline-widget { min-height: 680px; }
.cal-fallback {
  margin: 0;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
}
.cal-fallback a { color: var(--accent); font-weight: 600; }
.cal-card .demo-success { padding: 28px 22px 26px; }
.demo-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.demo-success { padding: 28px 22px 26px; }
.demo-success b { display: block; font-size: 18px; letter-spacing: -0.02em; }
.demo-success p { margin: 8px 0 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.demo-success .btn { width: 100%; justify-content: center; }
@media (max-width: 960px) {
  .demo-grid { grid-template-columns: 1fr; gap: 28px; }
  .demo-grid .cal-card { order: -1; }
  .demo-page { padding-top: 36px; }
  .cal-embed-body .calendly-inline-widget { min-height: 620px; height: 620px !important; }
}

.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.demo-modal.open { display: flex; }
.demo-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 24, .48);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.demo-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: none;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 28px 18px;
  box-shadow: 0 24px 60px -20px rgba(26,26,33,.35);
}
.demo-modal-panel h2 { font-size: 20px; letter-spacing: -0.03em; padding-right: 36px; }
.demo-modal-panel .lede { margin-top: 4px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.demo-modal-panel .form { margin-top: 16px; }
.demo-modal-panel .form .btn,
.demo-modal-panel .demo-success .btn { width: 100%; justify-content: center; }
.demo-modal-panel [data-sandbox-webform-mount] { margin-top: 12px; }
.demo-modal-panel .demo-success { padding: 12px 0 8px; }
.demo-modal-panel .demo-success p { margin: 6px 0 0; }

/* Compact form layout inside the modal — no scroll */
.demo-modal-panel .mercury-zoho-form { padding: 0; }
.demo-modal-panel .mercury-zoho-form .err { margin: 0 0 10px; padding: 8px 11px; }
.demo-modal-panel .mercury-zoho-form .zcwf_row { margin: 0 0 10px; gap: 10px; }
.demo-modal-panel .mercury-zoho-form .zcwf_row.row2 { gap: 12px; }
.demo-modal-panel .mercury-zoho-form .zcwf_field label {
  font-size: 12px;
  margin-bottom: 5px;
}
.demo-modal-panel .mercury-zoho-form .zcwf_field input[type="text"],
.demo-modal-panel .mercury-zoho-form .zcwf_field input[type="password"],
.demo-modal-panel .mercury-zoho-form .zcwf_field input[type="email"],
.demo-modal-panel .mercury-zoho-form .zcwf_field input:not([type]) {
  height: 40px;
  font-size: 14px;
  padding: 0 11px;
}
.demo-modal-panel .mercury-zoho-form .zcwf_captcha { margin-top: 0; padding-top: 0; }
.demo-modal-panel .mercury-zoho-form .zcwf_captcha_row { margin-bottom: 8px; gap: 10px; }
.demo-modal-panel .mercury-zoho-form .zcwf_captcha_img { height: 40px; }
.demo-modal-panel .mercury-zoho-form .zcwf_actions { margin: 12px 0 0; }
.demo-modal-panel .mercury-zoho-form .formsubmit.zcwf_button,
.demo-modal-panel .mercury-zoho-form input.formsubmit {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14.5px;
}
.demo-modal-panel .mercury-zoho-form .zcwf_hint {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

/* Zoho WebToLead — Mercury skin */
.mercury-zoho-form,
#crmWebToEntityForm.mercury-zoho-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px 20px 20px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: var(--font);
}
.cal-card .mercury-zoho-form { padding: 22px 20px 20px; }
.demo-modal-panel .mercury-zoho-form { padding: 4px 0 8px; }
.mercury-zoho-form * { box-sizing: border-box; direction: ltr; }
.mercury-zoho-form > form { margin: 0; display: block; }
.mercury-zoho-form .err {
  margin: 0 0 16px;
  padding: 11px 13px;
}
.mercury-zoho-form .zcwf_row {
  margin: 0 0 16px;
  display: grid;
  gap: 14px;
}
.mercury-zoho-form .zcwf_row.row2 {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mercury-zoho-form .zcwf_row:last-of-type { margin-bottom: 0; }
.mercury-zoho-form .zcwf_field { min-width: 0; }
.mercury-zoho-form .zcwf_field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
  color: var(--ink);
}
.mercury-zoho-form .zcwf_field .req { color: #C8102E; margin-left: 1px; }
.mercury-zoho-form .zcwf_field input[type="text"],
.mercury-zoho-form .zcwf_field input[type="password"],
.mercury-zoho-form .zcwf_field input[type="email"],
.mercury-zoho-form .zcwf_field input:not([type]),
.mercury-zoho-form .zcwf_field textarea {
  width: 100%;
  height: 44px;
  float: none;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm);
  padding: 0 13px;
  font: inherit;
  font-size: 14.5px;
  line-height: 1.3;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.mercury-zoho-form .zcwf_field input::placeholder {
  color: var(--ink-4);
}
.mercury-zoho-form .zcwf_field input:hover {
  border-color: #D8D7DF !important;
}
.mercury-zoho-form .zcwf_field input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.mercury-zoho-form .zcwf_captcha {
  margin-top: 4px;
  padding-top: 4px;
}
.mercury-zoho-form .zcwf_captcha_row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mercury-zoho-form .zcwf_captcha_img {
  height: 44px;
  width: auto;
  max-width: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ground-2);
  object-fit: contain;
}
.mercury-zoho-form .zcwf_captcha_reload {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.mercury-zoho-form .zcwf_captcha_reload:hover { text-decoration: underline; }
.mercury-zoho-form .zcwf_captcha_err {
  font-size: 13px;
  color: #9B1B2E;
  min-height: 0;
  padding: 0;
  visibility: hidden;
}
.mercury-zoho-form .zcwf_actions {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}
.mercury-zoho-form .formsubmit.zcwf_button,
.mercury-zoho-form input.formsubmit {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 48px;
  margin: 0;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff !important;
  background: var(--accent) !important;
  cursor: pointer;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  transition: background .15s ease;
}
.mercury-zoho-form .formsubmit.zcwf_button:hover,
.mercury-zoho-form input.formsubmit:hover {
  background: var(--accent-hover) !important;
  box-shadow: none !important;
  border: 0 !important;
  color: #fff !important;
}
.mercury-zoho-form .formsubmit.zcwf_button:disabled,
.mercury-zoho-form input.formsubmit:disabled {
  opacity: .6;
  cursor: wait;
}
.mercury-zoho-form .zcwf_reset {
  display: none;
}
.mercury-zoho-form .zcwf_hint {
  margin: 12px 0 0;
  padding: 0 2px;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  text-align: center;
}
.demo-modal-panel [data-sandbox-webform-mount] { margin-top: 12px; }
.cal-card .demo-success { padding: 32px 24px 28px; }
.demo-success b { display: block; font-size: 18px; letter-spacing: -0.02em; }
.demo-success p { margin: 10px 0 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 600px) {
  .mercury-zoho-form,
  #crmWebToEntityForm.mercury-zoho-form,
  .cal-card .mercury-zoho-form {
    padding: 18px 16px 16px;
  }
  .mercury-zoho-form .zcwf_row { margin-bottom: 14px; }
  .mercury-zoho-form .zcwf_row.row2 { grid-template-columns: 1fr; gap: 14px; }
  .mercury-zoho-form .zcwf_field input[type="text"],
  .mercury-zoho-form .zcwf_field input:not([type]) {
    height: 46px;
    font-size: 16px; /* avoid iOS zoom */
  }
}
.demo-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.demo-modal-close:hover { background: var(--ground-3); color: var(--ink); }
.demo-modal-close svg { width: 18px; height: 18px; }
body.demo-modal-lock { overflow: hidden; }

/* ── Footer, v8 ──────────────────────────────────────────────
   Mark and tagline on the left, four tight mono-labelled columns on
   the right, a bottom bar, and the name set huge in a ground-toned
   gradient and cropped at the page's edge. Appended last so it wins. */
.ftr { padding: 72px 0 0; border-top: 1px solid var(--line); background: var(--ground-2); overflow: hidden; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr)); gap: 32px 24px; }
.ftr .brand { font-size: 17px; }
.ftr .about { margin-top: 12px; font-size: 14px; color: var(--ink-2); max-width: 260px; line-height: 1.5; }
.ftr-mail { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.ftr-mail:hover { color: var(--accent); border-color: var(--accent); }
.ftr h5 { margin: 0 0 12px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.ftr ul { display: grid; gap: 9px; font-size: 14px; }
.ftr ul a { color: var(--ink-2); transition: color .15s; }
.ftr ul a:hover { color: var(--ink); }
.ftr-bottom { margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3); }
.ftr-top { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink-2); margin-left: auto; }
.ftr-top svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.ftr-top:hover { color: var(--ink); }
.ftr-top:hover svg { transform: translateY(-2px); }
html.js .ftr-giant[data-reveal] { transform: translateY(44px); transition-duration: 1.6s; }
@media (max-width: 860px) {
  .ftr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .ftr { padding-top: 48px; }
  .ftr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }
  .ftr-top { margin-left: 0; }
}

/* ── /pricing on a phone ─────────────────────────────────────
   The matrix keeps its sideways scroll but tells you so and gives the
   plan columns room; the add-ons table stops fighting a no-wrap price
   cell and stacks each row instead. */
.matrix-hint { display: none; }
@media (max-width: 640px) {
  .matrix-hint { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line-2); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); background: var(--ground-2); }
  .matrix-hint svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .matrix table { min-width: 700px; font-size: 13px; }
  .matrix th, .matrix td { padding: 9px 10px; }
  .matrix th:first-child, .matrix td:first-child { min-width: 164px; max-width: 164px; width: 164px; }
  .matrix tbody th small { font-size: 11px; }
  .matrix thead th { font-size: 13px; }
  .matrix thead .plan-price { font-size: 10px; }
  .addons tr { display: block; border-top: 1px solid var(--line-2); }
  .addons tr:first-child { border-top: 0; }
  .addons td { display: block; border-top: 0; padding: 12px 16px 0; }
  .addons td:last-child { text-align: left; white-space: normal; padding: 6px 16px 12px 44px; font-size: 13.5px; }
  .addons td small { max-width: none; }
  .plan .for { min-height: 0; }
  .page-hero { padding-top: 48px; }
}

/* =============================================================
   v9 (2026-08-28) — the header grows two menus (Product, Community),
   the footer name is shown whole, and five new pages arrive:
   /industries, /departments, /agencies, /affiliates, /experts.
   ============================================================= */

/* ── Header menus ────────────────────────────────────────────
   Hover opens on a pointer, a click pins (and works on touch), Escape
   or a click elsewhere closes. The closed state is visibility:hidden so
   nothing inside is focusable or clickable while it is away. */
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border: 0; background: transparent; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; color: var(--ink-2); cursor: pointer; line-height: 1.4; }
.nav-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s cubic-bezier(.2, .7, .2, 1); }
.nav-link:hover, .nav-item:hover:not(.closed) > .nav-link, .nav-item.open > .nav-link { color: var(--ink); background: var(--ground-3); }
.nav-item:hover:not(.closed) > .nav-link svg, .nav-item.open > .nav-link svg { transform: rotate(180deg); }
.menu { position: absolute; top: calc(100% + 10px); left: 0; z-index: 40; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 1px 2px rgba(26,26,33,.04), 0 28px 70px -28px rgba(26,26,33,.4); padding: 8px; display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .28s ease, transform .4s cubic-bezier(.2, .7, .2, 1), visibility 0s linear .28s; }
.menu::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-item:hover:not(.closed) > .menu, .nav-item.open > .menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.menu a { display: block; padding: 8px 10px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.35; transition: background .15s; }
.menu a:hover { background: var(--ground-3); }
.menu a small { display: block; font-weight: 400; color: var(--ink-3); font-size: 12.5px; margin-top: 2px; line-height: 1.4; }
.menu-col h6 { margin: 6px 10px 6px; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.menu-product { width: min(780px, calc(100vw - 48px)); grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 14px; gap: 6px 14px; }
.menu-card { border-radius: 10px; background: linear-gradient(180deg, #F5F3FE 0%, #FBFAFF 100%); border: 1px solid var(--accent-line); padding: 14px; display: flex; flex-direction: column; }
.menu-card h6 { margin: 0 0 8px; }
.menu-card b { font-size: 15px; letter-spacing: -0.01em; }
.menu-card p { margin-top: 6px; font-size: 12.5px; color: var(--ink-2); line-height: 1.45; flex: 1; }
.menu-card a { margin-top: 12px; padding: 0; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); }
.menu-card a:hover { background: transparent; text-decoration: underline; text-underline-offset: 3px; }
.menu-card a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.menu-card a:hover svg { transform: translateX(3px); }
.menu-community { width: 340px; }

@media (max-width: 860px) {
  .nav { max-height: calc(100vh - 60px); overflow: auto; }
  .nav-item { position: static; }
  .nav-link { width: 100%; justify-content: space-between; padding: 11px 10px; }
  .menu, .nav-item:hover > .menu { position: static; display: none; width: auto; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 10px 10px; grid-template-columns: 1fr; gap: 0; }
  .nav-item.open > .menu { display: grid; }
  .menu::before { display: none; }
  .menu-col h6 { margin-top: 10px; }
  .menu-card { margin-top: 10px; }
}

/* ── The footer name, whole ─────────────────────────────────
   The first cut cropped it at the page edge the way the reference does;
   the owner wants the whole name. The container now fits the glyphs
   (line-height .9 keeps the descender of the y) and the size is clamped
   so thirteen characters always fit between the phone margins. */
.ftr-giant { position: relative; height: auto; margin-top: 44px; padding: 0 24px 6px; overflow: hidden; text-align: center; line-height: 0; }
.ftr-giant span { position: static; display: inline-block; transform: none; white-space: nowrap; font-size: clamp(40px, 14vw, 216px); font-weight: 700; letter-spacing: -0.055em; line-height: .9; color: transparent; background: linear-gradient(180deg, #D3D2DD 0%, #EBEAF0 100%); -webkit-background-clip: text; background-clip: text; user-select: none; }
.ftr-grid { grid-template-columns: 1.4fr repeat(5, minmax(0, 1fr)); }
@media (max-width: 1024px) { .ftr-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .ftr-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .ftr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ftr-giant { margin-top: 32px; padding: 0 16px 4px; } }

/* ── Solutions pages (/industries, /departments, /agencies) ─── */
.seg-nav { margin-top: 30px; display: flex; gap: 8px; flex-wrap: wrap; }
.seg-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: #fff; transition: border-color .2s, color .2s, transform .2s; }
.seg-nav a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.sec-head.center .seg-nav { justify-content: center; }
.uc { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 80px 0; border-top: 1px solid var(--line); scroll-margin-top: 76px; }
.uc-list > .uc:first-child { border-top: 0; padding-top: 24px; }
.uc.rev > .uc-copy { order: 2; }
.uc-copy h2 { font-size: 32px; letter-spacing: -0.03em; margin-top: 8px; text-wrap: balance; }
.uc-copy > p { margin-top: 14px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.uc-copy ul { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.uc-copy li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.uc-copy li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--good); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.uc-copy li b { font-weight: 600; }
.uc-links { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
/* The playbook card: the audience filters, the journey, where it lands. */
.pb { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 1px 2px rgba(26,26,33,.04), 0 24px 60px -30px rgba(26,26,33,.25); overflow: hidden; }
.pb-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--ground-2); font-size: 12px; color: var(--ink-3); }
.pb-head b { color: var(--ink); font-weight: 600; }
.pb-body { padding: 14px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
/* A nowrap steps strip inside a row would widen the track past the card
   (the grid min-content trap, third sighting); the rows may shrink and
   the strip wraps instead of clipping. */
.pb-body > .pb-row { min-width: 0; }
.pb .steps { flex-wrap: wrap; row-gap: 6px; overflow: visible; }
.pb .step { font-size: 11.5px; padding: 5px 8px; }
.pb-row { border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; }
.pb-label { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); display: flex; justify-content: space-between; gap: 10px; }
.pb-label i { font-style: normal; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink-4); }
.chips { margin-top: 9px; display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 7px; padding: 4px 8px; font-size: 12px; background: #fff; color: var(--ink); }
.chip b { font-weight: 500; color: var(--ink-3); }
.chip.ai { border-color: var(--accent-line); background: var(--accent-tint); color: var(--accent); }
.pb .steps { margin-top: 10px; }
.lands { margin-top: 9px; display: flex; gap: 6px; flex-wrap: wrap; }
.lands span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; padding: 4px 9px; border-radius: 999px; background: var(--ground-3); color: var(--ink-2); }
.lands span i { width: 6px; height: 6px; border-radius: 50%; background: var(--good); display: block; }
.pb-msg { margin-top: 9px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; border-left: 2px solid var(--accent-line); padding-left: 10px; }
.pb-msg em { font-style: normal; background: var(--accent-tint); color: var(--accent); padding: 0 4px; border-radius: 4px; }
.how.four { grid-template-columns: repeat(4, 1fr); }
.who.two { grid-template-columns: repeat(2, 1fr); }
.who.four { grid-template-columns: repeat(4, 1fr); }
.who .ln { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 12px; display: block; }
.who ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; font-size: 14px; color: var(--ink); }
.who li { display: flex; gap: 8px; }
.who li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 9px; flex: none; }

/* ── Programme pages (/affiliates, /experts) ─────────────────── */
.terms { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.term { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.term small { font-size: 12.5px; font-weight: 600; color: var(--ink-3); }
.term strong { display: block; font-size: 34px; letter-spacing: -0.04em; margin-top: 8px; font-variant-numeric: tabular-nums; }
.term p { margin-top: 8px; color: var(--ink-2); font-size: 14px; }
.terms-note { margin-top: 16px; font-size: 13px; color: var(--ink-3); }
.cert { border-radius: 16px; background: var(--ink); color: #fff; padding: 26px; position: relative; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(26,26,33,.6); }
.cert::after { content: ''; position: absolute; inset: auto -40px -60px auto; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(139,124,238,.35), transparent 70%); }
.cert-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #B8B7C4; }
.cert h3 { font-size: 26px; letter-spacing: -0.03em; margin-top: 10px; color: #fff; }
.cert p { margin-top: 8px; color: #C9C8D4; font-size: 14px; }
.cert-seal { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.cert-seal .coin-wrap { width: 44px; height: 44px; }
.cert-seal div b { display: block; font-size: 14px; }
.cert-seal div span { font-size: 12px; color: #B8B7C4; font-family: var(--mono); }
.cert-list { margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid #2E2E3A; list-style: none; display: grid; gap: 8px; font-size: 13.5px; color: #E9E8EF; }
.cert-list li { display: flex; gap: 9px; }
.cert-list li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: #8FE3C4; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.apply { margin-top: 44px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 24px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
.apply h3 { font-size: 22px; letter-spacing: -0.025em; }
.apply p { margin-top: 8px; color: var(--ink-2); font-size: 14.5px; }
.apply ol { margin: 0; padding-left: 18px; color: var(--ink-2); font-size: 14px; display: grid; gap: 6px; }
.apply .hero-cta { margin-top: 18px; }

@media (max-width: 1024px) {
  .terms { grid-template-columns: repeat(2, 1fr); }
  .how.four, .who.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .uc { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .uc.rev > .uc-copy { order: 0; }
  .uc-copy h2 { font-size: 27px; }
  .apply { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .terms, .how.four, .who.two, .who.four { grid-template-columns: 1fr; }
  .seg-nav a { font-size: 12.5px; padding: 6px 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu { transition: none; }
  .nav-link svg, .seg-nav a, .menu-card a svg { transition: none; }
}

/* =============================================================
   v10 (2026-08-28) — colour on the two doors (plans green, demo
   blue) and the motion a newcomer notices: words that rise, numbers
   that count, buttons that press, menus that arrive, a reading line.
   ============================================================= */

/* ── The two doors ─────────────────────────────────────────── */
.btn-green, .band .btn-green { background: #15803D; border-color: #15803D; color: #fff; }
.btn-green:hover, .band .btn-green:hover { background: #166534; border-color: #166534; color: #fff; }
.btn-blue, .band .btn-blue { background: #2563EB; border-color: #2563EB; color: #fff; }
.btn-blue:hover, .band .btn-blue:hover { background: #1D4ED8; border-color: #1D4ED8; color: #fff; }
/* The header demo button used to be a ghost, which the phone rule hides;
   blue now, and still hidden there — the toggle needs the room. */
@media (max-width: 860px) { .hdr-cta .btn-blue { display: none; } }

/* ── Buttons: lift, press, ripple ──────────────────────────── */
.btn { position: relative; overflow: hidden; transition: transform .28s cubic-bezier(.2, .7, .2, 1), box-shadow .28s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(26,26,33,.45); }
.btn:active { transform: translateY(1px); box-shadow: none; transition-duration: .08s; }
.btn svg.arr { transition: transform .3s cubic-bezier(.2, .7, .2, 1); }
.btn:hover svg.arr { transform: translateX(3px); }
.ripple { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.4); transform: translate(-50%, -50%) scale(0); pointer-events: none; animation: ripple .65s ease-out forwards; }
.btn-ghost .ripple { background: rgba(26,26,33,.14); }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(30); opacity: 0; } }

/* ── A reading line under the header ───────────────────────── */
.progress { position: fixed; top: 0; left: 0; z-index: 60; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; pointer-events: none; }

/* ── Menus: items arrive one after another, a tick on hover ─── */
.menu a, .menu-card { --mi: 0; }
.nav-item.open > .menu a, .nav-item:hover:not(.closed) > .menu a,
.nav-item.open > .menu .menu-card, .nav-item:hover:not(.closed) > .menu .menu-card { animation: menuin .5s cubic-bezier(.2, .7, .2, 1) both; animation-delay: calc(var(--mi) * 26ms); }
@keyframes menuin { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.menu-col a, .menu-community a { position: relative; }
.menu-col a::before, .menu-community a::before { content: ''; position: absolute; left: 0; top: 9px; bottom: 9px; width: 2px; border-radius: 2px; background: var(--accent); transform: scaleY(0); transition: transform .22s cubic-bezier(.2, .7, .2, 1); }
.menu-col a:hover::before, .menu-community a:hover::before { transform: scaleY(1); }
.nav > a { transition: background .2s ease, color .2s ease; }
.nav-link { transition: background .2s ease, color .2s ease; }

/* ── Headlines: the words rise one by one ──────────────────── */
html.js .hero h1 .w, html.js .page-hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.55em); animation: wordin 1s cubic-bezier(.16, 1, .3, 1) forwards; animation-delay: calc(.08s + var(--wi) * 65ms); }
@keyframes wordin { to { opacity: 1; transform: none; } }

/* ── Scroll: reveals with a direction, cards that arrive in rows ── */
/* 22px stays inside the 24px page margin, so nothing scrolls sideways
   while a row is still off to the side; stacked rows on a phone rise. */
html.js [data-reveal="left"] { transform: translateX(-22px); }
html.js [data-reveal="right"] { transform: translateX(22px); }
@media (max-width: 860px) { html.js [data-reveal="left"], html.js [data-reveal="right"] { transform: translateY(22px); } }
html.js .pb .pb-row, html.js .pb .kpis { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .9s cubic-bezier(.16, 1, .3, 1); }
html.js .pb.in .pb-row, html.js .pb.in .kpis { opacity: 1; transform: none; }
html.js .pb.in .pb-body > :nth-child(2) { transition-delay: .18s; }
html.js .pb.in .pb-body > :nth-child(3) { transition-delay: .36s; }
html.js .pb.in .pb-body > :nth-child(4) { transition-delay: .54s; }
.sec-head:not(.center) .kicker { display: inline-flex; align-items: center; gap: 8px; }
.sec-head:not(.center) .kicker::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .9s cubic-bezier(.2, .7, .2, 1) .25s; }
.sec-head.in .kicker::before { transform: scaleX(1); }
html:not(.js) .sec-head .kicker::before { transform: none; }
.hero-visual { will-change: transform; }

/* ── Cards on the new pages answer the pointer ─────────────── */
.pb, .term, .apply, .cert, .uc-copy .btn { transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, border-color .25s ease; }
.term:hover, .apply:hover { transform: translateY(-3px); border-color: #D8D7DF; box-shadow: 0 16px 36px -24px rgba(26,26,33,.4); }
.pb:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(26,26,33,.04), 0 34px 70px -32px rgba(26,26,33,.4); }
.cert:hover { transform: translateY(-4px); }
.seg-nav a { transition: border-color .2s, color .2s, transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s; }
.seg-nav a:hover { box-shadow: 0 8px 18px -12px rgba(26,26,33,.4); }
.who .ln, .feat .icon { transition: transform .4s cubic-bezier(.2, .7, .2, 1); }
.who > div:hover .ln { transform: translateY(-2px) rotate(-4deg); }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn svg.arr, .pb, .term, .apply, .cert, .seg-nav a, .who .ln { transition: none; }
  .btn:hover, .btn:active, .pb:hover, .term:hover, .apply:hover, .cert:hover { transform: none; }
  .ripple, .progress { display: none; }
  .nav-item.open > .menu a, .nav-item:hover:not(.closed) > .menu a, .nav-item.open > .menu .menu-card, .nav-item:hover:not(.closed) > .menu .menu-card { animation: none; }
  html.js .hero h1 .w, html.js .page-hero h1 .w { opacity: 1; transform: none; animation: none; }
  html.js [data-reveal="left"], html.js [data-reveal="right"] { transform: none; }
  html.js .pb .pb-row, html.js .pb .kpis { opacity: 1; transform: none; transition: none; }
  .sec-head .kicker::before { transform: none; transition: none; }
}

/* =============================================================
   v11 (2026-08-28) — segment titles you can read. The 13px violet
   kicker above each industry/department row becomes a tag: an icon
   chip, a 17px name and its index; the page kicker becomes a pill;
   the segment chips move into a sticky bar that knows where you are.
   ============================================================= */
.page-hero .kicker { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 999px; background: var(--accent-tint); border: 1px solid var(--accent-line); font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.uc-tag { display: inline-flex; align-items: center; gap: 12px; }
.uc-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-tint); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; flex: none; transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
.uc-ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.uc:hover .uc-ico { transform: translateY(-2px) rotate(-4deg); }
.uc-tag > span:not(.uc-ico) { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.uc-tag i { font-style: normal; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .06em; padding-left: 12px; border-left: 1px solid var(--line); }
.uc-copy .uc-tag + h2 { margin-top: 18px; }
.uc { scroll-margin-top: 128px; }

.seg-bar { position: sticky; top: 60px; z-index: 30; margin-top: 32px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.seg-bar .wrap { display: flex; }
.seg-bar .seg-nav { margin: 0; padding: 10px 0; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.seg-bar .seg-nav::-webkit-scrollbar { display: none; }
.seg-bar .seg-nav a { white-space: nowrap; flex: none; }
.seg-nav a.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.seg-nav a.on:hover { transform: none; box-shadow: none; }
@media (max-width: 560px) {
  .uc-ico { width: 36px; height: 36px; border-radius: 10px; }
  .uc-tag > span:not(.uc-ico) { font-size: 15.5px; }
  .seg-bar .wrap { padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) { .uc-ico { transition: none; } .uc:hover .uc-ico { transform: none; } }

/* ── /experts listing (v12) — rendered only once EXPERTS has a name ── */
.experts-grid { grid-template-columns: repeat(3, 1fr); }
.expert { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; display: flex; flex-direction: column; gap: 6px; }
.expert b { font-size: 17px; letter-spacing: -0.01em; }
.expert > span { color: var(--ink-2); font-size: 14px; }
.expert small { color: var(--ink-3); font-size: 12.5px; }
.expert ul { margin: 10px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.expert li { display: inline-flex; font-size: 12px; padding: 3px 9px; border-radius: 999px; background: var(--ground-3); color: var(--ink-2); }
.expert li::before { display: none; }
.expert a { margin-top: auto; padding-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--accent); }
@media (max-width: 1024px) { .experts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .experts-grid { grid-template-columns: 1fr; } }

/* =============================================================
   v13 (2026-08-29) — the two long sections say less and show more.
   "How it works" is three cards with a picture on top; "Features"
   is a stack of centred claims, each with its own CTA and one
   large illustration. The pictures are drawn here, not photographed
   — every panel inside them is a real Mercury surface, and the
   numbers in them are examples (the page says so).
   ============================================================= */

/* ── The grounds the illustrations sit on ─────────────────── */
.g-art { position: relative; border-radius: 16px; overflow: hidden; isolation: isolate; }
.g-art::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, .38), rgba(255, 255, 255, 0) 55%);
}
.g-art > * { position: relative; z-index: 1; }
.g-1 { background: linear-gradient(140deg, #1B7C8C 0%, #2F5BD0 52%, #5B44C8 100%); }
.g-2 { background: linear-gradient(140deg, #4B3BB5 0%, #7355D6 48%, #A96FC4 100%); }
.g-3 { background: linear-gradient(140deg, #0F6E56 0%, #2D8E74 48%, #71B58C 100%); }
.g-4 { background: linear-gradient(140deg, #232B3A 0%, #3E4A63 50%, #6E7A93 100%); }
.g-5 { background: linear-gradient(140deg, #8A4A1E 0%, #C0693A 48%, #D89A63 100%); }

/* A gradient ground always keeps a margin round the surface it holds. */
.art { padding: 22px; display: flex; justify-content: center; }

/* ── How it works: three steps, each with its picture ─────── */
.how-steps { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-steps > article { min-width: 0; display: flex; flex-direction: column; }
.how-steps > article > .step-card { height: 100%; }
.step-card {
  border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 14px 14px 24px;
  box-shadow: 0 1px 2px rgba(26, 26, 33, .04);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s cubic-bezier(.2, .7, .2, 1), border-color .3s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 1px 2px rgba(26, 26, 33, .05), 0 26px 60px -30px rgba(26, 26, 33, .4); }
.shot { height: 208px; display: flex; align-items: flex-start; justify-content: center; padding: 22px 20px 0; }
.step-card:hover .shot .card { transform: translateY(-3px) scale(1.015); }
.step-card h3 { margin: 20px 4px 0; font-size: 18.5px; letter-spacing: -0.015em; }
.step-card h3 .sn { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.step-card p { margin: 8px 4px 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

/* A small product surface, floating on the ground. */
.g-art .card {
  width: 100%; background: #fff; border-radius: 12px; text-align: left;
  box-shadow: 0 2px 6px rgba(16, 16, 24, .12), 0 26px 60px -24px rgba(16, 16, 24, .55);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
  overflow: hidden;
}
.card-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px; border-bottom: 1px solid var(--line); background: var(--ground-2); font-size: 11.5px; color: var(--ink-3); }
.card-bar b { color: var(--ink); font-weight: 600; font-size: 12.5px; }
.card-bar .tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); white-space: nowrap; }
.card-foot { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line-2); background: var(--ground-2); font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }
.card-body { padding: 12px; display: grid; gap: 8px; }

/* Rows of people / accounts inside a card. */
.rowlist { display: grid; gap: 6px; }
.rw { display: grid; grid-template-columns: 26px 1fr auto; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 7px 9px; font-size: 12.5px; }
.rw .av { width: 26px; height: 26px; border-radius: 50%; background: var(--ground-3); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--ink-2); }
.rw b { display: block; font-weight: 600; line-height: 1.25; }
.rw small { display: block; color: var(--ink-3); font-size: 11px; margin-top: 1px; }
.pill-s { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: var(--ground-3); color: var(--ink-2); white-space: nowrap; }
.pill-s.ok { background: var(--good-tint); color: var(--good); }
.pill-s.warn { background: var(--warn-tint); color: var(--warn); }
.pill-s.ai { background: var(--accent-tint); color: var(--accent); }

/* ── Features: a claim, a button, a picture ───────────────── */
.showcase { margin-top: 56px; display: grid; gap: clamp(56px, 7vw, 88px); }
.show { min-width: 0; }
.show-head { max-width: 640px; margin: 0 auto; text-align: center; }
.show-head .kicker { justify-content: center; }
.show-head h3 { font-size: clamp(25px, 3.4vw, 36px); letter-spacing: -0.028em; line-height: 1.12; margin-top: 12px; }
.show-head p { margin: 14px auto 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); max-width: 560px; }
.show-head .btn { margin-top: 22px; }
.show .art { margin-top: 30px; padding: clamp(20px, 4vw, 46px); display: flex; justify-content: center; }
.show .art .card { max-width: 620px; }
.art-wide .card { max-width: 760px; }
.show .art .card:hover { transform: translateY(-3px); }
.art-note { margin-top: 12px; text-align: center; font-size: 12px; color: var(--ink-4); }

/* A capability strip under the showcase — the rest, said once. */
.more-head { margin-top: clamp(56px, 7vw, 88px); text-align: center; }
.more-head h3 { font-size: 22px; letter-spacing: -0.02em; }
.more-head p { margin-top: 8px; font-size: 14.5px; color: var(--ink-3); }
.more-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.more-grid > .feat { min-width: 0; padding: 20px; gap: 10px; }
.more-grid .feat h3 { font-size: 16px; }
.more-grid .feat p { font-size: 13.5px; }
.more-grid .feat .icon { width: 44px; height: 44px; border-radius: 12px; }
.more-grid .feat .icon svg.ln { width: 22px; height: 22px; }
.more-grid .feat .icon .coin-wrap { width: 26px; height: 26px; }

/* ── The two product pages ────────────────────────────────── */
.page-lede-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-art { margin-top: 40px; padding: clamp(20px, 4vw, 48px); display: flex; justify-content: center; }
.hero-art .card { max-width: 820px; }
.spec { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spec > div { min-width: 0; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 18px 20px; }
.spec h4 { font-size: 15px; letter-spacing: -0.01em; }
.spec p { margin-top: 7px; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.spec .mono { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 9px; }

/* A grid the way Audiences draws one — columns you can add. */
.gridmock { width: 100%; border-collapse: collapse; font-size: 12px; }
.gridmock th, .gridmock td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line-2); white-space: nowrap; }
.gridmock th { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); font-weight: 500; background: var(--ground-2); }
.gridmock td b { font-weight: 600; }
.gridmock td.sub { color: var(--ink-3); }
.gridmock th.new, .gridmock td.new { background: var(--accent-tint); color: var(--accent); }
.gridmock th.new { color: var(--accent); }
.gridmock-wrap { overflow-x: auto; }
.gridmock-wrap::-webkit-scrollbar { height: 6px; }
.gridmock-wrap::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

/* A journey, drawn top to bottom. */
.flow { display: grid; gap: 0; }
.flow .node { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; font-size: 12.5px; background: #fff; }
.flow .node i { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-tint); display: flex; align-items: center; justify-content: center; }
.flow .node i svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.flow .node b { font-weight: 600; display: block; }
.flow .node small { display: block; color: var(--ink-3); font-size: 11px; margin-top: 1px; }
.flow .node.wait i { background: var(--ground-3); }
.flow .node.wait i svg { stroke: var(--ink-3); }
.flow .node.cond { border-style: dashed; }
.flow .link { justify-self: start; width: 1px; height: 14px; margin-left: 26px; background: var(--line); }
.flow .link.split { position: relative; height: 18px; }

@media (max-width: 1024px) {
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .spec { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .how-steps { grid-template-columns: 1fr; }
  .shot { height: 186px; }
}
@media (max-width: 560px) {
  .more-grid { grid-template-columns: 1fr; }
  .card-bar .tag { display: none; }
  .show .art, .hero-art { padding: 16px; border-radius: 14px; }
  .shot { padding: 16px 14px; height: 168px; }
  .rw { grid-template-columns: 24px 1fr; row-gap: 4px; }
  .rw .pill-s { grid-column: 2; justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  .step-card, .g-art .card { transition: none; }
  .step-card:hover { transform: none; box-shadow: 0 1px 2px rgba(26, 26, 33, .04); }
  .step-card:hover .shot .card, .show .art .card:hover { transform: none; }
}

/* =============================================================
   v15 (2026-08-29) — the two product pages are products, not
   anchors. They sit above the columns as tiles: an icon, the name
   and one line, so the menu says what Mercury IS before it lists
   where to read about it.
   ============================================================= */
.menu-product { grid-template-columns: minmax(0, 1fr); }
.menu-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px 14px; }
.menu-feature {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
  padding-bottom: 12px; margin-bottom: 10px; border-bottom: 1px solid var(--line-2);
}
.menu .mfeat {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--ground-2);
  transition: background .18s ease, border-color .18s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
}
.menu .mfeat:hover { background: #fff; border-color: var(--accent-line); transform: translateY(-1px); }
.mfeat-ico {
  width: 36px; height: 36px; flex: none; border-radius: 10px;
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.mfeat-ico svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu .mfeat:hover .mfeat-ico { transform: translateY(-1px) rotate(-4deg); }
.mfeat-txt { min-width: 0; }
.mfeat-txt b { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.menu .mfeat small { display: block; margin-top: 3px; font-size: 12.5px; font-weight: 400; line-height: 1.4; color: var(--ink-3); }

@media (max-width: 860px) {
  .menu-cols { grid-template-columns: 1fr; gap: 0; }
  .menu-feature { grid-template-columns: 1fr; margin: 4px 10px 10px 0; padding-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu .mfeat, .mfeat-ico { transition: none; }
  .menu .mfeat:hover { transform: none; }
  .menu .mfeat:hover .mfeat-ico { transform: none; }
}

/* =============================================================
   v17 (2026-08-29) — four steps, not three. A quarter of the row
   is about 230px, so the surface inside a step's picture is set
   one size down and its lines are kept on one line: a name that
   wraps twice reads as a bug, not as a screenshot.
   ============================================================= */
.rw > div { min-width: 0; }
.shot .card-bar { padding: 8px 10px; }
.shot .card-bar b { font-size: 12.5px; }
.shot .card-bar .tag { font-size: 9px; }
.shot .card-body { padding: 10px; gap: 7px; }
.shot .rw { grid-template-columns: 26px minmax(0, 1fr) auto; gap: 9px; padding: 7px 9px; font-size: 12.5px; }
.shot .rw .av { width: 26px; height: 26px; font-size: 10px; }
.shot .rw b, .shot .rw small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shot .rw small { font-size: 11px; }
.shot .pill-s { font-size: 10px; padding: 3px 7px; }
.shot .chip { font-size: 11.5px; padding: 4px 8px; }
.shot .node { padding: 8px 10px; font-size: 12.5px; }
.shot .node i { width: 28px; height: 28px; }
.shot .node i svg { width: 15px; height: 15px; }
.shot .node b { white-space: nowrap; }
