/* ================================================================
   ADV/MVMT — site-2026
   An editorial "prospectus" system: hairline rules, numbered marks,
   Fraunces display with rust italic accents, and a band model where
   every component inherits its colours from the ground it sits on.
   Used by: index.html, pricing.html
   ================================================================ */

/* ---- 1. Tokens ------------------------------------------------ */
:root {
  /* palette */
  --paper: #f6f3ec;
  --ink: #17150f;
  --rust: #a7412a;
  --rust-deep: #82301e;
  --rust-light: #e2795c;   /* AA-safe rust for text on ink */
  --sand: #e9e2d2;
  --moss: #dde4d3;
  --muted: #5b6057;        /* AA on paper (5.8:1) and on sand (5.0:1) */
  --line: #d8dbd0;

  /* type */
  --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* fluid scale — one ratio, no per-breakpoint font sizes */
  --t-micro: 0.6875rem;                                  /* 11px */
  --t-small: 0.8125rem;                                  /* 13px */
  --t-body: clamp(0.9375rem, 0.2vw + 0.9rem, 1.0625rem); /* 15–17px */
  --t-lead: clamp(1.0625rem, 0.5vw + 0.95rem, 1.375rem);
  --t-h3: clamp(1.3125rem, 0.9vw + 1.1rem, 1.875rem);
  --t-h2: clamp(2rem, 3.4vw + 1.1rem, 3.75rem);
  --t-h1: clamp(2.875rem, 7.2vw + 0.6rem, 6.25rem);
  --t-figure: clamp(3rem, 6vw + 1rem, 5rem);

  /* spacing */
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --band-pad: clamp(4rem, 8vw, 7.5rem);
  --stack: clamp(2rem, 4vw, 3.5rem);
  --radius: 3px;

  /* band defaults = paper */
  --band-bg: var(--paper);
  --fg: var(--ink);
  --fg-soft: var(--muted);
  --accent: var(--rust);
  --accent-hover: var(--rust-deep);
  --rule: var(--line);
  --rule-strong: #767c6d;   /* >=3:1 on every light ground — interactive borders */
  --surface: #fffdf6;
  --surface-line: #ddded2;
  --field-bg: #fffdf6;
  --field-line: #767c6d;
}

/* ---- 2. Bands: the ground decides every colour in it ---------- */
.band { background: var(--band-bg); color: var(--fg); }

.band--paper {
  --band-bg: var(--paper); --fg: var(--ink); --fg-soft: var(--muted);
  --accent: var(--rust); --accent-hover: var(--rust-deep); --rule: var(--line); --rule-strong: #767c6d;
  --surface: #fffdf6; --surface-line: #ddded2; --field-bg: #fffdf6; --field-line: #767c6d;
}
.band--sand {
  --band-bg: var(--sand); --fg: var(--ink); --fg-soft: var(--muted);
  --accent: var(--rust); --accent-hover: var(--rust-deep); --rule: #cdc5b1; --rule-strong: #767c6d;
  --surface: #f4f0e6; --surface-line: #d3cab5; --field-bg: #f8f6ee; --field-line: #767c6d;
}
.band--moss {
  --band-bg: var(--moss); --fg: var(--ink); --fg-soft: #4f584a;
  --accent: var(--rust); --accent-hover: var(--rust-deep); --rule: #c3cdb6; --rule-strong: #767c6d;
  --surface: #eaf0e2; --surface-line: #c3cdb6; --field-bg: #f2f6ec; --field-line: #767c6d;
}
.band--ink {
  --band-bg: var(--ink); --fg: var(--paper); --fg-soft: #b8bcae;
  --accent: var(--rust-light); --accent-hover: #f0977a; --rule: #383529; --rule-strong: #797463;
  --surface: #201d15; --surface-line: #383529; --field-bg: #201d15; --field-line: #797463;
}

