/* Condo Owner Advocate 3.1 — premium product design system.
   Presentation layer only. Structure, copy, routes, CTA logic unchanged from 3.0.
   Inter is loaded via <link> in each page head. */

:root {
  /* neutrals */
  --bg: #f3f5f9;
  --bg-2: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f4f6fa;
  --surface-3: #eaeef4;
  --ink: #0c1626;
  --ink-soft: #4f5b6b;
  --ink-faint: #8390a0;
  --line: #e7ebf1;
  --line-strong: #d3dae3;

  /* brand */
  --brand: #0e2036;
  --accent: #205fa6;
  --accent-2: #3d84d6;
  --accent-hover: #1a4f8c;
  --accent-soft: #e9f1fb;
  --accent-ink: #ffffff;
  --gold: #c2953c;
  --good: #2f8a5b;
  --danger: #b8543a;
  --danger-soft: #fbeee9;

  /* gradients + glass */
  --grad-primary: linear-gradient(135deg, var(--accent-2), var(--accent) 55%, var(--brand));
  --grad-tile: linear-gradient(150deg, var(--accent-2), var(--accent));
  --grad-gold: linear-gradient(150deg, #e3c274, var(--gold));
  --grad-good: linear-gradient(150deg, #57c793, var(--good));
  --grad-danger: linear-gradient(150deg, #d98268, var(--danger));
  --grad-ink: linear-gradient(150deg, #33465e, var(--brand));
  --glass-bg: rgba(255,255,255,.66);
  --glass-border: rgba(255,255,255,.7);
  --nav-glass: rgba(255,255,255,.72);
  --hero-1: rgba(61,132,214,.16);
  --hero-2: rgba(194,149,60,.12);
  --dot: rgba(12,22,38,.045);

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(12,22,38,.05), 0 1px 3px rgba(12,22,38,.05);
  --shadow: 0 4px 10px rgba(12,22,38,.05), 0 16px 34px rgba(12,22,38,.08);
  --shadow-lg: 0 12px 28px rgba(12,22,38,.09), 0 34px 72px rgba(12,22,38,.12);
  --shadow-accent: 0 8px 20px rgba(32,95,166,.28);
  --shadow-inner: inset 0 1px 0 rgba(255,255,255,.5);

  /* radius */
  --r-xs: 9px; --r-sm: 13px; --r: 18px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;

  --ease: cubic-bezier(.2,.75,.25,1);
  --ease-spring: cubic-bezier(.34,1.4,.5,1);
  --step: clamp(1.02rem, 0.95rem + 0.4vw, 1.14rem);

  /* Shared canvas for the Home hero and the section directly below it, so
     the transition between them has no visible seam. */
  --hero-canvas: var(--bg);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #080b11; --bg-2: #0b1017; --surface: #10161f; --surface-2: #151d27; --surface-3: #1b2530;
    --ink: #eef2f7; --ink-soft: #9aa7b6; --ink-faint: #6a7686;
    --line: #1f2833; --line-strong: #2b3743;
    --brand: #0a1220; --accent: #4d94db; --accent-2: #74b1ea; --accent-hover: #66a6e6;
    --accent-soft: #131f2c; --accent-ink: #07121e; --gold: #d8b768; --good: #57c793; --danger: #db8770; --danger-soft: #221512;
    --glass-bg: rgba(16,22,31,.6); --glass-border: rgba(255,255,255,.08); --nav-glass: rgba(9,13,19,.68);
    --hero-1: rgba(77,148,219,.18); --hero-2: rgba(216,183,104,.08); --dot: rgba(255,255,255,.04);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow: 0 6px 16px rgba(0,0,0,.4), 0 20px 44px rgba(0,0,0,.5);
    --shadow-lg: 0 16px 34px rgba(0,0,0,.5), 0 40px 90px rgba(0,0,0,.6);
    --shadow-accent: 0 10px 26px rgba(77,148,219,.32);
    --shadow-inner: inset 0 1px 0 rgba(255,255,255,.06);
  }
}
:root[data-theme="dark"]{
  --bg:#080b11;--bg-2:#0b1017;--surface:#10161f;--surface-2:#151d27;--surface-3:#1b2530;--ink:#eef2f7;
  --ink-soft:#9aa7b6;--ink-faint:#6a7686;--line:#1f2833;--line-strong:#2b3743;--brand:#0a1220;--accent:#4d94db;
  --accent-2:#74b1ea;--accent-hover:#66a6e6;--accent-soft:#131f2c;--accent-ink:#07121e;--gold:#d8b768;--good:#57c793;
  --danger:#db8770;--danger-soft:#221512;--glass-bg:rgba(16,22,31,.6);--glass-border:rgba(255,255,255,.08);
  --nav-glass:rgba(9,13,19,.68);--hero-1:rgba(77,148,219,.18);--hero-2:rgba(216,183,104,.08);--dot:rgba(255,255,255,.04);
  --shadow-sm:0 1px 2px rgba(0,0,0,.4);--shadow:0 6px 16px rgba(0,0,0,.4),0 20px 44px rgba(0,0,0,.5);
  --shadow-lg:0 16px 34px rgba(0,0,0,.5),0 40px 90px rgba(0,0,0,.6);--shadow-accent:0 10px 26px rgba(77,148,219,.32);--shadow-inner:inset 0 1px 0 rgba(255,255,255,.06);
}
:root[data-theme="light"]{
  --bg:#f3f5f9;--bg-2:#eef1f6;--surface:#ffffff;--surface-2:#f4f6fa;--surface-3:#eaeef4;--ink:#0c1626;
  --ink-soft:#4f5b6b;--ink-faint:#8390a0;--line:#e7ebf1;--line-strong:#d3dae3;--brand:#0e2036;--accent:#205fa6;
  --accent-2:#3d84d6;--accent-hover:#1a4f8c;--accent-soft:#e9f1fb;--accent-ink:#ffffff;--gold:#c2953c;--good:#2f8a5b;
  --danger:#b8543a;--danger-soft:#fbeee9;--glass-bg:rgba(255,255,255,.66);--glass-border:rgba(255,255,255,.7);
  --nav-glass:rgba(255,255,255,.72);--hero-1:rgba(61,132,214,.16);--hero-2:rgba(194,149,60,.12);--dot:rgba(12,22,38,.045);
  --shadow-sm:0 1px 2px rgba(12,22,38,.05),0 1px 3px rgba(12,22,38,.05);--shadow:0 4px 10px rgba(12,22,38,.05),0 16px 34px rgba(12,22,38,.08);
  --shadow-lg:0 12px 28px rgba(12,22,38,.09),0 34px 72px rgba(12,22,38,.12);--shadow-accent:0 8px 20px rgba(32,95,166,.28);--shadow-inner:inset 0 1px 0 rgba(255,255,255,.5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--step); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1,h2,h3,h4 { color: var(--ink); line-height: 1.12; letter-spacing: -0.025em; margin: 0; text-wrap: balance; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 1.5rem + 3vw, 3.7rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.25rem); }
h3 { font-size: 1.16rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }

.skip-link { position:absolute; left:-999px; top:0; background:var(--ink); color:var(--surface); padding:10px 16px; border-radius:0 0 8px 0; z-index:200; }
.skip-link:focus { left:0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* reveal on scroll — gated on .js so no-JS users always see content (accessibility) */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease) var(--rd,0ms), transform .6s var(--ease) var(--rd,0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* layout */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 8vw, 108px) 0; }
.section-tight { padding: clamp(44px, 5vw, 72px) 0; }
.center { text-align: center; }
.eyebrow { font-size: .74rem; font-weight: 680; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow.muted { color: var(--ink-faint); }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-tile); }
.eyebrow.muted::before { background: var(--line-strong); }
.lead { font-size: clamp(1.08rem, 1rem + 0.55vw, 1.34rem); color: var(--ink-soft); line-height: 1.5; letter-spacing: -0.01em; }
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }

