/* site.css — advisorywizard.com marketing site.
 *
 * Deliberately self-contained: no CDN, no external font, no analytics, no cookies. Everything
 * is served same-origin, which keeps the privacy notice honest (there is genuinely nothing to
 * disclose) and means the site needs no consent banner.
 *
 * The type scale is larger than the app's: the app optimises for density, a landing page does not.
 *
 * PALETTE: navy (Alex, 11 Aug 2026). The tokens NO LONGER mirror the application's aw.css, which
 * remains on the original indigo/violet. That divergence is deliberate and known — the website
 * moved first, website only — but it means the two are now visibly different at the Sign in
 * handover, and the logo artwork is still indigo/violet on both. See the :root block below.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/inter-var.woff2') format('woff2');
}

:root {
  /* Navy palette (Alex, 11 Aug 2026) — the marketing site moved from the indigo/violet brand
     to a quieter, more institutional blue. The token NAMES are kept (--violet, --lilac, --cyan)
     even though nothing is violet any more: they are referenced across ~40 rules, and renaming
     them would be a large diff that changes no pixel. What each one MEANS is what matters, so
     that is written down here.

     NOTE: the app (advisory-wizard/aw.css) is still on the indigo/violet palette, and so is the
     logo artwork. This is deliberate and temporary — website only, Alex's call. */
  --brand:        #1E3A8A;   /* structural: icon tiles, note borders, headings */
  --brand-strong: #1E40AF;
  --brand-deep:   #0F1E3D;   /* gradient mid stop */
  --brand-darker: #080D1A;   /* gradient dark stop */
  --brand-mid:    #1E3A8A;   /* gradient light stop */
  --violet:       #2563EB;   /* PRIMARY ACTION — buttons, links, kickers (name kept, see above) */
  --violet-strong:#1D4ED8;   /* primary-action hover */
  --violet-tint:  #eff6ff;   /* pale wash behind ghost/outline actions */
  --brand-tint:   #e7eefb;   /* pale wash for icon tiles, hovers, selected rows */
  --lilac:        #bfdbfe;   /* light-on-dark accent (headline second line, straplines) */
  --cyan:         #60a5fa;   /* the gradient rule's far end */

  /* Neutrals — biased slightly toward blue so they read as chosen, not default grey */
  --ink:       #1a1d2e;
  --slate:     #565c72;
  --muted:     #676d85;
  --line:      #e5e7f1;
  --line-soft: #eef0f6;
  --surface:   #ffffff;
  --canvas:    #f4f5fb;

  --shadow-sm: 0 1px 2px rgba(20,25,50,.06);
  --shadow-md: 0 2px 12px rgba(20,25,50,.07);
  --shadow-lg: 0 18px 44px rgba(8,18,45,.16);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --maxw: 1120px;
  --gut:  24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--violet); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; }

/* Skip link — keyboard users shouldn't have to tab the whole nav */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--violet); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

:where(a, button):focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :where(a, button):focus-visible { outline-color: var(--lilac); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 16px/1 var(--font); text-decoration: none; white-space: nowrap;
  padding: 14px 24px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: background .15s, border-color .15s, transform .06s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--violet); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--violet-strong); }
.btn--ghost { background: transparent; color: var(--violet); border-color: color-mix(in srgb, var(--violet) 34%, var(--line)); }
.btn--ghost:hover { background: var(--violet-tint); }
/* On the dark hero the ghost button needs a light border, not a brand-coloured one */
.btn--onDark { background: rgba(255,255,255,.09); color: #fff; border-color: rgba(255,255,255,.30); }
.btn--onDark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.48); }
.btn--sm { font-size: 14.5px; padding: 10px 17px; }