/* ---- 3. Base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 1.5rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.7;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button, summary { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
table { border-collapse: collapse; }
[hidden] { display: none !important; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
  letter-spacing: -0.022em;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); letter-spacing: -0.032em; }
h2 { font-size: var(--t-h2); letter-spacing: -0.028em; }
h3 { font-size: var(--t-h3); line-height: 1.16; }
h1 em, h2 em, h3 em, .display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: 'SOFT' 50, 'WONK' 1;
}
p { color: var(--fg-soft); }
strong { font-weight: 600; color: var(--fg); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 1px; }
.band--ink :focus-visible { outline-color: var(--rust-light); }

.skip-link {
  position: fixed; inset-block-start: 0.75rem; inset-inline-start: 0.75rem; z-index: 200;
  background: var(--rust); color: #fff; padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: var(--t-small); font-weight: 600; transform: translateY(-250%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.anchor-alias { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

/* ---- 4. Layout ------------------------------------------------ */
.wrap { width: 100%; max-width: 84rem; margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.band > .wrap { padding-block: var(--band-pad); }
.band--tight > .wrap { padding-block: clamp(2rem, 3.5vw, 3rem); }

/* The signature: a numbered mark over a hairline rule. */
.mark {
  display: flex; align-items: baseline; gap: 0.9rem;
  font-size: var(--t-micro); font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-soft);
}
.mark__num {
  font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.05rem;
  letter-spacing: 0; text-transform: none; color: var(--accent); line-height: 1;
}
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0.9rem 0 0; }

.band__head {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4.5rem); align-items: end;
  padding-top: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: var(--stack);
}
.band__head h2 { max-width: 15ch; }
.band__deck { font-size: var(--t-body); max-width: 42ch; }
.band__deck .text-link { display: flex; width: fit-content; margin-top: 1.1rem; }

.eyebrow {
  font-size: var(--t-micro); font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-soft); line-height: 1.6;
}
.lede { font-size: var(--t-lead); line-height: 1.55; color: var(--fg-soft); max-width: 34ch; }

/* ---- 5. Buttons and links ------------------------------------ */
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 3.25rem; padding: 0.85rem 1.35rem;
  background: var(--rust); color: #fff; border: 1px solid var(--rust); border-radius: var(--radius);
  font-size: var(--t-small); font-weight: 600; letter-spacing: 0.01em; line-height: 1.3;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.button > span { font-size: 1.15rem; line-height: 1; }
.button:hover { background: var(--rust-deep); border-color: var(--rust-deep); }
.button:active { transform: translateY(1px); }
.button:disabled { opacity: 0.6; cursor: wait; }
.button--outline { background: transparent; color: var(--fg); border-color: var(--rule-strong); }
.button--outline:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
.band--ink .button--outline:hover { background: var(--rust-light); border-color: var(--rust-light); color: var(--ink); }
.button--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button--light:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.button--wide { display: flex; width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.75rem; min-height: 2.75rem;
  font-size: var(--t-small); font-weight: 600; color: var(--fg);
  border-bottom: 1px solid var(--rule-strong); align-self: start;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.text-link > span { font-size: 1.1rem; line-height: 1; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---- 6. Header ------------------------------------------------ */
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%; max-width: 84rem; margin-inline: auto;
  padding: 1.35rem var(--gutter);
}
.wordmark {
  font-family: var(--display); font-weight: 600; font-size: 1.4rem;
  letter-spacing: -0.05em; line-height: 1; white-space: nowrap; color: var(--fg);
}
.wordmark > span:first-child { color: var(--accent); }
.wordmark-dot { font-family: var(--sans); font-size: 0.5rem; vertical-align: top; letter-spacing: 0; margin-left: 0.25rem; }
.site-header nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.8vw, 1.75rem); }
.site-header nav a {
  font-size: var(--t-small); font-weight: 500; padding-block: 0.6rem; white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover { color: var(--accent); border-color: var(--accent); }
.site-header nav a[aria-current='page'] { color: var(--accent); border-color: var(--accent); }
.nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.5rem); }
.language { font-size: var(--t-micro); font-weight: 600; letter-spacing: 0.1em; padding: 0.5rem 0.6rem; border: 1px solid var(--rule-strong); border-radius: var(--radius); }
.language:hover { border-color: var(--accent); color: var(--accent); }
.header-cta { display: inline-flex; align-items: center; gap: 0.7rem; font-size: var(--t-small); font-weight: 600; white-space: nowrap; border-bottom: 1px solid var(--rule-strong); padding-block: 0.5rem; }
.header-cta:hover { color: var(--accent); border-color: var(--accent); }
.menu-toggle {
  background: transparent; color: var(--fg); border: 1px solid var(--rule-strong); border-radius: var(--radius);
  padding: 0.55rem 0.85rem; font-size: var(--t-small); font-weight: 600;
}

