/* USA Pro AI — design system
   Ported from Claude Design "USA Pro AI.dc.html". Single stylesheet, no build step. */

:root {
  --bg: #070a10;
  --ink: #eef2f5;
  --ink-2: #c2ccd6;
  --ink-3: #a2aeb9;
  --muted: #94a1ad;
  --muted-2: #848f9a;
  --muted-3: #8d99a4;
  --dim: #69747f;
  --dim-2: #7c8792;
  --faint: #5f6a74;
  --blue: #4d89ff;
  --blue-deep: #2a61df;
  --blue-bright: #5f96ff;
  --blue-soft: #93b6ff;
  --blue-pale: #9dbcff;
  --link: #7ea8ff;
  --green: #79dcae;
  --green-2: #4ac98c;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .08);
  --card: linear-gradient(180deg, #0e131b, #0a0e14);
  --sans: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --display: Archivo, 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

/* the `hidden` content attribute is HTML-only — SVG needs this explicitly */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: #a9c6ff; }
::selection { background: #3d7dff; color: #fff; }

img { max-width: 100%; }

@keyframes upa-pulse { 0%, 100% { opacity: .3 } 50% { opacity: 1 } }
@keyframes upa-rise { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }
@keyframes upa-fade { from { opacity: 0 } to { opacity: 1 } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ── page shell ───────────────────────────────────────────── */

.shell {
  min-height: 100vh;
  background:
    radial-gradient(1000px 620px at 50% -10%, rgba(45, 105, 255, .17), transparent 64%),
    radial-gradient(760px 520px at 92% 22%, rgba(70, 130, 230, .08), transparent 62%),
    var(--bg);
  background-attachment: fixed;
}

.wrap { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-prose { max-width: 900px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-mid { max-width: 1100px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section { padding-top: clamp(52px, 6vw, 88px); padding-bottom: clamp(52px, 6vw, 88px); }
.section-tint { border-top: 1px solid var(--line); background: rgba(255, 255, 255, .014); }
.page-top { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(60px, 7vw, 100px); }

/* ── header ───────────────────────────────────────────────── */

.hdr {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 16, .86);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 13px; color: inherit; }
.brand:hover { color: inherit; }
.brand img { width: 58px; height: 58px; flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.015em; line-height: 1.1; }
.brand-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--dim); line-height: 1.3;
}
@media (max-width: 560px) {
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: 19px; }
  .brand-tag { font-size: 9px; letter-spacing: .04em; }
}
@media (max-width: 380px) { .brand-tag { display: none; } }

.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; font-size: 14px; font-weight: 500; }
.nav a { padding: 8px 13px; border-radius: 7px; color: var(--ink-3); }
.nav a:hover { background: rgba(255, 255, 255, .06); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav-tel { padding: 8px 13px; border-radius: 7px; color: var(--ink-2); font-weight: 600; white-space: nowrap; }
.nav-tel:hover { color: #fff; }

/* ── buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 11px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 16px;
  padding: 16px 30px; text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 18px 42px rgba(42, 97, 223, .32), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn-primary:hover { filter: brightness(1.09); color: #fff; }
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
  color: #c9d3dc;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .24); color: #c9d3dc; }
.btn-sm { padding: 13px 20px; font-size: 14.5px; border-radius: 9px; }
.btn-md { padding: 14px 24px; font-size: 15px; border-radius: 10px; }
.btn-nav {
  margin-left: 10px; padding: 11px 20px; border-radius: 9px; font-size: 14px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep)); color: #fff; font-weight: 600;
  box-shadow: 0 10px 24px rgba(42, 97, 223, .34), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn-nav:hover { filter: brightness(1.09); color: #fff; }
.btn-outline {
  padding: 12px 18px; border-radius: 9px; border: 1px solid rgba(255, 255, 255, .13);
  color: #d0d9e1; font-weight: 600; font-size: 14px; white-space: nowrap;
}
.btn-outline:hover { background: rgba(255, 255, 255, .06); color: #d0d9e1; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row-center { justify-content: center; }

/* ── type ─────────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
}
.eyebrow-sm { font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); }
.eyebrow-blue { color: var(--blue-soft); }

h1, h2, h3 { font-family: var(--display); }

.h-hero {
  margin: 30px auto 0; max-width: 19ch;
  font-weight: 800; font-size: clamp(38px, 5.6vw, 74px);
  line-height: 1.03; letter-spacing: -.035em; text-wrap: balance;
  /* Deliberately NOT gradient-clipped text. background-clip:text renders this
     headline near-black in Keith's Chrome — the compositing layer created by
     the hero's animation appears to drop the gradient, leaving transparent
     glyphs over a dark page. A flat colour is the only thing that is reliably
     legible on every machine, and this is the first line anyone reads. */
  color: #ffffff;
  text-shadow: 0 1px 30px rgba(70, 130, 255, .25);
}
.h-page {
  margin: 14px 0 0; font-weight: 800; font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.032em; line-height: 1.06; max-width: 20ch;
}
.h-sec {
  margin: 13px 0 0; font-weight: 700; font-size: clamp(25px, 2.8vw, 36px);
  letter-spacing: -.028em; line-height: 1.14;
}
.lede { margin: 18px 0 0; max-width: 62ch; font-size: 16.5px; line-height: 1.68; color: var(--muted); text-wrap: pretty; }
.lede-hero { margin: 28px auto 0; max-width: 66ch; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.68; color: var(--muted); text-wrap: pretty; }

/* ── badge ────────────────────────────────────────────────── */

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(122, 160, 255, .3); background: rgba(45, 105, 255, .11);
  font-size: 14px; font-weight: 600; color: var(--blue-soft);
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: upa-pulse 2.2s ease-in-out infinite; }

/* ── hero ─────────────────────────────────────────────────── */

.hero { text-align: center; padding: clamp(64px, 10vw, 132px) 24px clamp(56px, 7vw, 88px); animation: upa-rise .5s ease both; }
.stats {
  max-width: 1000px; margin: clamp(56px, 7vw, 84px) auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 26px; text-align: left;
}
.stat-big { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -.03em; color: var(--blue-bright); }
.stat-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); margin-top: 8px; }