.eyebrow-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--nav-glass); -webkit-backdrop-filter: saturate(1.6) blur(16px); backdrop-filter: saturate(1.6) blur(16px); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark { width: 38px; height: 38px; border-radius: 12px; background: var(--grad-primary); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-accent), var(--shadow-inner); flex: 0 0 auto; }
.brand .mark svg { width: 21px; height: 21px; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-weight: 740; font-size: 1.06rem; letter-spacing: -0.03em; color: var(--ink); }
.brand-sub { font-size: .68rem; font-weight: 560; letter-spacing: .02em; color: var(--ink-faint); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 3px; margin-left: 10px; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; font-weight: 560; padding: 8px 13px; border-radius: 10px; white-space: nowrap; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--ink); }
/* CSS-only hamburger: iOS Safari collapses replaced elements (svg) under the global
   img,svg max-width:100% inside the shrink-to-fit flex button; pseudo-element bars can't collapse. */
.nav-toggle-bars { position: relative; display: block; width: 20px; height: 20px; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 2px; right: 2px; height: 2px; border-radius: 1px; background: currentColor; }
.nav-toggle-bars::before { top: 6px; }
.nav-toggle-bars::after { bottom: 6px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 620; font-size: .95rem; line-height: 1; letter-spacing: -0.01em; padding: 13px 22px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer; transition: transform .16s var(--ease-spring), box-shadow .18s var(--ease), background .18s, border-color .18s, color .18s; white-space: nowrap; }
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-accent), var(--shadow-inner); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(32,95,166,.36), var(--shadow-inner); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--surface); color: var(--ink); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); background: var(--surface-2); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .18s var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(4px); }