@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,13,26,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.site-header .wrap { display: flex; align-items: center; gap: 20px; height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand b { color: #fff; font-size: 17.5px; font-weight: 700; letter-spacing: .2px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #d3e0f5; text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }

/* Sign in + Request a demo. Sign in is a plain link on purpose: existing users go looking for
   it, so it needs to be findable rather than loud, and it must not compete with the one
   action that converts a visitor. */
.header-actions { display: flex; align-items: center; gap: 18px; }
.signin {
  color: #d3e0f5; text-decoration: none; font-size: 15px; font-weight: 600;
  white-space: nowrap; transition: color .15s;
}
.signin:hover { color: #fff; }

@media (max-width: 860px) {
  .nav-links { display: none; }          /* six words of nav is not worth a burger menu */
  .site-header .wrap { height: 62px; }
}
/* Below ~560px the brand, Sign in and the demo button stop fitting on one row. The demo
   button is the one to drop: the hero repeats it full-width immediately below, whereas
   Sign in has nowhere else to live above the fold. */
@media (max-width: 560px) {
  .site-header .btn { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 55%, var(--brand-mid) 100%);
  color: #fff;
  padding: 92px 0 100px;
}
/* Two soft radial washes stop the flat gradient looking like a CSS default */
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 620px; height: 620px; top: -280px; right: -160px;
  background: radial-gradient(circle, rgba(37,99,235,.45) 0%, transparent 68%);
}
.hero::after {
  width: 520px; height: 520px; bottom: -300px; left: -180px;
  background: radial-gradient(circle, rgba(96,165,250,.18) 0%, transparent 66%);
}
.hero .wrap { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--lilac);
  background: rgba(191,219,254,.12); border: 1px solid rgba(191,219,254,.28);
  padding: 6px 14px; border-radius: 30px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.1; font-weight: 800; letter-spacing: -.022em;
  /* 18ch, not 16 — "Streamline the process." measures 682px at 58px/800 and a 16ch (642px)
     cap broke it mid-sentence as "Streamline the / process. Never / the advice." */
  max-width: 18ch;
  margin-bottom: 22px;
}
/* The accent phrase is the turn of the headline, so it gets its own line — same two-line
   structure as the social card. display:block rather than a <br> keeps the text node intact
   for screen readers and for copy-paste. */
.hero h1 em { font-style: normal; color: var(--lilac); display: block; }

.hero-sub {
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.6; color: #cddcf5; max-width: 60ch;
  margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-note {
  font-size: 13.5px; color: #b3c8e6; max-width: 62ch;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13);
}

/* ── Section scaffolding ─────────────────────────────────────────────────── */
/* The header is sticky and 68px tall, so an anchor jump would land the section heading
   underneath it. scroll-margin-top offsets the landing point by the header plus a little air. */
section[id] { scroll-margin-top: 88px; }

.section { padding: 88px 0; }
.section--tint { background: var(--canvas); border-block: 1px solid var(--line); }
.section--deep {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-mid) 100%);
  color: #fff;
}

.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.section--deep .kicker { color: var(--lilac); }