/* ── cards ────────────────────────────────────────────────── */

.card {
  padding: 20px; border-radius: 13px;
  border: 1px solid var(--line-2); background: var(--card);
}
.card h3 { margin: 0; font-weight: 700; font-size: 16.5px; letter-spacing: -.018em; }
.card p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted-2); text-wrap: pretty; }

.grid-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 13px; }
.grid-services-lg { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 14px; margin-top: 40px; }

.svc {
  display: block; padding: 21px 19px 19px; border-radius: 13px;
  border: 1px solid var(--line-2); background: var(--card);
  color: inherit; transition: border-color .18s, transform .18s;
}
.svc:hover { border-color: rgba(122, 160, 255, .4); transform: translateY(-3px); color: inherit; }
.svc-num { font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em; color: var(--blue); }
.svc h3, .svc h2 { margin: 11px 0 0; font-weight: 700; font-size: 17px; letter-spacing: -.018em; line-height: 1.22; }
.svc p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--muted-2); text-wrap: pretty; }
.svc-more { margin-top: 15px; font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); }
.grid-services-lg .svc { padding: 24px 22px; border-radius: 14px; }
.grid-services-lg .svc h2 { margin: 12px 0 0; font-size: 19px; letter-spacing: -.02em; line-height: 1.2; }
.grid-services-lg .svc p { margin: 9px 0 0; font-size: 14px; line-height: 1.58; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.sec-head .h-sec { max-width: 22ch; }

/* ── process steps ────────────────────────────────────────── */

.steps {
  display: grid; gap: 1px; grid-template-columns: 1fr;
  border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden;
  background: rgba(255, 255, 255, .07); margin-top: 32px;
}
@media (min-width: 620px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 26px 22px; background: var(--card); }
.step-num { font-family: var(--display); font-weight: 800; font-size: 32px; color: rgba(122, 160, 255, .3); letter-spacing: -.04em; }
.step h3 { margin: 10px 0 0; font-weight: 700; font-size: 17px; letter-spacing: -.018em; }
.step p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--muted-2); text-wrap: pretty; }