/* icon tiles (soft 3D) */
.ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; background: var(--grad-tile); color: #fff; box-shadow: var(--shadow-accent), var(--shadow-inner); }
.ico svg { width: 23px; height: 23px; }
.ico.sm { width: 38px; height: 38px; border-radius: 11px; }
.ico.sm svg { width: 19px; height: 19px; }
.ico.gold { background: var(--grad-gold); box-shadow: 0 8px 18px rgba(194,149,60,.3), var(--shadow-inner); }
.ico.good { background: var(--grad-good); box-shadow: 0 8px 18px rgba(47,138,91,.28), var(--shadow-inner); }
.ico.danger { background: var(--grad-danger); box-shadow: 0 8px 18px rgba(184,84,58,.26), var(--shadow-inner); }
.ico.ink { background: var(--grad-ink); box-shadow: var(--shadow); }
.ico.ghost { background: var(--accent-soft); color: var(--accent); box-shadow: none; }

/* hero */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); }
.hero::before { content: ""; position: absolute; inset: -30% -10% auto -10%; height: 720px; z-index: 0; background: radial-gradient(52% 60% at 20% 18%, var(--hero-1), transparent 70%), radial-gradient(46% 52% at 84% 6%, var(--hero-2), transparent 70%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(var(--dot) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%); pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { max-width: 15ch; }
.hero .lead { max-width: 46ch; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 20px; font-size: .9rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 9px; }
.hero-note .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--grad-good); display: grid; place-items: center; box-shadow: var(--shadow-inner); }
.hero-note .dot svg { width: 12px; height: 12px; color: #fff; }
/* Homepage hero founder block: unboxed portrait + credentials, rendered
   immediately (no scroll reveal) as the hero's trust anchor. The short H1
   and one-line promise keep the whole stack compact, so the hero uses the
   site-wide type scale and spacing with no fold-driven compression. */
.hero-founder { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.hero-founder img { width: 116px; height: 116px; border-radius: 50%; border: 1px solid var(--line); flex: 0 0 auto; }
.hero-founder .hf-text { display: flex; flex-direction: column; gap: 2px; }
.hero-founder strong { color: var(--ink); font-size: 1.02rem; letter-spacing: -0.01em; }
.hero-founder .hf-text span { font-size: .9rem; line-height: 1.4; color: var(--ink-soft); }

/* the product flow (signature visual object) */
.flow { position: relative; background: var(--glass-bg); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid var(--glass-border); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow-lg); }
.flow::before { content: ""; position: absolute; left: 49px; top: 46px; bottom: 46px; width: 2px; background: linear-gradient(var(--accent-2), var(--accent), var(--gold)); opacity: .5; border-radius: 2px; }
.flow-node { position: relative; display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: var(--r); transition: background .2s var(--ease); }
.flow-node + .flow-node { margin-top: 6px; }
.flow-node:hover { background: var(--surface-2); }
.flow-node .fn-body h4 { font-size: 1rem; letter-spacing: -0.01em; margin: 0; }
.flow-node .fn-body p { margin: 2px 0 0; font-size: .84rem; color: var(--ink-soft); }
.flow-node .ico { position: relative; z-index: 1; }
.flow-node.is-final .fn-body h4 { color: var(--accent); }

/* cards */
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease-spring), box-shadow .22s var(--ease), border-color .22s; }
.card-link { display: block; color: inherit; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); color: inherit; }
.card h3 { margin: 18px 0 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card .card-foot { margin-top: 18px; }
.card-arrow { position: absolute; top: 24px; right: 24px; color: var(--ink-faint); opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s var(--ease-spring); }
.card-link:hover .card-arrow { opacity: 1; transform: none; color: var(--accent); }
.card-arrow svg { width: 18px; height: 18px; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* channels (start here) */
.channel { display: flex; gap: 16px; align-items: flex-start; }
.channel .ico { margin: 0; }
.channel .ch-body { min-width: 0; }
.channel .ch-body h3 { display: flex; align-items: center; gap: 10px; margin: 4px 0 6px; flex-wrap: wrap; }
.channel .ch-body p { font-size: .95rem; }
.channel.disabled { opacity: .6; }
.channel.disabled .ico { filter: grayscale(.6); }
.pill-soft { font-size: .66rem; font-weight: 680; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); background: var(--surface-2); border: 1px solid var(--line); padding: 3px 9px; border-radius: var(--r-pill); }

/* pill chips */
.pill-list { display: flex; flex-wrap: wrap; gap: 11px; }
.pill-list a { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); font-size: .94rem; font-weight: 560; box-shadow: var(--shadow-sm); transition: transform .16s var(--ease-spring), border-color .16s, color .16s; }
.pill-list a svg { width: 15px; height: 15px; color: var(--ink-faint); transition: color .16s, transform .16s var(--ease-spring); }
.pill-list a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.pill-list a:hover svg { color: var(--accent); transform: translateX(3px); }