/* ---- 7. Hero -------------------------------------------------- */
.hero > .wrap { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(4rem, 7vw, 7rem); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.hero-copy > .eyebrow { display: flex; align-items: center; gap: 0.6rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.hero h1 { max-width: 12ch; }
.hero-body { margin-top: clamp(1.5rem, 2.5vw, 2rem); font-size: var(--t-lead); line-height: 1.55; max-width: 38ch; }
.hero-actions { display: flex; align-items: center; gap: 1.25rem 1.75rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: var(--t-small); }
.hero-art { position: relative; }
.art-caption, .art-foot { font-size: var(--t-micro); color: var(--fg-soft); letter-spacing: 0.12em; text-transform: uppercase; }
.art-foot { text-transform: none; letter-spacing: 0; margin-top: 1.1rem; font-size: var(--t-small); }
.art-stack { position: relative; margin-top: 1rem; aspect-ratio: 1 / 0.84; }
.browser-preview {
  position: absolute; display: block; background: #fff; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25); box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, outline-color 0.25s ease;
  outline: 2px solid transparent; outline-offset: 3px; will-change: transform;
}
.browser-preview:hover { box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.5); outline-color: var(--accent); }
.browser-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.35rem 0.7rem; font-size: 0.5rem; letter-spacing: 0.02em;
  color: #5b6057; background: #f3f2eb; border-bottom: 1px solid #d9d8cd;
}
.browser-bar > span:first-child { font-size: 0.3rem; letter-spacing: 0.15em; color: #5b6057; }
.browser-preview img { width: 100%; }
.mc-preview { width: 84%; left: 0; top: 0; }
.hf-preview { width: 56%; right: 0; bottom: 0; }
.hf-preview .browser-bar { display: none; }

/* ---- 8. Proof strip ------------------------------------------- */
.proof > .wrap {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1.25rem 2.5rem; border-top: 1px solid var(--rule);
}
.client-names { display: flex; align-items: center; gap: clamp(1.75rem, 4vw, 3.5rem); flex-wrap: wrap; }
.client-names > span {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: -0.03em; line-height: 1.05; color: var(--fg);
}
.client-names .homefix-name { letter-spacing: 0.01em; }
.client-sub { display: block; font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.22em; font-weight: 600; margin-top: 0.3rem; color: var(--fg-soft); }
.proof p { font-size: var(--t-small); max-width: 34ch; }

/* ---- 9. Outcomes ---------------------------------------------- */
.outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.outcome { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.outcome__num { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--accent); line-height: 1; }
.outcome h3 { margin: 1.1rem 0 0.85rem; max-width: 16ch; }
.outcome p { font-size: var(--t-small); line-height: 1.8; }

/* ---- 10. Work -------------------------------------------------- */
.projects { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem); }
.project-image {
  position: relative; display: grid; place-items: center; padding: clamp(1.25rem, 3vw, 2.5rem);
  aspect-ratio: 4 / 3; background: var(--surface); border: 1px solid var(--surface-line);
  border-radius: 4px; overflow: hidden; margin-bottom: 1.5rem;
}
.project-image--1 { background: #efe8dc; }
.project-image--2 { background: #e3e8db; }
.project-image img { width: 100%; box-shadow: 0 0.75rem 1.75rem rgba(23, 21, 15, 0.18); border-radius: 2px; transition: transform 0.3s ease; }
.project-image:hover img { transform: translateY(-6px); }
.circle-arrow {
  position: absolute; right: 1rem; bottom: 1rem; width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1.15rem;
}
.project h3 { margin: 0.7rem 0 0.75rem; }
.project > p:not(.eyebrow) { font-size: var(--t-small); line-height: 1.8; max-width: 44ch; }
.tags { display: flex; flex-wrap: wrap; list-style: none; gap: 0.5rem 1.1rem; margin: 1.25rem 0 1rem; }
.tags li { font-size: var(--t-micro); color: var(--fg-soft); border-bottom: 1px solid var(--rule); padding-bottom: 0.35rem; }

/* ---- 11. Process ----------------------------------------------- */
.process-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); }
.steps { list-style: none; }
.steps li { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.steps li:first-child { padding-top: 0; }
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps li > span { font-family: var(--display); font-style: italic; font-size: 1.25rem; color: var(--accent); line-height: 1.2; }
.steps h3 { font-size: clamp(1.1rem, 1.4vw, 1.4rem); margin-bottom: 0.5rem; }
.steps p { font-size: var(--t-small); line-height: 1.8; }
.process-aside h2 { margin: 1.25rem 0 1.5rem; }

/* ---- 12. The pricing components -------------------------------- */
.mode-switch { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; min-height: 3.5rem; margin-bottom: var(--stack); }
.switch {
  display: inline-flex; align-items: stretch; gap: 0.25rem; padding: 0.25rem;
  background: var(--surface); border: 1px solid var(--rule-strong); border-radius: 999px;
}
.switch button {
  appearance: none; background: transparent; border: 0; border-radius: 999px;
  padding: 0.6rem 1.1rem; min-height: 2.6rem; font-size: var(--t-small); font-weight: 600;
  color: var(--fg-soft); white-space: nowrap; transition: background 0.2s ease, color 0.2s ease;
}
.switch button[aria-checked='true'] { background: var(--rust); color: #fff; }
.switch button:not([aria-checked='true']):hover { color: var(--fg); }
.switch-note { font-size: var(--t-small); color: var(--fg-soft); max-width: 36ch; }
.switch-note strong { white-space: nowrap; }
.pricing-sticky { position: sticky; top: 0; z-index: 20; background: var(--band-bg); padding-block: 1rem; }
.pricing-sticky::after {
  content: ''; position: absolute; inset-inline: calc(var(--gutter) * -1); bottom: 0; height: 1px;
  background: var(--rule); opacity: 0; transition: opacity 0.2s ease;
}
.pricing-sticky.is-stuck::after { opacity: 1; }

.tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); align-items: start; }
.tier {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
  background: var(--surface); border: 1px solid var(--surface-line); border-radius: 4px;
}
.tier--feature {
  --band-bg: var(--ink); --fg: var(--paper); --fg-soft: #b8bcae; --accent: var(--rust-light);
  --rule: #383529; --surface: #201d15; --surface-line: #383529;
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}
.tier__flag {
  position: absolute; top: 0; right: clamp(1.5rem, 2.6vw, 2.5rem); transform: translateY(-50%);
  background: var(--rust); color: #fff; border-radius: 999px; padding: 0.3rem 0.85rem;
  font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.tier__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tier__num { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--accent); }