/* ── split section ────────────────────────────────────────── */

.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.split p { font-size: 16px; line-height: 1.72; color: var(--muted); max-width: 52ch; text-wrap: pretty; }
.pillars { display: grid; gap: 12px; align-content: start; }

/* ── faq ──────────────────────────────────────────────────── */

.faqs { display: grid; gap: 10px; max-width: 860px; margin-top: 28px; }
.faq {
  padding: 18px 20px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--card);
}
.faq:hover { border-color: rgba(122, 160, 255, .3); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { margin: 0; font-weight: 600; font-size: 16px; letter-spacing: -.015em; }
.faq-sign { font-family: var(--mono); font-size: 16px; color: var(--blue-bright); flex: none; }
.faq[open] .faq-sign::before { content: '−'; }
.faq:not([open]) .faq-sign::before { content: '+'; }
.faq p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--muted-3); max-width: 70ch; text-wrap: pretty; }

/* ── cta band ─────────────────────────────────────────────── */

.cta {
  border: 1px solid rgba(122, 160, 255, .24); border-radius: 18px;
  padding: clamp(32px, 4.5vw, 56px); text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(45, 105, 255, .16), transparent 70%),
    linear-gradient(180deg, #0d121a, #0a0e14);
}
.cta h2 {
  margin: 0 auto; font-weight: 700; font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.03em; line-height: 1.1; max-width: 22ch; text-wrap: balance;
}
.cta p { margin: 16px auto 0; max-width: 56ch; font-size: 16px; line-height: 1.65; color: var(--muted); }
.cta .btn-row { margin-top: 28px; }

/* ── service detail ───────────────────────────────────────── */

.back-link {
  display: inline-flex; font-family: var(--mono); font-size: 11px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
}
.back-link:hover { color: var(--blue-pale); }
.detail-num { margin-top: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: .15em; color: var(--blue); }
.detail-h1 { margin: 12px 0 0; font-weight: 800; font-size: clamp(28px, 3.8vw, 46px); letter-spacing: -.032em; line-height: 1.07; max-width: 20ch; }
.detail-lede { margin: 18px 0 0; max-width: 62ch; font-size: 17px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 14px; margin-top: 40px; }
.panel { padding: 24px 22px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--card); }
.panel-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); }
.tick-list { display: grid; gap: 11px; margin: 16px 0 0; padding: 0; list-style: none; }
.tick-list li { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.tick-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); margin-top: 8px; }
.tick-list.fit li::before { background: var(--green-2); }
.proof-note {
  margin-top: 16px; padding: 22px; border-radius: 14px;
  border: 1px solid rgba(122, 160, 255, .22); background: rgba(45, 105, 255, .07);
}
.proof-note p { margin: 11px 0 0; font-size: 15px; line-height: 1.65; color: var(--ink-2); max-width: 70ch; text-wrap: pretty; }
.other-services { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .02); font-size: 13px; color: var(--ink-3);
}
.chip:hover { border-color: rgba(122, 160, 255, .4); color: var(--ink); }
.chip-static { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-3); }

/* ── proof page ───────────────────────────────────────────── */