/* early trust strip (under hero) */
.hero-home,
.trust-strip-band {
  background: var(--hero-canvas);
}

.trust-strip-band {
  border-top: 0;
  border-bottom: 0;
}
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 22px 0; }
.ts-item { display: flex; align-items: center; gap: 13px; }
.ts-item .ico { width: 40px; height: 40px; border-radius: 11px; }
.ts-item .ico svg { width: 20px; height: 20px; }
.ts-item strong { display: block; font-size: .95rem; color: var(--ink); letter-spacing: -0.01em; }
.ts-item span { display: block; font-size: .82rem; color: var(--ink-soft); }

/* self-select trigger grid (the "what did you receive" moment) */
.trigger-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trigger-card { position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); color: var(--ink); font-weight: 580; transition: transform .18s var(--ease-spring), box-shadow .18s var(--ease), border-color .18s; }
.trigger-card .ico { width: 42px; height: 42px; border-radius: 12px; }
.trigger-card .ico svg { width: 21px; height: 21px; }
.trigger-card .tc-label { flex: 1 1 auto; font-size: .96rem; line-height: 1.25; letter-spacing: -0.01em; }
.trigger-card .tc-arrow { color: var(--ink-faint); opacity: 0; transform: translateX(-4px); transition: opacity .18s, transform .18s var(--ease-spring); }
.trigger-card .tc-arrow svg { width: 17px; height: 17px; }
.trigger-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); }
.trigger-card:hover .tc-arrow { opacity: 1; transform: none; color: var(--accent); }

/* authority strip (honest scale) */
.authority-band { background: var(--brand); color: #eaf1fb; padding: 42px 0; }
.authority-strip { display: flex; align-items: center; justify-content: center; gap: 8px 40px; flex-wrap: wrap; }
.as-stat { text-align: center; }
.as-stat strong { display: block; font-family: "Inter", sans-serif; font-size: 2.6rem; font-weight: 780; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.as-stat span { display: block; font-size: .82rem; color: #a9bdd6; margin-top: 8px; }
.as-divider { width: 1px; height: 42px; background: rgba(255,255,255,.14); }
.authority-note { text-align: center; max-width: 62ch; margin: 26px auto 0; color: #c3d2e4; font-size: .98rem; }

/* steps / timeline */
.timeline { position: relative; display: grid; gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--accent), var(--line-strong)); opacity: .35; }
.tl-item { position: relative; display: flex; gap: 20px; align-items: flex-start; }
.tl-num { position: relative; z-index: 1; flex: 0 0 auto; width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--grad-primary); color: #fff; display: grid; place-items: center; font-weight: 680; font-size: .98rem; box-shadow: var(--shadow-accent), var(--shadow-inner); }
.tl-item h3 { margin-bottom: 6px; }
.tl-item p { color: var(--ink-soft); margin: 0; }

/* roles: swimlane */
.roles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.role { position: relative; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.role::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; }
.role.ai::before { background: var(--grad-tile); }
.role.human::before { background: var(--grad-gold); }
.role.you::before { background: var(--grad-good); }
.role .ico { margin-bottom: 16px; }
.role .tag { font-size: .72rem; font-weight: 680; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink-faint); }
.role h3 { margin-bottom: 8px; }
.role p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* trust row */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--ink); letter-spacing: -0.01em; }
.trust-item p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* crumbs + article */
.crumbs { font-size: .84rem; color: var(--ink-faint); padding: 24px 0 0; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--ink-soft); }
.crumbs span { margin: 0 8px; opacity: .55; }
.article { padding: 10px 0 60px; }
.article h1 { margin: 14px 0 16px; font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem); }
.article .dek { font-size: clamp(1.12rem, 1rem + 0.55vw, 1.34rem); color: var(--ink-soft); line-height: 1.45; margin-bottom: 8px; letter-spacing: -0.01em; }
.prose { max-width: 740px; }
.prose > p { color: var(--ink-soft); font-size: 1.08rem; }
.prose h2, .sec-h2 { margin: 46px 0 18px; display: flex; align-items: center; gap: 12px; }