.tier h3 { font-size: clamp(1.5rem, 2vw, 2rem); margin: 0.6rem 0 0.6rem; }
.tier__summary { font-size: var(--t-small); line-height: 1.75; min-height: 3.4rem; }

.price { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); }
.price__over { font-size: var(--t-small); color: var(--fg-soft); }
.price__figure {
  display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
  margin: 0.25rem 0 0.5rem;
}
.price__amount {
  font-family: var(--display); font-weight: 500; font-size: var(--t-figure);
  font-variant-numeric: tabular-nums; letter-spacing: -0.04em; line-height: 1; color: var(--fg);
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}
.price__unit { font-size: var(--t-small); color: var(--fg-soft); }
.price__term { font-size: var(--t-micro); line-height: 1.7; color: var(--fg-soft); }
[data-mode='payg'] .price--care,
[data-mode='care'] .price--payg { display: none; }

/* the invoice line: dotted leaders, always visible, both totals */
.ledger { list-style: none; margin: 1.25rem 0 1.5rem; padding-top: 1rem; border-top: 1px solid var(--rule); }
.ledger li { display: flex; align-items: baseline; gap: 0.6rem; padding-block: 0.4rem; font-size: var(--t-small); color: var(--fg-soft); }
.ledger__dots { flex: 1 1 auto; min-width: 1.5rem; border-bottom: 1px dotted var(--rule); transform: translateY(-0.3em); }
.ledger__value { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--fg); white-space: nowrap; }
/* Secondary rows read as de-emphasised via style/weight, not opacity — opacity on
   var(--fg-soft) (already tuned >=4.5:1 per band) was pushing rendered contrast as
   low as ~2.7:1 on light cards and ~4.3:1 on dark cards. Every text node here keeps
   its full, AA-safe colour. */
.ledger li[data-active='false'] { font-style: italic; }
.ledger li[data-active='false'] .ledger__value { font-weight: 400; }
.count { display: inline-block; text-align: right; min-width: 4.5ch; }