.proof-list { display: grid; gap: 14px; margin-top: 40px; }
.proof-item { padding: 26px 24px; border-radius: 15px; border: 1px solid var(--line-2); background: var(--card); }
.proof-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.proof-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px; background: rgba(45, 105, 255, .14); color: var(--blue-soft);
}
.proof-stack { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.proof-item h2 { margin: 14px 0 0; font-weight: 700; font-size: 21px; letter-spacing: -.022em; line-height: 1.2; }
.proof-item > p { margin: 10px 0 0; max-width: 72ch; font-size: 15px; line-height: 1.65; color: var(--muted-3); text-wrap: pretty; }
.proof-item .chips { margin-top: 16px; }

/* ── about ────────────────────────────────────────────────── */

.prose { margin-top: 26px; display: grid; gap: 18px; max-width: 64ch; }
.prose p { margin: 0; font-size: 17px; line-height: 1.75; color: #a3aeb9; text-wrap: pretty; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 13px; margin-top: 40px; }
.fact-v { margin-top: 9px; font-size: 15px; line-height: 1.5; color: #dbe3ea; font-weight: 500; }

/* ── advisor page ─────────────────────────────────────────── */

.advisor-main {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(36px, 4vw, 56px) clamp(24px, 4vw, 56px) clamp(60px, 7vw, 100px);
}
.advisor-intro { text-align: center; max-width: 62ch; margin: 0 auto 32px; }
.advisor-intro h1 { margin: 14px 0 0; font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.032em; line-height: 1.08; }
.advisor-intro p { margin: 14px 0 0; font-size: 16px; line-height: 1.68; color: var(--muted); text-wrap: pretty; }

.intake-grid { display: grid; gap: 18px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 960px) { .intake-grid { grid-template-columns: minmax(0, 1.9fr) minmax(300px, .9fr); } }
@media (min-width: 1500px) { .intake-grid { grid-template-columns: minmax(0, 2.3fr) minmax(340px, .8fr); } }

.intake {
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, .09); background: var(--card);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45); overflow: hidden;
  display: flex; flex-direction: column; height: min(78vh, 860px); min-height: 520px;
}
.intake-head {
  flex: none; padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: rgba(45, 105, 255, .08);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.intake-title { font-family: var(--display); font-weight: 700; font-size: 14.5px; }
.intake-status { font-family: var(--mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--green); margin-top: 2px; }
.intake-count { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--blue-soft); }
.bar { flex: none; height: 3px; background: rgba(255, 255, 255, .06); }
.bar > i { display: block; height: 3px; width: 0; background: linear-gradient(90deg, var(--blue), #79b0ff); transition: width .35s ease; }

.log { flex: 1; min-height: 0; overflow-y: auto; padding: 18px; display: grid; gap: 11px; align-content: start; }
.msg {
  max-width: 86%; padding: 12px 15px; border-radius: 14px;
  font-size: 14.5px; line-height: 1.55; animation: upa-fade .2s ease both;
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.msg-ai { justify-self: start; background: rgba(255, 255, 255, .035); color: #c9d3dc; border: 1px solid var(--line-2); }
.msg-me { justify-self: end; background: rgba(45, 105, 255, .18); color: #e6edf6; border: 1px solid rgba(122, 160, 255, .3); }
.msg-typing { color: var(--dim); font-family: var(--mono); font-size: 12px; letter-spacing: .1em; }

.composer { flex: none; border-top: 1px solid rgba(255, 255, 255, .06); padding: 14px 92px 16px 16px; }
@media (min-width: 960px) { .composer { padding: 14px 16px 16px; } }
.choices { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 11px; }
.choice {
  padding: 9px 14px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .03); color: var(--ink-3);
  font-size: 13.5px; font-weight: 500; font-family: inherit; cursor: pointer;
}
.choice:hover { border-color: rgba(122, 160, 255, .55); }
.choice[aria-pressed="true"] { border-color: rgba(122, 160, 255, .6); background: rgba(45, 105, 255, .18); color: #dce8ff; }

/* grouped section fields — everything that belongs together, asked together */
.fields {
  display: grid; gap: 14px; margin-bottom: 14px;
  max-height: min(42vh, 380px); overflow-y: auto; padding-right: 4px;
}
@media (min-width: 720px) { .fields { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; min-width: 0; }
.field:has(textarea), .field:has(.choices) { grid-column: 1 / -1; }
.field-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim);
}
.field-input {
  width: 100%; padding: 11px 13px; border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .11); background: rgba(255, 255, 255, .03);
  color: var(--ink); font-size: 14.5px; font-family: inherit; line-height: 1.45;
  outline: none; resize: vertical;
}
.field-input:focus { border-color: rgba(122, 160, 255, .55); }
.composer-actions .btn { margin-left: auto; }
.linkish[disabled] { opacity: .35; cursor: default; }
.linkish[disabled]:hover { color: #6c7883; }

.composer-row { display: flex; gap: 8px; align-items: flex-end; }
.composer textarea {
  flex: 1; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .11); background: rgba(255, 255, 255, .03);
  color: var(--ink); font-size: 14.5px; font-family: inherit; line-height: 1.45;
  outline: none; resize: none; max-height: 104px;
}
.composer textarea:focus { border-color: rgba(122, 160, 255, .55); }
.send {
  width: 42px; height: 42px; flex: none; border: 0; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26);
}
.send:hover { filter: brightness(1.1); }
.composer-actions { display: flex; gap: 14px; margin-top: 11px; flex-wrap: wrap; }
.linkish {
  font-size: 12.5px; color: #6c7883; cursor: pointer;
  background: none; border: 0; padding: 0; font-family: inherit;
}
.linkish:hover { color: var(--blue-pale); }
.intake-done { flex: none; border-top: 1px solid rgba(255, 255, 255, .06); padding: 16px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.aside { display: grid; gap: 14px; align-content: start; }
.aside-card { padding: 22px 20px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .09); background: var(--card); }
.aside-card.accent { border-color: rgba(122, 160, 255, .22); background: rgba(45, 105, 255, .07); padding: 20px; }
.numbered { display: grid; gap: 14px; margin: 16px 0 0; padding: 0; list-style: none; counter-reset: n; }
.numbered li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2); counter-increment: n;
}
.numbered li::before {
  content: counter(n); width: 22px; height: 22px; flex: none; border-radius: 6px;
  display: grid; place-items: center; background: rgba(74, 134, 255, .16);
  font-family: var(--mono); font-size: 10px; color: var(--blue-pale);
}
.plain-list { display: grid; gap: 9px; margin: 13px 0 0; padding: 0; list-style: none; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.contact-lines { margin-top: 10px; font-size: 14.5px; line-height: 1.75; color: #9aa5b0; }

/* ── footer ───────────────────────────────────────────────── */

.ftr { border-top: 1px solid var(--line); background: rgba(0, 0, 0, .28); }
.ftr-in {
  max-width: 1240px; margin: 0 auto; padding: 44px 24px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 32px;
}
.ftr-brand { display: flex; align-items: center; gap: 11px; }
.ftr-brand img { width: 46px; height: 46px; display: block; }
.ftr-brand span { font-family: var(--display); font-weight: 800; font-size: 18px; }
.ftr p { margin: 14px 0 0; max-width: 38ch; font-size: 14px; line-height: 1.6; color: var(--dim-2); }
.ftr-links { display: grid; gap: 9px; margin-top: 14px; font-size: 14px; }
.ftr-links a { color: var(--ink-3); width: fit-content; }
.ftr-links a:hover { color: var(--ink); }
.ftr-contact { margin-top: 14px; font-size: 14px; line-height: 1.9; color: var(--dim-2); }
.ftr-legal { max-width: 1240px; margin: 0 auto; padding: 0 24px 36px; font-size: 12.5px; color: var(--faint); }

/* ── chat widget ──────────────────────────────────────────── */

.fab-wrap {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
body.has-intake .fab-wrap { bottom: 104px; }
body.has-intake.chat-open .fab-wrap { bottom: 22px; }
.fab {
  width: 60px; height: 60px; border: 0; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 40px rgba(42, 97, 223, .42), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.fab:hover { filter: brightness(1.09); }

.chat {
  position: relative; width: 440px; height: 600px;
  max-width: calc(100vw - 44px); max-height: calc(100vh - 130px);
  display: flex; flex-direction: column; border-radius: 16px;
  border: 1px solid rgba(122, 160, 255, .24);
  background: linear-gradient(180deg, #0f1520, #0a0e15);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .65); overflow: hidden;
  animation: upa-rise .22s ease both;
}
.chat[hidden] { display: none; }
.chat.big { width: min(94vw, 880px); height: calc(100vh - 130px); }
.chat-grip {
  position: absolute; top: 0; left: 0; width: 26px; height: 26px;
  cursor: nwse-resize; z-index: 5; display: grid; place-items: center;
  color: rgba(160, 185, 230, .5); background: none; border: 0; padding: 0;
}
.chat-grip:hover { color: var(--blue-pale); }
.chat.big .chat-grip { display: none; }
.chat-head {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--line); background: rgba(45, 105, 255, .09);
}
.chat-head-btns { display: flex; gap: 4px; flex: none; }
.icon-btn {
  width: 28px; height: 28px; border: 0; border-radius: 7px; padding: 0;
  display: grid; place-items: center; color: #98a3ae; cursor: pointer;
  background: none; font-size: 16px; font-family: inherit;
}
.icon-btn:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.chat .log { padding: 16px; gap: 10px; }
.chat .msg { max-width: 84%; padding: 11px 14px; border-radius: 13px; font-size: 14px; }
.chat-composer { flex: none; padding: 12px 14px 14px; border-top: 1px solid rgba(255, 255, 255, .06); display: flex; gap: 8px; align-items: flex-end; }
.chat-composer textarea {
  flex: 1; padding: 11px 13px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .11); background: rgba(255, 255, 255, .03);
  color: var(--ink); font-size: 14px; font-family: inherit; line-height: 1.4;
  outline: none; resize: none; max-height: 96px;
}
.chat-composer textarea:focus { border-color: rgba(122, 160, 255, .55); }
.chat-composer .send { width: 40px; height: 40px; }
.chat-foot { flex: none; padding: 0 16px 14px; font-size: 11px; color: var(--faint); line-height: 1.4; }

/* ── misc ─────────────────────────────────────────────────── */

.note { margin: 16px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--faint); }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue-deep); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; color: #fff; }
.local-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 13px; margin-top: 32px; }
.local-list .card p { margin: 6px 0 0; font-size: 13.5px; }

/* ── demo video ─────────────────────────────────────────────────────────── */
.demo-figure { margin: 30px 0 0; }
.demo-video {
  display: block; width: 100%; height: auto; max-width: 980px;
  border: 1px solid var(--line-2); border-radius: 14px;
  background: #000; box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}
.demo-figure figcaption {
  margin-top: 14px; color: var(--muted); font-size: 14px; max-width: 980px;
}


/* ── assistant quick replies ─────────────────────────────── */
.chat-chips{display:flex;flex-wrap:wrap;gap:6px;padding:8px 12px 0;}
.chat-chips[hidden]{display:none;}
.chat-chips .chip{
  font:inherit;font-size:.78rem;line-height:1.25;cursor:pointer;
  padding:6px 11px;border-radius:999px;
  border:1px solid rgba(37,99,235,.45);
  background:rgba(37,99,235,.10);color:#cfe0ff;
  transition:background .15s ease,border-color .15s ease,color .15s ease;
}
.chat-chips .chip:hover,.chat-chips .chip:focus-visible{
  background:rgba(37,99,235,.24);border-color:rgba(37,99,235,.85);color:#fff;
}
@media (max-width:520px){.chat-chips .chip{font-size:.74rem;padding:5px 9px;}}