/* Knowledge Hub articles: free-form ported content (plain h3 / ul markup) */
.prose-article h3 { margin: 34px 0 12px; font-size: 1.16rem; letter-spacing: -0.02em; }
.prose-article ul:not([class]) { margin: 0 0 1rem; padding-left: 24px; color: var(--ink-soft); font-size: 1.05rem; }
.prose-article ul:not([class]) li { margin: 7px 0; }
.prose-article a { text-decoration: underline; text-underline-offset: 3px; }
.byline { display: flex; align-items: center; gap: 12px; margin: 20px 0 8px; }
.byline img { border-radius: 50%; }
.byline .b-name { display: block; font-weight: 620; font-size: .95rem; color: var(--ink); }
.byline .b-meta { display: block; font-size: .8rem; color: var(--ink-faint); }
.h2-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); flex: 0 0 auto; }
.h2-ico svg { width: 18px; height: 18px; }

/* visual lists that replace bullets */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; box-shadow: var(--shadow-sm); transition: transform .16s var(--ease-spring), border-color .16s; color: var(--ink); }
.check-list li:hover { transform: translateX(3px); border-color: var(--line-strong); }
.check-list li .mk { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .78rem; font-weight: 700; margin-top: 1px; }
.check-list.numbered li .mk { background: var(--grad-primary); box-shadow: var(--shadow-inner); }
.check-list.signal li .mk { background: var(--grad-tile); }
.check-list.good li .mk { background: var(--grad-good); }
.check-list.ink li .mk { background: var(--grad-ink); }
.check-list li .mk svg { width: 15px; height: 15px; }

.alert-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.alert-list li { display: flex; gap: 14px; align-items: flex-start; background: var(--danger-soft); border: 1px solid color-mix(in srgb, var(--danger) 22%, transparent); border-radius: var(--r); padding: 15px 18px; color: var(--ink); }
.alert-list li .mk { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-danger); color: #fff; box-shadow: var(--shadow-inner); }
.alert-list li .mk svg { width: 15px; height: 15px; }

.doc-chips { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.doc-chips li { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 15px; box-shadow: var(--shadow-sm); font-size: .95rem; color: var(--ink); transition: transform .16s var(--ease-spring), border-color .16s; }
.doc-chips li:hover { transform: translateY(-2px); border-color: var(--accent); }
.doc-chips li .mk { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-3); color: var(--accent); }
.doc-chips li .mk svg { width: 17px; height: 17px; }

/* expert card */
.expert { position: relative; background: linear-gradient(155deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 26px 28px; margin: 30px 0; box-shadow: var(--shadow); overflow: hidden; }
.expert::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-gold); }
.expert-head { display: flex; align-items: center; gap: 15px; margin-bottom: 16px; }
.expert-avatar { width: 56px; height: 56px; border-radius: 50%; flex: 0 0 auto; box-shadow: 0 0 0 3px var(--surface), var(--shadow); background: var(--surface-3); }
.expert-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); margin: 0 0 4px; display: inline-flex; align-items: center; gap: 7px; }
.expert-name { font-weight: 700; color: var(--ink); display: block; font-size: 1.02rem; letter-spacing: -0.01em; }
.expert-cred { font-size: .8rem; color: var(--ink-soft); display: block; }
.expert-body { margin: 0; color: var(--ink); font-size: 1.02rem; }

/* founder card (About) */
.founder-card { display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: center; background: linear-gradient(155deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-strong); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow); }
.founder-portrait { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.founder-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; }
.founder-body .expert-label { color: var(--accent); }
.founder-name { font-weight: 720; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--ink); display: block; margin: 2px 0 4px; }
.founder-quote { margin: 16px 0 0; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }

/* home trust block (understated, founder not dominant) */
.trust-block { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; }
.tb-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.tb-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tb-body { max-width: 52ch; }

/* reviewer chip (Get Help) */
.reviewer { display: flex; align-items: center; gap: 15px; margin-top: 22px; padding: 16px 20px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); }
.reviewer img { width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto; box-shadow: 0 0 0 3px var(--surface), var(--shadow-sm); }
.reviewer p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.reviewer strong { color: var(--ink); }