.features { list-style: none; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); }
.features li { display: grid; grid-template-columns: 1rem minmax(0, 1fr); gap: 0.65rem; padding-block: 0.4rem; font-size: var(--t-small); line-height: 1.65; color: var(--fg-soft); }
.features li::before { content: '✓'; color: var(--accent); font-size: 0.8rem; line-height: 1.6; }
.tier .button { margin-top: 1.5rem; }

/* Front Desk add-on */
.addon {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem); padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid var(--accent); border-radius: 4px; background: var(--surface);
}
.addon__pill {
  display: inline-block; border: 1px solid var(--accent); color: var(--accent); border-radius: 999px;
  padding: 0.25rem 0.7rem; font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.addon h3 { margin: 1rem 0 0.75rem; }
.addon p { font-size: var(--t-small); line-height: 1.8; }
.addon__price { border-left: 1px solid var(--rule); padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.addon__meta { list-style: none; margin-top: 1rem; }
.addon__meta li { display: flex; align-items: baseline; gap: 0.6rem; padding-block: 0.35rem; font-size: var(--t-small); color: var(--fg-soft); }
.price-fine { margin-top: clamp(1.5rem, 3vw, 2.25rem); font-size: var(--t-micro); line-height: 1.85; max-width: 82ch; color: var(--fg-soft); }

/* comparison table */
.table-scroll { overflow-x: auto; overscroll-behavior-x: contain; border: 1px solid var(--rule); border-radius: 4px; background: var(--surface); }
.table-scroll:focus-visible { outline-offset: 0; }
.compare { width: 100%; min-width: 44rem; font-size: var(--t-small); }
.compare caption { text-align: left; padding: 1rem 1.15rem; font-size: var(--t-micro); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-soft); border-bottom: 1px solid var(--rule); }
.compare th, .compare td { text-align: left; padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--rule); vertical-align: top; line-height: 1.6; }
.compare thead th { font-size: var(--t-micro); letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); font-weight: 600; white-space: nowrap; }
.compare tbody th { font-weight: 500; color: var(--fg); width: 34%; white-space: normal; }
.compare td { color: var(--fg-soft); }
.compare td.is-yes { color: var(--accent); font-weight: 600; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .compare__figure { font-variant-numeric: tabular-nums; color: var(--fg); font-weight: 600; }
.table-hint { margin-top: 0.75rem; font-size: var(--t-micro); color: var(--fg-soft); }

/* add-on menu + example quote + terms */
.menu-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 4vw, 3.5rem); }
.menu-list li { display: flex; align-items: baseline; gap: 0.6rem; padding-block: 0.85rem; border-bottom: 1px solid var(--rule); font-size: var(--t-small); color: var(--fg-soft); }
.quote-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding: clamp(1.5rem, 3vw, 2.75rem); background: var(--surface); border: 1px solid var(--surface-line); border-radius: 4px; }
.quote-card h3 { margin-bottom: 0.85rem; }
.quote-card p { font-size: var(--t-small); line-height: 1.8; }
.quote-figure { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; color: var(--fg); line-height: 1.1; }
.terms { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 4vw, 3.5rem); }
.terms li { display: grid; grid-template-columns: 1rem minmax(0, 1fr); gap: 0.7rem; padding-block: 0.75rem; border-bottom: 1px solid var(--rule); font-size: var(--t-small); line-height: 1.7; color: var(--fg-soft); }
.terms li::before { content: '—'; color: var(--accent); }