.section h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.2; font-weight: 800; letter-spacing: -.018em;
  max-width: 22ch; margin-bottom: 18px;
}
.section--deep h2 { color: #fff; }

.lede { font-size: 18.5px; color: var(--slate); max-width: 66ch; }
.section--deep .lede { color: #cddcf5; }

.section-head { margin-bottom: 52px; }

/* ── Pressures (the "why now") ───────────────────────────────────────────── */
.pressures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pressure {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.pressure h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.pressure p { font-size: 15.5px; color: var(--slate); line-height: 1.6; }
.pressure .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; margin-bottom: 16px;
  background: var(--brand-tint); color: var(--brand);
  font-size: 14px; font-weight: 800;
}

/* ── Feature grid ────────────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, border-color .18s, transform .18s;
}
.feature:hover { box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 22%, var(--line)); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .feature { transition: none; } .feature:hover { transform: none; } }

.feature .ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 16px;
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center;
}
.feature .ic svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.01em; }
.feature p { font-size: 15px; color: var(--slate); line-height: 1.58; }

/* ── Principles (dark section) ───────────────────────────────────────────── */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.principle {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg); padding: 30px;
}
.principle h3 {
  font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 11px;
}
.principle h3 svg { width: 21px; height: 21px; stroke: var(--lilac); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.principle p { font-size: 15.5px; color: #c3d6f0; line-height: 1.62; }

.mills-link {
  margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13);
  font-size: 15.5px; color: #c3d6f0;
}
.mills-link a { color: var(--lilac); font-weight: 600; }

/* ── Founder ─────────────────────────────────────────────────────────────── */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 52px; align-items: start; }
.founder-card {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 60%, var(--brand-mid) 100%);
  border-radius: var(--r-lg); padding: 30px; color: #fff; box-shadow: var(--shadow-lg);
}
.founder-card img { width: 60px; height: 60px; border-radius: 15px; margin-bottom: 18px; }
.founder-card .fname { font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.founder-card .frole { font-size: 14.5px; color: var(--lilac); font-weight: 600; margin-top: 3px; }
.founder-card .frule { height: 2px; width: 78px; background: linear-gradient(90deg, var(--cyan), var(--violet)); border-radius: 2px; margin: 16px 0; }
.founder-card .fmeta { font-size: 14px; color: #b3c8e8; line-height: 1.6; }

.founder-body p + p { margin-top: 18px; }
.founder-body p { font-size: 17.5px; color: var(--slate); line-height: 1.68; }
.founder-body strong { color: var(--ink); font-weight: 650; }

/* ── Company facts ───────────────────────────────────────────────────────── */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line);
         border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.fact { padding: 24px 28px; border-bottom: 1px solid var(--line-soft); }
.fact:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.fact:nth-last-child(-n+2) { border-bottom: none; }
.fact dt {
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.fact dd { font-size: 17px; font-weight: 600; color: var(--ink); }
.fact dd small { display: block; font-size: 14.5px; font-weight: 400; color: var(--slate); margin-top: 4px; }

/* ── Closing call to action ──────────────────────────────────────────────── */
.cta-box { text-align: center; }
.cta-box h2 { margin: 0 auto 18px; max-width: 20ch; }
.cta-box .lede { margin: 0 auto 32px; }
.cta-box .hero-cta { justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-darker); color: #b3c8e6;
  padding: 56px 0 40px; font-size: 14.5px;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer-brand b { color: #fff; font-size: 17px; font-weight: 700; }
.footer-top p { line-height: 1.65; max-width: 42ch; }
.site-footer h4 {
  color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b3c8e6; text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px;
  font-size: 13.5px; line-height: 1.68; color: #9db3d2;
}
.footer-legal p + p { margin-top: 10px; }

/* ── Long-form pages (privacy) ───────────────────────────────────────────── */
.page-head {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 60%, var(--brand-mid) 100%);
  color: #fff; padding: 70px 0 56px;
}
.page-head h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.14; }
.page-head p { color: #cddcf5; font-size: 17px; margin-top: 14px; }

.prose { padding: 64px 0 88px; }
.prose h2 {
  font-size: 24px; font-weight: 750; letter-spacing: -.012em;
  margin: 44px 0 14px; padding-top: 4px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18.5px; font-weight: 700; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 17px; color: var(--slate); line-height: 1.7; }
.prose p + p { margin-top: 16px; }
.prose ul, .prose ol { margin: 14px 0 14px 24px; }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose a { font-weight: 550; }
.prose .note {
  background: var(--brand-tint); border-left: 3px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0; padding: 18px 22px; margin: 26px 0;
}
.prose .note p { color: var(--ink); font-size: 16px; }

/* ── Case study ──────────────────────────────────────────────────────────────
 * RETAINED FOR A PAGE THAT IS NOT CURRENTLY DEPLOYED. `case-study.html` was pulled before
 * the first deploy (7 Aug 2026) because there is nothing yet that can be quoted — no
 * consented staff testimonial and no measured figures. These rules stay because the page is
 * coming back, not because it was forgotten: restore it with
 *     git checkout 5244d75 -- case-study.html
 * and it will pick these styles straight back up. Costs well under 1 KB gzipped.
 * ─────────────────────────────────────────────────────────────────────────── */

/* Unmissable-on-purpose. That page carries unverified figures and unconsented quotes; the
   banner is the thing that stops it being published by accident. Delete the whole block
   (and the matching one in the markup) only when every [placeholder] is filled. */
.draft-banner {
  background: repeating-linear-gradient(45deg, #b02a37, #b02a37 14px, #93232e 14px, #93232e 28px);
  color: #fff; text-align: center; padding: 14px 20px;
  font-size: 14.5px; font-weight: 700; letter-spacing: .02em;
}
.draft-banner span { background: rgba(0,0,0,.30); padding: 5px 12px; border-radius: 6px; }

/* Inline marker for a value only Alex can supply. Styled loudly so it cannot be skim-read.
   Deliberately NOT white-space:nowrap — the longer instructional placeholders are full
   sentences, and forcing them onto one line pushed the page into horizontal scroll. */
.ph {
  background: #fff2c2; color: #7a5600; border-bottom: 2px solid #e0a800;
  padding: 1px 7px; border-radius: 4px; font-weight: 650; font-size: .95em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0 8px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px; box-shadow: var(--shadow-sm); text-align: center;
}
.stat .val { font-size: 30px; font-weight: 800; color: var(--brand); letter-spacing: -.02em; line-height: 1.15; }
.stat .lbl { font-size: 13.5px; color: var(--slate); margin-top: 8px; line-height: 1.45; }

.quote {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--violet);
  border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 28px 32px; margin: 30px 0;
  box-shadow: var(--shadow-sm);
}
.quote p { font-size: 20px; line-height: 1.55; color: var(--ink); font-weight: 500; margin: 0; }
.quote footer {
  margin-top: 16px; font-size: 14.5px; color: var(--muted); font-style: normal;
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
}
.quote footer .who { font-weight: 650; color: var(--slate); }
.consent {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--warn-tag-bg, #fbf1e3); color: #8a4d00;
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* Before / after — the clearest way to show a workflow change without inventing numbers */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 32px 0; }
.ba-col { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; background: var(--surface); }
.ba-col--after { background: var(--brand-tint); border-color: color-mix(in srgb, var(--brand) 24%, var(--line)); }
.ba-col h3 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--muted);
}
.ba-col--after h3 { color: var(--brand); }
.ba-col ul { list-style: none; margin: 0; }
.ba-col li { font-size: 15.5px; color: var(--slate); line-height: 1.55; padding-left: 26px; position: relative; margin-bottom: 13px; }
.ba-col li:last-child { margin-bottom: 0; }
.ba-col li::before {
  content: '—'; position: absolute; left: 0; top: 0; color: var(--muted); font-weight: 700;
}
.ba-col--after li::before { content: '✓'; color: var(--brand); }