/* case footer signature (tiny, non-dominant) */
.case-sign { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.case-sign img { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; box-shadow: 0 0 0 2px var(--surface), var(--shadow-sm); }
.case-sign span { font-size: .88rem; color: var(--ink-faint); }
.case-sign strong { color: var(--ink-soft); }

/* cta blocks (tiers preserved) */
.cta { position: relative; border-radius: var(--r-xl); padding: 34px 36px; margin: 38px 0; box-shadow: var(--shadow); background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.cta h2 { font-size: 1.4rem; margin-bottom: 10px; }
.cta p { color: var(--ink-soft); margin: 0 0 22px; max-width: 58ch; }
.cta .row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta .tertiary { margin: 16px 0 0; font-size: .88rem; color: var(--ink-faint); }
.cta .price-hint { font-size: .84rem; color: var(--ink-faint); }
.cta--action { background: var(--grad-ink); border-color: transparent; color: #eaf1fb; }
.cta--action::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(61,132,214,.35), transparent 70%); }
.cta--action h2 { color: #fff; }
.cta--action p { color: #c3d2e4; }
.cta--action .tertiary { color: #93a7c0; }
.cta--action .tertiary a { color: #fff; }
.cta--action .price-hint { color: #93a7c0; }
.cta--diagnostic { background: linear-gradient(150deg, var(--accent-soft), var(--surface)); border-color: var(--line-strong); }
.cta > * { position: relative; z-index: 1; }

/* faq */
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 19px 22px; font-weight: 640; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: 0 0 auto; transition: transform .25s var(--ease-spring); color: var(--ink-faint); }
.faq details[open] summary .chev { transform: rotate(180deg); color: var(--accent); }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); }

/* badges / provenance */
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 620; padding: 6px 13px; border-radius: var(--r-pill); background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--line); }
.badge svg { width: 14px; height: 14px; color: var(--accent); }
.provenance { background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r); padding: 17px 20px; font-size: .92rem; color: var(--ink-soft); }
.provenance strong { color: var(--ink); }
.disclaimer { font-size: .9rem; color: var(--ink-soft); font-style: italic; text-align: center; padding: 26px 12px 0; max-width: 68ch; margin: 26px auto 0; border-top: 1px solid var(--line); } /* TS-04: meaningful small text, AA contrast */

/* related */
.related-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.related-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 16px; border-radius: var(--r-sm); color: var(--ink); font-weight: 560; transition: background .16s, color .16s, transform .16s var(--ease-spring); }
.related-list a:hover { color: var(--accent); background: var(--surface-2); transform: translateX(3px); }
.related-list .tag { font-size: .74rem; color: var(--ink-faint); font-weight: 500; }

/* panels */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-sm); }

/* library */
.cmd { position: relative; max-width: 560px; }
.cmd input { width: 100%; padding: 17px 18px 17px 52px; border-radius: var(--r); border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); font: inherit; font-size: 1rem; box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s; }
.cmd input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow); }
.cmd svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-faint); }
.cmd .kbd { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: .72rem; color: var(--ink-faint); border: 1px solid var(--line-strong); border-radius: 6px; padding: 3px 8px; background: var(--surface-2); }
.cluster { margin-bottom: 44px; }
.cluster-head { display: flex; align-items: center; gap: 13px; margin-bottom: 6px; }
.cluster-head .ico { width: 34px; height: 34px; border-radius: 10px; }
.cluster-head .ico svg { width: 18px; height: 18px; }
.cluster-head h2 { font-size: 1.24rem; }
.cluster-desc { color: var(--ink-soft); font-size: .95rem; margin: 0 0 16px; max-width: 72ch; }
.guide-links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 20px; }
.guide-links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-radius: var(--r-sm); color: var(--ink); font-weight: 550; font-size: .97rem; transition: background .16s, color .16s, transform .16s var(--ease-spring); }
.guide-links a .gl-arrow { opacity: 0; color: var(--ink-faint); transition: opacity .16s, transform .16s var(--ease-spring); }
.guide-links a .gl-arrow svg { width: 15px; height: 15px; }
.guide-links a:hover { background: var(--surface-2); color: var(--accent); }
.guide-links a:hover .gl-arrow { opacity: 1; transform: translateX(3px); color: var(--accent); }
.hidden { display: none !important; }
.empty-note { color: var(--ink-soft); padding: 20px 0; } /* TS-04: search feedback, AA contrast */
.case-card .badge, .article-card .badge { margin-bottom: 14px; }
.case-card h3, .article-card h3 { font-size: 1.06rem; margin: 0 0 8px; }
/* CL-05: cluster/category sections are breadcrumb anchor targets; keep them
   clear of the sticky nav when jumped to. */