/* ---- 13. FAQ --------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(2rem, 5vw, 5rem); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list details:first-child { border-top: 1px solid var(--rule); }
.faq-list summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0; min-height: 3.25rem; font-size: var(--t-body); font-weight: 500; color: var(--fg);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { font-family: var(--display); font-size: 1.4rem; line-height: 1; color: var(--accent); flex: none; transition: transform 0.2s ease; }
.faq-list details[open] summary > span { transform: rotate(45deg); }
.faq-list details p { padding: 0 3rem 1.35rem 0; font-size: var(--t-small); line-height: 1.85; }

/* ---- 14. Resources -------------------------------------------- */
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.resource-card {
  display: flex; flex-direction: column; padding: clamp(1.25rem, 2.4vw, 2rem);
  background: var(--surface); border: 1px solid var(--surface-line); border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.resource-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.resource-card .eyebrow { color: var(--accent); }
.resource-card h3 { margin-top: 1.15rem; font-size: clamp(1.25rem, 1.6vw, 1.6rem); }
.resource-description { margin: 0.85rem 0 1.75rem; font-size: var(--t-small); line-height: 1.75; }
.resource-card-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--rule); font-size: var(--t-small); font-weight: 600; color: var(--fg); }
.resource-card-link > span { font-size: 1.1rem; }
.resource-hubs { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(1.5rem, 3vw, 2.25rem); padding-top: 1.1rem; border-top: 1px solid var(--rule); }
.resource-hubs-label { font-size: var(--t-micro); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-soft); margin-right: auto; }
.resource-hubs a { display: inline-flex; align-items: center; gap: 0.6rem; min-height: 2.75rem; font-size: var(--t-small); font-weight: 500; border-bottom: 1px solid transparent; }
.resource-hubs a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- 15. Project form ----------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); }
.contact-copy h2 { margin: 1.25rem 0 1.5rem; }
.contact-copy > p:not(.eyebrow) { font-size: var(--t-body); max-width: 38ch; }
.contact-email { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2rem; }
.contact-email > span { font-size: var(--t-small); }
.contact-email a { font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 500; letter-spacing: -0.02em; display: inline-flex; gap: 0.75rem; align-self: start; border-bottom: 1px solid var(--rule); padding-bottom: 0.2rem; }
.contact-email a:hover { color: var(--accent); border-color: var(--accent); }
.contact-email a, .contact-phone a { border-bottom-color: var(--rule-strong); }
.contact-phone { margin-top: 1.25rem; font-size: var(--t-small); }
.contact-phone a { border-bottom: 1px solid var(--rule); }
.contact-phone a:hover { color: var(--accent); border-color: var(--accent); }

.form-panel { background: var(--surface); border: 1px solid var(--surface-line); border-radius: 4px; padding: clamp(1.25rem, 2.6vw, 2.25rem); }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.15rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: var(--t-small); font-weight: 600; color: var(--fg); }
.field label span { font-weight: 400; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 3rem; padding: 0.7rem 0.8rem; font-size: 1rem;
  background: var(--field-bg); color: var(--fg);
  border: 1px solid var(--field-line); border-radius: var(--radius);
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-soft); opacity: 0.85; font-size: 0.9rem; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline-offset: 1px; }
.field input[aria-invalid='true'] { border-color: var(--accent); border-width: 2px; }
.field-error { font-size: var(--t-micro); color: var(--accent); }
.field-error:empty { display: none; }
.form-panel .button { width: 100%; margin-top: 1.5rem; }
.form-note { margin-top: 1rem; font-size: var(--t-micro); line-height: 1.8; }
.form-status { margin-top: 0.85rem; font-size: var(--t-small); line-height: 1.7; color: var(--accent); }
.form-status:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.brief-success { padding: 1rem 0; }
.success-mark { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--rule); border-radius: 50%; font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--accent); }
.brief-success h3 { margin-bottom: 0.85rem; }
.brief-success p { font-size: var(--t-small); margin-bottom: 1.25rem; }

/* ---- 16. Footer ------------------------------------------------ */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.75rem; border-bottom: 1px solid var(--rule); }
.footer-top p { font-family: var(--display); font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--fg-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; padding-block: 2rem; border-bottom: 1px solid var(--rule); }
.footer-cols h2 { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-soft); margin-bottom: 1rem; }
.footer-cols nav, .footer-cols div > ul { display: flex; flex-direction: column; gap: 0.15rem; }
.footer-cols a { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 2.25rem; font-size: var(--t-small); border-bottom: 1px solid transparent; align-self: start; }
.footer-cols a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; padding-top: 1.5rem; }
.footer-bottom p { font-size: var(--t-micro); }