/* Findings table for the independent review — real, verifiable numbers */
.findings { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 16px; }
.findings th, .findings td { padding: 12px 14px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.findings th {
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1.5px solid var(--line);
}
.findings td { color: var(--slate); font-variant-numeric: tabular-nums; }
.findings td:first-child { color: var(--ink); font-weight: 600; }
.findings tr:last-child td { border-bottom: none; font-weight: 700; color: var(--ink); }
.findings .zero { color: var(--good, #157347); font-weight: 700; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .pressures, .features { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; gap: 34px; }
  .founder-card { max-width: 340px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  :root { --gut: 20px; }
  body { font-size: 16px; }
  .hero { padding: 62px 0 68px; }
  .section { padding: 62px 0; }
  .section-head { margin-bottom: 38px; }
  .pressures, .features, .principles { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact:nth-child(odd) { border-right: none; }
  .fact:nth-last-child(2) { border-bottom: 1px solid var(--line-soft); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta .btn { width: 100%; }
  .lede { font-size: 17px; }
  .stats { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .quote { padding: 22px 24px; }
  .quote p { font-size: 18px; }
  /* The findings table is the one thing here that can't usefully reflow — let it scroll */
  .findings-wrap { overflow-x: auto; }
  .findings { min-width: 420px; }
}

/* ── Demo-request form (M11) ─────────────────────────────────────────────────
   Plain HTML form posting to the application server: no script, no third party.
   The honeypot field (.hp) sits far off-canvas: humans never see it, bots fill it. */
.demo-form { margin-top: 28px; text-align: left; }
.demo-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .demo-form .grid2 { grid-template-columns: 1fr; } }
.demo-form label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin: 0 0 5px; }
.demo-form .req::after { content: " *"; color: var(--violet); }
.demo-form input, .demo-form textarea {
  width: 100%; box-sizing: border-box; padding: 11px 13px; font: inherit; font-size: 15px;
  color: var(--ink, #16233b); background: #fff; border: 1px solid var(--line, #d8dfeb);
  border-radius: 9px; transition: border-color .15s;
}
.demo-form input:focus, .demo-form textarea:focus { outline: none; border-color: var(--violet); }
.demo-form textarea { resize: vertical; min-height: 88px; }
.demo-form .form-field { margin-bottom: 14px; }
.demo-form .form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.demo-form .form-alt { font-size: 14px; color: var(--slate); }
.hp { position: absolute; left: -8000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