.cluster[id] { scroll-margin-top: 90px; }

/* form */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .88rem; font-weight: 620; color: var(--ink); margin-bottom: 8px; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 16px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); font: inherit; font-size: .96rem; transition: border-color .18s, box-shadow .18s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.form-field textarea { min-height: 138px; resize: vertical; }
/* Consent checkbox: native size inside its flex label, never a full-width field. */
.form-field input[type="checkbox"] { width: auto; padding: 0; box-shadow: none; accent-color: var(--accent); }
/* Turnstile widget: reserve its height and keep it inside the form card. */
.cf-turnstile { margin: 2px 0 16px; min-height: 65px; max-width: 100%; overflow: hidden; }
.cf-turnstile iframe { max-width: 100%; }
.dropzone { border: 1.5px dashed var(--line-strong); border-radius: var(--r); padding: 28px; text-align: center; color: var(--ink-faint); background: var(--surface-2); transition: border-color .18s, background .18s; }
.dropzone:hover { border-color: var(--accent); }
.dropzone .ico { margin: 0 auto 10px; }

/* pricing cards (get help) */
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease-spring), box-shadow .22s; overflow: hidden; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card .pc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.price-card h3 { font-size: 1.3rem; }
.price-card .amount { font-size: 2.1rem; font-weight: 760; letter-spacing: -0.03em; color: var(--ink); }
.price-card .amount small { font-size: .9rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.price-card p.desc { color: var(--ink-soft); margin: 0 0 20px; font-size: .98rem; }
.pc-feat { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.pc-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--ink-soft); }
.pc-feat li .mk { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--grad-good); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.pc-feat li .mk svg { width: 12px; height: 12px; }

/* footer */
.footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 56px 24px 32px; }
.footer .brand { margin-bottom: 14px; }
.footer .about { color: var(--ink-soft); font-size: .92rem; max-width: 34ch; }
/* TS-04/TS-05: column titles are navigation-group headings (h2.foot-h, a
   non-skipping level) keeping the original h4 appearance, with AA contrast. */
.footer h4, .footer .foot-h { font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-soft); font-weight: 680; line-height: 1.12; margin: 0 0 15px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--ink-soft); font-size: .94rem; transition: color .15s; }
.footer li a:hover { color: var(--ink); }
.footer-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.ft-item { display: flex; align-items: center; gap: 13px; }
.ft-item .ico { width: 40px; height: 40px; border-radius: 11px; }
.ft-item .ico svg { width: 20px; height: 20px; }
.ft-item strong { display: block; font-size: .92rem; color: var(--ink); letter-spacing: -0.01em; }
.ft-item span { display: block; font-size: .8rem; color: var(--ink-soft); line-height: 1.35; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-contact { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .9rem; font-weight: 560; color: var(--ink); }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; }
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--ink-faint); max-width: 74ch; }
.footer-region { color: var(--ink-soft) !important; font-weight: 560; white-space: nowrap; }
.proto-pill { font-size: .72rem; font-weight: 620; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 5px 12px; border-radius: var(--r-pill); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface); border-bottom: 1px solid var(--line); padding: 12px 16px 18px; box-shadow: var(--shadow); }
  .nav.open .nav-links a { padding: 13px; }
  .grid-3, .roles { grid-template-columns: 1fr; }
  .trigger-grid, .trust-strip, .footer-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 220px; }
  .trust-block { grid-template-columns: 1fr; gap: 24px; }
  .tb-photo { max-width: 240px; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .guide-links, .doc-chips { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .brand-sub { display: none; }
  .as-stat strong { font-size: 2.1rem; }
  .as-divider { display: none; }
  .authority-strip { gap: 22px 30px; }
  .hero-cta .btn { width: 100%; }
  .hero-founder img { width: 112px; height: 112px; }
  .cta { padding: 26px; }
}
@media (max-width: 460px) {
  .trigger-grid { grid-template-columns: 1fr; }
}

/* ---- Header brand: extracted emblem + one-line HTML wordmark. -------------
   The emblem inherits the existing 58px/50px height rules (header stays
   77px desktop / 69px mobile). The wordmark hides exactly where measured
   space runs out: 941-1079px (full nav links present; links + text need
   >=1080px) and below 560px (narrow mobile). */
.brand-logo { height: 58px; width: auto; display: block; }
.nav .brand { flex-shrink: 0; }
.brand-word { font-weight: 740; font-size: 1.06rem; letter-spacing: -0.03em; color: var(--ink); white-space: nowrap; }
@media (max-width: 640px) { .brand-logo { height: 50px; } }
@media (max-width: 1079px) and (min-width: 941px) { .brand-word { display: none; } }
@media (max-width: 559px) { .brand-word { display: none; } }

/* ---- Home hero: denser two-column composition with the founder portrait. --- */
.hero-home { padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 56px); background: var(--hero-canvas); }
.hero-home h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.5rem); max-width: 21ch; }
.hero-home .lead { margin-top: 18px; max-width: 52ch; }
.hero-cta-stack { margin-top: 26px; }
.hero-guides-link { margin-top: 18px; font-weight: 650; }
.hero-guides-link a { color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hero-guides-link a:hover { text-decoration: underline; }
.hero-guides-link svg { width: 15px; height: 15px; }
/* Final light Apple-style hero: approved copy, actions and a prominent
   founder trust block on the left; the fictional notice SVG as a large
   supporting visual on the right, softly cropped by the hero edge. */
.hero-lite { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 3vw, 48px); }
@media (min-width: 901px) {
  .hero-home {
    position: relative;
    overflow: hidden;
    background: var(--hero-canvas);
    padding: 28px 0 48px;
  }

  .hero-lite {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(28px, 4vw, 60px);
  }

  /* Right column: the five-step process card (renderFlow) with its own
     eyebrow and supporting line. No imagery, transforms, masks, or blends. */
  .hero-flow {
    align-self: center;
    justify-self: end;
    max-width: 460px;
    width: 100%;
  }
}
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.ht-photo { width: 176px; height: 176px; border-radius: 50%; flex: 0 0 auto;
  border: 4px solid var(--surface); box-shadow: 0 0 0 1px var(--line), 0 6px 18px rgba(12,22,38,.14); }