/* ---- 17. Demos (preserved markup, new skin) -------------------- */
.assistant-examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); align-items: start; }
.assistant-example { min-width: 0; padding: clamp(1.5rem, 2.8vw, 2.5rem); background: var(--surface); border: 1px solid var(--surface-line); border-radius: 4px; }
.assistant-example--voice {
  --surface: #1f1c14; --surface-line: #383529; --fg: var(--paper); --fg-soft: #b8bcae;
  --accent: var(--rust-light); --rule: #383529; --rule-strong: #797463; --field-bg: #262319; --field-line: #797463;
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}
.assistant-symbol { width: 3.25rem; height: 3.25rem; margin: 1.5rem 0 1.25rem; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 50%; color: var(--accent); }
.assistant-symbol svg { width: 1.75rem; height: 1.75rem; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.assistant-example h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
.assistant-description { margin: 1.1rem 0 1.5rem; font-size: var(--t-small); line-height: 1.8; max-width: 44ch; }
.assistant-note { margin-top: 0.85rem; font-size: var(--t-micro); line-height: 1.75; color: var(--fg-soft); }
.assistant-note:empty { display: none; }
.assistant-demo-choices { display: flex; flex-direction: column; align-items: start; gap: 0.9rem; }
.assistant-browser-link { background: transparent; border: 0; border-bottom: 1px solid var(--rule-strong); padding: 0.4rem 0 0.35rem; color: var(--fg); font-size: var(--t-small); font-weight: 600; }
.assistant-browser-link:hover { color: var(--accent); border-color: var(--accent); }
.assistant-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; margin-top: clamp(1.25rem, 2.5vw, 2rem); }
.assistant-bottom p { font-size: var(--t-micro); }