.ht-text { display: flex; flex-direction: column; gap: 4px; }
.ht-name { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; }
.ht-name svg { width: 36px; height: 36px; color: #B3261E; stroke-width: 2.6; flex: 0 0 auto; }
.ht-name strong { color: var(--ink); letter-spacing: -0.02em; font-weight: 720; white-space: nowrap; }
.ht-cred { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }
.hero-flow-sub { margin: 0 0 14px; font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .hero-lite { grid-template-columns: 1fr; gap: 28px; }
  /* The process card stacks below the complete left hero content. */
  .hero-flow { max-width: 460px; }
}
@media (max-width: 480px) {
  .hero-home { padding: 28px 0 34px; }
  .hero-home h1 { font-size: 1.72rem; }
  .hero-home .lead { font-size: 1rem; margin-top: 12px; }
  .hero-cta-stack { margin-top: 18px; gap: 10px; }
  .hero-cta-stack .btn-lg { width: 100%; justify-content: center; }
  .hero-guides-link { margin-top: 14px; }
  .hero-trust { margin-top: 24px; gap: 16px; }
  .ht-photo { width: 140px; height: 140px; }
  .ht-name { font-size: 1.24rem; }
  .ht-name svg { width: 28px; height: 28px; }
  .ht-cred { font-size: .97rem; }
}

/* ---- Batch B (TS-03/TS-04/TS-05) accessibility additions --------------------
   New scoped classes only; the global --ink-faint token and every frozen
   Hero rule above are untouched. */
/* TS-04: accessible small-text color for meaningful notes (replaces .faint
   on contact status/instructions, CTA notes, and provenance notes). */
.note-soft { color: var(--ink-soft); }
.hero-note.note-soft { color: var(--ink-soft); } /* non-Hero .hero-note uses only */
/* TS-05: visual twins for demoted/promoted headings. Values mirror the h2/h3/h4
   element styles plus each component's contextual rule, so rendering is identical. */
.h-sub { font-size: 1.16rem; letter-spacing: -0.02em; } /* h2 rendered like h3 */
.trust-item .ti-h { font-size: 1rem; margin: 0 0 5px; color: var(--ink); letter-spacing: -0.01em; font-weight: 700; line-height: 1.12; }
.tl-item .tl-h { font-size: 1.16rem; margin: 0 0 6px; color: var(--ink); letter-spacing: -0.02em; font-weight: 700; line-height: 1.12; }
.channel .ch-body .card-h { display: flex; align-items: center; gap: 10px; margin: 4px 0 6px; flex-wrap: wrap; font-size: 1.16rem; color: var(--ink); letter-spacing: -0.02em; font-weight: 700; line-height: 1.12; }
.flow-node .fn-body .fn-h { font-size: 1rem; margin: 0; color: var(--ink); letter-spacing: -0.01em; font-weight: 700; line-height: 1.12; }
.flow-node.is-final .fn-body .fn-h { color: var(--accent); }