.receptionist-panel { margin-top: 1.5rem; padding-top: 1.35rem; border-top: 1px solid var(--rule); }
.demo-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.demo-close, .demo-cancel { background: none; border: 0; padding: 0.6rem 0 0.6rem 0.6rem; font-size: var(--t-micro); font-weight: 600; color: var(--fg); }
.demo-close:hover, .demo-cancel:hover { color: var(--accent); }
.demo-close span { font-size: 1.1rem; margin-left: 0.4rem; vertical-align: middle; }
.demo-disclosure { margin: 0.75rem 0 1.15rem; font-size: var(--t-small); }
.demo-status { margin-block: 1rem; min-height: 1.4rem; font-size: var(--t-small); color: var(--fg-soft); }
.demo-record-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.receptionist-panel[data-state='recording'] [data-demo-record] { background: var(--rust-deep); border-color: var(--rust-deep); }
.receptionist-panel button:disabled { opacity: 0.55; cursor: default; }
.demo-type-form { margin-top: 1.25rem; }
.demo-type-form label { display: block; font-size: var(--t-micro); margin-bottom: 0.45rem; color: var(--fg-soft); }
.demo-type-form > div { display: flex; gap: 0.35rem; padding: 0.25rem; background: var(--field-bg); border: 1px solid var(--field-line); border-radius: var(--radius); }
.demo-type-form input { min-width: 0; width: 100%; border: 0; background: transparent; padding: 0.6rem; font-size: 1rem; }
.demo-type-form input::placeholder { color: var(--fg-soft); opacity: 0.8; }
.demo-type-form button { flex: none; width: 2.75rem; min-height: 2.75rem; border: 0; border-radius: 2px; background: var(--rust); color: #fff; font-size: 1.2rem; }
.demo-type-form button:hover { background: var(--rust-deep); }
.demo-fine { margin-top: 0.75rem; font-size: var(--t-micro); line-height: 1.8; color: var(--fg-soft); }
.demo-fine a { text-decoration: underline; text-underline-offset: 3px; }
.demo-log { max-height: 17rem; overflow-y: auto; overscroll-behavior: contain; border-block: 1px solid var(--rule); padding: 0.25rem 0; }
.demo-message { padding-block: 0.8rem; }
.demo-message + .demo-message { border-top: 1px solid var(--rule); }
.demo-message > span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-soft); }
.demo-message p { margin-top: 0.3rem; font-size: var(--t-small); color: var(--fg); white-space: pre-wrap; overflow-wrap: anywhere; }
.demo-message--user p { color: var(--fg-soft); }
.demo-playback { width: 100%; height: 2.25rem; margin-top: 1rem; }
.phone-demo-panel .demo-status { margin-block: 1rem 1.15rem; }
.phone-demo-form > label:not(.phone-demo-consent) { display: block; font-size: var(--t-small); font-weight: 600; margin-bottom: 0.45rem; }
.phone-demo-form > label > span { display: block; font-size: var(--t-micro); font-weight: 400; color: var(--fg-soft); }
.phone-demo-form > input { width: 100%; min-height: 3rem; padding: 0.65rem 0.8rem; font-size: 1rem; background: var(--field-bg); color: var(--fg); border: 1px solid var(--field-line); border-radius: var(--radius); }
.phone-demo-form > input[aria-invalid='true'] { border-color: var(--accent); border-width: 2px; }
.phone-demo-consent { display: flex; align-items: start; gap: 0.6rem; margin: 1.1rem 0 1.25rem; cursor: pointer; }
.phone-demo-consent > input { flex: none; width: 1.05rem; height: 1.05rem; margin-top: 0.25rem; accent-color: var(--rust); }
.phone-demo-form .phone-demo-consent > span { font-size: var(--t-micro); line-height: 1.75; color: var(--fg-soft); }
.phone-demo-form > .button { width: 100%; }
.phone-demo-code { letter-spacing: 0.3em; font-variant-numeric: tabular-nums; margin-bottom: 1.1rem; }
.phone-demo-masked { font-size: var(--t-small); margin-bottom: 1.1rem; }
.phone-demo-restart { background: none; border: 0; border-bottom: 1px solid var(--rule-strong); padding: 0.6rem 0 0.35rem; font-size: var(--t-micro); font-weight: 600; color: var(--fg); }
.phone-demo-direct { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 0.9rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--rule); font-size: var(--t-micro); color: var(--fg-soft); }
.phone-demo-direct a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ---- 18. Pricing page hero + CTA ------------------------------- */
.page-hero > .wrap { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5.5rem); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: end; }
.page-hero h1 { max-width: 14ch; margin-top: 1.5rem; }
.page-hero__facts { list-style: none; }
.page-hero__facts li { display: flex; align-items: baseline; gap: 0.7rem; padding-block: 0.6rem; border-top: 1px solid var(--rule); font-size: var(--t-small); color: var(--fg-soft); }
.page-hero__facts li::before { content: '·'; color: var(--accent); font-size: 1.2rem; line-height: 1; }
.cta-band > .wrap { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { margin-top: 1rem; font-size: var(--t-small); max-width: 44ch; }

/* ---- 19. Responsive -------------------------------------------- */
@media (max-width: 1040px) {
  .hero-grid, .process-grid, .faq-grid, .contact-grid, .page-hero-grid, .band__head { grid-template-columns: minmax(0, 1fr); }
  .band__head { align-items: start; }
  .band__head h2 { max-width: 18ch; }
  .outcomes, .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addon, .quote-card { grid-template-columns: minmax(0, 1fr); }
  .addon__price { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 1.25rem; }
  .hero-art { max-width: 34rem; }
}
@media (min-width: 861px) { .menu-toggle { display: none !important; } }
@media (max-width: 860px) {
  .site-header { flex-wrap: wrap; row-gap: 0; }
  .site-header nav { order: 3; width: 100%; flex-wrap: wrap; gap: 0.25rem 1.25rem; padding-bottom: 0.85rem; }
  /* The Menu button ships visible, so the collapsed mobile header is the first
     painted layout and script cannot shift it later. Visitors without scripting
     get the full nav back from the <noscript> stylesheet in each page's head. */
  .site-header:has(.menu-toggle:not([hidden])) nav { display: none; }
  .site-header nav.is-open { display: flex !important; }
  .nav-cta { display: inline-flex; color: var(--accent); font-weight: 700; }
  .header-cta { display: none; }
  .tiers, .projects, .assistant-examples, .menu-list, .terms { grid-template-columns: minmax(0, 1fr); }
  .tier__summary { min-height: 0; }
  .proof > .wrap { flex-direction: column; align-items: start; }
}
@media (max-width: 620px) {
  .outcomes, .resource-grid, .footer-cols { grid-template-columns: minmax(0, 1fr); }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .hero-actions .button, .cta-band .button { width: 100%; justify-content: space-between; }
  .switch { width: 100%; }
  .switch button { flex: 1 1 auto; padding-inline: 0.5rem; }
  .faq-list details p { padding-right: 0; }
  .steps li { grid-template-columns: 1.75rem minmax(0, 1fr); gap: 0.9rem; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: start; }
}

/* ---- 20. Motion ------------------------------------------------ */
.js-motion [data-reveal] { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .browser-preview:hover, .project-image:hover img, .resource-card:hover { transform: none; }
  .js-motion [data-reveal] { opacity: 1 !important; transform: none !important; }
}
