/* BuyersLine shared stylesheet: landing, report, login. Mulish, navy #26213F + orange #FC4C02.
   Tokens on :root (light). Dark via prefers-color-scheme unless data-theme="light",
   and again under data-theme="dark" so an explicit choice wins both ways. */

:root {
              --band: #F4F5F9;
--navy-ink: #FFFFFF;
--navy: #26213F;
--brand-strong: #C93D00;
--brand-ink: #FFFFFF;
--brand: #FC4C02;
--ground: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F4F5F9;
  --ink: #26213F;
  --muted: #5C6070;
  --rule: #E7E8E9;
  --accent: #C93D00;
  --accent-ink: #FFFFFF;
  --accent-soft: #FFEDE3;
  --highlight: #FC4C02;
  --highlight-ink: #FC4C02;
  --verified: #1E7A4C;
  --verified-bg: #E1F2E8;
  --caution: #8A5A00;
  --caution-bg: #FAEFD6;
  --critical: #A1262B;
  --critical-bg: #FAE3E1;
  --focus: #FC4C02;
  --shadow: 0 1px 2px rgba(38, 33, 63, .04), 0 8px 24px rgba(38, 33, 63, .06);

  --font-display: "Mulish", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Mulish", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "Mulish", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --gutter: 20px;
  --maxw: 1120px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
                --band: #221D3A;
--navy-ink: #26213F;
--navy: #F4F3F8;
--brand-strong: #C93D00;
--brand-ink: #FFFFFF;
--brand: #FC4C02;
--ground: #1B1730;
    --surface: #26213F;
    --surface-2: #2F2A4D;
    --ink: #F4F3F8;
    --muted: #B8B5C9;
    --rule: #3B3659;
    --accent: #FF8A4C;
    --accent-ink: #1B1730;
    --accent-soft: #3A2635;
    --highlight: #FF6A26;
    --highlight-ink: #FF8A4C;
    --verified: #7FD1A2;
    --verified-bg: #173326;
    --caution: #E8B75C;
    --caution-bg: #33270F;
    --critical: #F09590;
    --critical-bg: #3A1A1B;
    --focus: #FF8A4C;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
              --band: #221D3A;
--navy-ink: #26213F;
--navy: #F4F3F8;
--brand-strong: #C93D00;
--brand-ink: #FFFFFF;
--brand: #FC4C02;
--ground: #1B1730;
  --surface: #26213F;
  --surface-2: #2F2A4D;
  --ink: #F4F3F8;
  --muted: #B8B5C9;
  --rule: #3B3659;
  --accent: #FF8A4C;
  --accent-ink: #1B1730;
  --accent-soft: #3A2635;
  --highlight: #FF6A26;
  --highlight-ink: #FF8A4C;
  --verified: #7FD1A2;
  --verified-bg: #173326;
  --caution: #E8B75C;
  --caution-bg: #33270F;
  --critical: #F09590;
  --critical-bg: #3A1A1B;
  --focus: #FF8A4C;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
small, .small { font-size: .875rem; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.num { font-variant-numeric: tabular-nums; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin: .2em 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.hp-field {
  position: absolute !important;
  left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 14px; border-radius: var(--radius-sm); z-index: 100;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

section { padding-block: 56px; }
.section-rule { border-top: 1px solid var(--rule); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .75rem;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 92%, transparent);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--rule);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--ground); }
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 60px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
  min-height: 44px;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.wm-accent { color: var(--accent); }
.site-nav { display: none; gap: 4px; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  padding: 10px 12px; border-radius: var(--radius-sm); min-height: 44px;
  display: inline-flex; align-items: center;
}
.site-nav a:hover { background: var(--accent-soft); }
@media (min-width: 820px) { .site-nav { display: flex; } }

.header-tools { display: inline-flex; align-items: center; gap: 8px; }
.theme-toggle{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;flex:none;border:1px solid var(--rule);border-radius:8px;background:var(--surface);color:var(--ink);cursor:pointer;padding:0}
.theme-toggle:hover{border-color:var(--accent);color:var(--accent)}
.theme-toggle:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.theme-toggle svg{width:20px;height:20px}
.theme-toggle .icon-moon{display:none}
:root[data-theme="light"] .theme-toggle .icon-sun{display:none}
:root[data-theme="light"] .theme-toggle .icon-moon{display:block}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.lang-toggle button {
  font: 600 .9rem/1 var(--font-mono);
  min-width: 48px; min-height: 44px;
  border: 0; background: transparent; color: var(--muted);
  cursor: pointer; padding: 0 12px;
}
.lang-toggle button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
.lang-toggle button + button { border-left: 1px solid var(--rule); }

.demo-banner {
  background: var(--caution-bg);
  color: var(--caution);
  border-bottom: 1px solid var(--rule);
  text-align: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  padding: 6px var(--gutter);
  letter-spacing: .02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 20px;
  font: 600 1rem/1.2 var(--font-body);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 86%, var(--ink)); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--rule); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--accent); border-color: transparent; padding-inline: 10px; }
.btn-ghost:hover { background: var(--accent-soft); }
.btn-small { min-height: 44px; padding: 8px 14px; font-size: .95rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Cards, chips, tags ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card-flat { box-shadow: none; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 .8rem/1.2 var(--font-body);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid transparent;
  white-space: nowrap;
}
.chip-muted { background: var(--surface-2); color: var(--muted); }
.chip-caution { background: var(--caution-bg); color: var(--caution); }
.chip-verified { background: var(--verified-bg); color: var(--verified); }
.chip-critical { background: var(--critical-bg); color: var(--critical); }

.stamp {
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 .78rem/1.2 var(--font-mono);
  letter-spacing: .02em;
  color: var(--verified);
  background: var(--verified-bg);
  border: 1px solid color-mix(in srgb, var(--verified) 35%, transparent);
  border-radius: 4px;
  padding: 4px 8px;
  white-space: nowrap;
}
.stamp svg { width: 14px; height: 14px; flex: none; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; }
.field label, .field .label, legend {
  font-weight: 600; font-size: .95rem; color: var(--ink);
}
.field .hint, .hint { font-size: .87rem; color: var(--muted); margin: 0; }
.field .req { color: var(--critical); font-weight: 600; }
.field .opt { color: var(--muted); font-weight: 400; font-size: .85rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="password"], input[type="search"], select, textarea {
  width: 100%;
  font: 400 16px/1.4 var(--font-body);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
textarea { min-height: 96px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--accent);
}
.field.has-error input, .field.has-error select, .field.has-error textarea,
fieldset.has-error { border-color: var(--critical); }
.field-error { color: var(--critical); font-size: .87rem; font-weight: 600; margin: 0; }

fieldset {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px;
  margin: 0 0 16px;
  min-width: 0;
}
fieldset.plain { border: 0; padding: 0; }
fieldset.plain.has-error { border-left: 3px solid var(--critical); padding-left: 12px; }
legend { padding: 0 6px; }
fieldset.plain > legend { padding: 0; margin-bottom: 8px; }

.choice-list { display: grid; gap: 8px; }
.choice-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.choice {
  display: flex; align-items: flex-start; gap: 10px;
  min-height: 44px; padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 400;
}
.choice:hover { border-color: var(--accent); }
.choice input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--accent); }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.choice-text { font-size: .98rem; line-height: 1.4; }
.consent .choice-text { font-size: .9rem; }

.grid-2 { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.input-money { position: relative; }
.input-money::before {
  content: "$"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; font-variant-numeric: tabular-nums;
}
.input-money input { padding-left: 26px; font-variant-numeric: tabular-nums; }

/* ---------- Callouts & status ---------- */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 16px;
}
.callout > :last-child { margin-bottom: 0; }
.callout-caution { border-color: var(--caution); background: var(--caution-bg); color: var(--ink); }
.callout-critical { border-color: var(--critical); background: var(--critical-bg); }
.callout-verified { border-color: var(--verified); background: var(--verified-bg); }
.callout h3, .callout h4 { margin-bottom: .35em; }

.status { margin: 12px 0 0; }
.status:empty { display: none; }
.status .callout { margin: 0; }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--rule); border-top-color: var(--accent);
  animation: spin .9s linear infinite; display: inline-block; vertical-align: -3px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Tables ---------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
caption { text-align: left; padding: 10px 12px; color: var(--muted); font-size: .87rem; caption-side: top; }
th, td { padding: 10px 12px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
thead th {
  font: 600 .78rem/1.3 var(--font-mono); text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); background: var(--surface-2); white-space: nowrap;
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 600; }
td.money, th.money {
  text-align: right; white-space: nowrap;
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
}
td.note-cell { color: var(--muted); font-style: italic; }
.table-min { min-width: 560px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--surface);
  padding-block: 40px 56px;
  font-size: .9rem;
  color: var(--muted);
}
.site-footer h2 { font-size: 1rem; margin-bottom: .75rem; }
.site-footer p { max-width: 80ch; }
.disclosures p { margin-bottom: .8em; }
.disclosures strong { color: var(--ink); }
.eho { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.eho svg { width: 22px; height: 22px; }

/* ---------- Landing ---------- */
.hero { padding-block: 40px 48px; }
.hero-grid { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.25fr .9fr; gap: 48px; } }
.hero h1 { max-width: 18ch; }
.hero .lede { margin-bottom: 1.5rem; }
.hero-note { margin-top: 14px; font-size: .9rem; color: var(--muted); }

.example-card { position: relative; padding: 0; overflow: hidden; }
.example-card .example-head {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px dashed var(--rule); background: var(--surface-2);
}
.example-card .example-body { padding: 16px; }
.example-label {
  font: 600 .72rem/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--rule); padding: 5px 8px; border-radius: 4px;
}
.example-community { font-weight: 600; margin: 0 0 2px; }
.example-value {
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1.15;
  color: var(--highlight-ink); margin: 10px 0 6px;
}
.example-pay {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 14px;
  background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius-sm); overflow: hidden;
}
.example-pay div { background: var(--surface); padding: 8px 10px; }
.example-pay span { display: block; font-size: .75rem; color: var(--muted); }
.example-pay strong { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 500; }


.two-col { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: .8fr 1.2fr; gap: 48px; } }

.result-figure {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1.1;
  color: var(--highlight-ink); font-variant-numeric: tabular-nums;
  margin: 4px 0 8px;
}
.result-sub { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.result-label { font-size: .85rem; color: var(--muted); margin: 0; }

.form-group { margin-bottom: 28px; }
.form-group-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.form-group-head .n {
  font: 600 .8rem/1 var(--font-mono); color: var(--accent);
  border: 1px solid var(--accent); border-radius: 4px; padding: 5px 7px; flex: none;
}
.form-group-head h3 { margin: 0; }

.visit-row {
  display: grid; gap: 0 12px; grid-template-columns: 1fr;
  padding: 12px; border: 1px solid var(--rule); border-radius: var(--radius-sm);
  margin-bottom: 10px; background: var(--surface-2);
}
@media (min-width: 720px) { .visit-row { grid-template-columns: 1fr 1fr auto; align-items: end; } }
.visit-row .field { margin-bottom: 8px; }
.visit-row .row-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: space-between; margin-bottom: 8px; }
@media (min-width: 720px) { .visit-row .row-actions { grid-column: 1 / -1; } }

.are-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .are-grid { grid-template-columns: 1fr 1fr; } }
.are-list { list-style: none; padding: 0; margin: 0; }
.are-list li { padding: 12px 0 12px 30px; border-top: 1px solid var(--rule); position: relative; margin: 0; }
.are-list li::before {
  content: ""; position: absolute; left: 4px; top: 19px; width: 12px; height: 12px; border-radius: 2px;
}
.are-yes li::before { background: var(--verified); }
.are-no li::before { background: transparent; border: 2px solid var(--critical); border-radius: 50%; }
.are-list strong { display: block; }

.orb-section { padding-block: 40px; }

/* ---------- Report ---------- */
.report-head { padding-block: 32px 8px; }
.report-meta {
  display: grid; gap: 1px; grid-template-columns: 1fr;
  background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
  margin-top: 20px;
}
@media (min-width: 640px) { .report-meta { grid-template-columns: repeat(3, 1fr); } }
.report-meta > div { background: var(--surface); padding: 12px 14px; }
.report-meta dt { font: 600 .72rem/1.3 var(--font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.report-meta dd { margin: 4px 0 0; font-weight: 600; }
.report-meta dd .muted { font-weight: 400; }

.summary-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.summary-list li { margin: 0; }

.glance {
  font-size: 1.1rem; padding: 14px 16px; border: 1px solid var(--rule);
  border-radius: var(--radius); background: var(--surface);
}
.glance strong { font-variant-numeric: tabular-nums; }

.opening { font-size: 1.12rem; max-width: 68ch; }

.item { padding-block: 36px; border-top: 1px solid var(--rule); }
.item-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.rank {
  flex: none; width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: grid; place-items: center; background: var(--ink); color: var(--ground);
  font: 700 1.1rem/1 var(--font-display);
}
.item-title { margin: 0 0 4px; }
.item-sub { color: var(--muted); margin: 0; }
.home-line {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: .9rem;
  background: var(--surface-2); border-radius: var(--radius-sm); padding: 8px 12px; margin: 12px 0 16px;
  display: inline-block; max-width: 100%;
}
.fit-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 20px; }
@media (min-width: 720px) { .fit-grid { grid-template-columns: auto 1fr 1fr; align-items: start; } }
.fit-score {
  font: 800 2rem/1 var(--font-display); color: var(--accent); font-variant-numeric: tabular-nums;
}
.fit-score small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.fit-list h4 { font-size: .85rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.fit-list ul { margin: 0; }
.fit-good li::marker { color: var(--verified); }
.fit-gap li::marker { color: var(--caution); }

.incentives { display: grid; gap: 12px; margin: 16px 0; }
.incentives > *, .pick-group > * { min-width: 0; }
.incentive .chip, .summary-list .chip { white-space: normal; }
.incentive {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 14px 16px;
}
.incentive-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.incentive-headline { font-weight: 600; margin: 4px 0; }
.incentive-value {
  font: 700 1.3rem/1.2 var(--font-display); color: var(--highlight-ink); font-variant-numeric: tabular-nums; margin: 2px 0 6px;
}
.incentive-dates { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: .85rem; color: var(--muted); margin: 6px 0 0; padding: 0; list-style: none; }
.incentive-dates li { margin: 0; }
.incentive-dates .mono { color: var(--ink); }
.incentive-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pick-group {
  border: 2px dashed var(--accent); border-radius: var(--radius); padding: 12px;
  display: grid; gap: 10px; background: color-mix(in srgb, var(--accent-soft) 45%, transparent);
}
.pick-label { font: 600 .8rem/1.2 var(--font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin: 0; }
.line-facts { list-style: none; padding: 0; margin: 12px 0 16px; display: grid; gap: 6px; font-size: .95rem; }
.line-facts li { margin: 0; }
.line-facts .k { color: var(--muted); }
.take { border-left: 3px solid var(--highlight); padding: 4px 0 4px 14px; margin: 16px 0 0; max-width: 70ch; }
.take .k { font: 600 .75rem/1.3 var(--font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); display: block; }

.pending-state { padding-block: 64px; text-align: left; }

.note-ai { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- BuyersLine skin: Mulish, navy + orange, pill buttons, banded sections ---------- */
body { font-weight: 500; }
h1, h2, h3, h4 { letter-spacing: -0.02em; }
h1, h2 { font-weight: 900; }
h3 { font-weight: 800; }
h1 { line-height: 1.08; }
.hl { color: var(--highlight); }
.lede { color: var(--muted); }
.eyebrow { font-family: var(--font-body); font-weight: 800; letter-spacing: .08em; color: var(--accent); }
.site-header { border-bottom: 0; box-shadow: 0 1px 0 var(--rule), 0 6px 18px rgba(38, 33, 63, .05); }
.brand { font-weight: 900; letter-spacing: -0.03em; }
.wm-accent { color: var(--highlight); }
.site-nav a { font-weight: 600; }
.btn { border-radius: 40px; font-weight: 800; min-height: 52px; padding: 12px 28px; font-size: 1.1875rem; }
.btn-small { min-height: 44px; padding: 8px 18px; font-size: 1rem; }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--brand) 86%, #000); }
.btn-small.btn-primary { background: var(--brand-strong); }
.btn-secondary { background: var(--navy); color: var(--navy-ink); border-color: var(--navy); }
.btn-secondary:hover { background: color-mix(in srgb, var(--navy) 85%, var(--brand)); color: var(--navy-ink); border-color: transparent; }
.btn-ghost { color: var(--accent); }
.lang-toggle, .theme-toggle { border-radius: 40px; }
.lang-toggle button[aria-pressed="true"] { background: var(--navy); color: var(--navy-ink); }
.card { background: var(--surface-2); border-color: transparent; box-shadow: none; }
.example-card { background: var(--surface); border: 1px solid var(--rule); box-shadow: var(--shadow); }
.example-card .example-head { background: var(--surface-2); border-bottom-style: solid; }
.example-value, .result-figure { color: var(--highlight); font-weight: 900; }
.example-pay strong, .result-sub { font-family: var(--font-body); font-weight: 800; }
.stamp { border-radius: 999px; font-family: var(--font-body); font-weight: 700; padding: 4px 10px; }
.example-label { border-radius: 999px; font-family: var(--font-body); font-weight: 800; }
main > section.section-rule { border-top: 0; }
main > section:nth-of-type(even) { background: var(--band); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="password"], input[type="search"], select, textarea { border-radius: 12px; }


.home-search[hidden] { display: none !important; }

/* ---------- Workflow circuit (animated by flow.js; fully readable without it) ----------
   A deliberately dark "signal" band in both themes, so its colors are local and fixed.
   Three lanes (you / AI / licensed agent); each step's node sits in its lane, its card below.
   flow.js draws the path between nodes and moves the signal along it. */
main > section.flow, .flow { /* beats the alternating band rule on main > section */
  --fx-bg: #120F24; --fx-bg-2: #1D1836; --fx-ink: #F4F3F8; --fx-muted: #B8B5C9; --fx-faint: rgba(244, 243, 248, .5);
  --fx-line: rgba(244, 243, 248, .09); --fx-card: rgba(255, 255, 255, .035); --fx-card-hi: rgba(255, 255, 255, .07);
  --fx-you: #E8E6F2; --fx-ai: #FF7A3D; --fx-agent: #4ADE9A;
  --lane-h: 62px; --node: 50px; --lanes-w: 118px;
  position: relative; overflow: hidden; color: var(--fx-ink);
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(252, 76, 2, .16), transparent 60%),
    radial-gradient(700px 360px at 100% 100%, rgba(74, 222, 154, .09), transparent 60%),
    linear-gradient(180deg, var(--fx-bg-2), var(--fx-bg));
}
.flow::before { /* blueprint grid */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(var(--fx-line) 1px, transparent 1px), linear-gradient(90deg, var(--fx-line) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%); mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
}
.flow .wrap { position: relative; }
.flow-head { max-width: 720px; }
.flow .eyebrow { color: var(--fx-ai); }
.flow h2 { color: var(--fx-ink); margin-bottom: 8px; }
.flow-sub { color: var(--fx-muted); margin: 0; max-width: 62ch; }

.flow-scroll { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; margin: 20px calc(-1 * var(--gutter)) 0; padding: 8px var(--gutter) 14px; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .25) transparent; }
.flow-track { position: relative; min-width: 1060px; padding-left: var(--lanes-w); }

.flow-lanes { position: absolute; left: 0; right: 0; top: 0; height: calc(var(--lane-h) * 3); display: grid; grid-template-rows: repeat(3, 1fr); }
.flow-lane { position: relative; display: flex; align-items: center; border-top: 1px dashed var(--fx-line); }
.flow-lane:last-child { border-bottom: 1px dashed var(--fx-line); }
.flow-lane span { font: 800 .72rem/1.2 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--fx-faint); width: calc(var(--lanes-w) - 14px); }
.flow-lane[data-actor="ai"] span { color: rgba(255, 122, 61, .8); }
.flow-lane[data-actor="agent"] span { color: rgba(74, 222, 154, .8); }

.flow-circuit { position: absolute; left: 0; top: 0; width: 100%; height: calc(var(--lane-h) * 3); overflow: visible; pointer-events: none; z-index: 1; }
.flow-circuit .c-base { fill: none; stroke: rgba(244, 243, 248, .16); stroke-width: 2; stroke-dasharray: 2 6; stroke-linecap: round; }
.flow-circuit .c-progress { fill: none; stroke-width: 3; stroke-linecap: round; }
.flow-circuit .c-tail { fill: none; stroke-width: 5; stroke-linecap: round; opacity: .9; filter: blur(1.5px); }
.flow-circuit .c-comet { fill: #fff; filter: drop-shadow(0 0 6px #FF7A3D) drop-shadow(0 0 14px rgba(252, 76, 2, .8)); }

.flow-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; position: relative; z-index: 2; }
.flow-step { position: relative; margin: 0; padding-top: calc(var(--lane-h) * 3 + 18px); scroll-snap-align: center; min-width: 0; }
.flow-step[data-actor="you"] { --lane: 0; --tone: var(--fx-you); --tone-rgb: 232, 230, 242; }
.flow-step[data-actor="ai"] { --lane: 1; --tone: var(--fx-ai); --tone-rgb: 255, 122, 61; }
.flow-step[data-actor="agent"] { --lane: 2; --tone: var(--fx-agent); --tone-rgb: 74, 222, 154; }

.flow-node {
  position: absolute; left: 50%; top: calc(var(--lane) * var(--lane-h) + (var(--lane-h) - var(--node)) / 2); transform: translateX(-50%);
  width: var(--node); height: var(--node); border-radius: 16px; display: grid; place-items: center;
  color: var(--tone); background: #1A1531; border: 1px solid rgba(var(--tone-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(18, 15, 36, .9), 0 8px 24px rgba(0, 0, 0, .35);
  transition: background-color .4s, color .4s, box-shadow .4s, transform .4s, opacity .4s;
}
.flow-node svg { width: 24px; height: 24px; }
.flow-num { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--fx-ink); color: #120F24; font: 900 .7rem/20px var(--font-body); text-align: center; }

.flow-card {
  display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 14px 14px 12px; border-radius: 16px;
  background: var(--fx-card); border: 1px solid var(--fx-line); position: relative;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background-color .4s, border-color .4s, box-shadow .4s, opacity .4s, transform .4s;
}
.flow-card::before { /* the lane tick that ties a card to its node */
  content: ""; position: absolute; left: 14px; right: 14px; top: -1px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--tone), transparent); opacity: .55;
}
.flow-actor { align-self: flex-start; font: 800 .68rem/1.2 var(--font-body); letter-spacing: .07em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; color: var(--tone); background: rgba(var(--tone-rgb), 0.13); }
.flow-t { font-weight: 800; font-size: .98rem; line-height: 1.25; color: var(--fx-ink); }
.flow-p { font-size: .86rem; color: var(--fx-muted); line-height: 1.4; }
.flow-live { width: 100%; height: 34px; margin-top: auto; padding-top: 6px; overflow: visible; }

/* Micro-demos: a finished still at rest; they play only on the active step. */
.flow-live * { vector-effect: non-scaling-stroke; }
.lv-track { fill: rgba(255, 255, 255, .06); }
.lv-fill { fill: var(--tone); opacity: .8; transform-box: fill-box; transform-origin: left center; }
.lv-caret { fill: var(--tone); opacity: 0; }
.lv-arc-bg { fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 5; stroke-linecap: round; }
.lv-arc { fill: none; stroke: var(--tone); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 30; }
.lv-needle { stroke: var(--fx-ink); stroke-width: 2; stroke-linecap: round; transform-origin: 60px 31px; }
.lv-hub { fill: var(--fx-ink); }
.lv-ring { fill: none; stroke: rgba(var(--tone-rgb), 0.35); stroke-width: 1; }
.lv-sweep { fill: rgba(var(--tone-rgb), 0.35); transform-origin: 60px 17px; }
.lv-blip { fill: var(--tone); }
.lv-doc { fill: rgba(255, 255, 255, .06); stroke: rgba(255, 255, 255, .18); stroke-width: 1; }
.lv-lines { stroke: rgba(255, 255, 255, .28); stroke-width: 2; stroke-linecap: round; }
.lv-seal { fill: rgba(var(--tone-rgb), 0.18); stroke: var(--tone); stroke-width: 1.5; }
.lv-check { fill: none; stroke: var(--tone); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 100; stroke-dashoffset: 0; }
.lv-base { stroke: rgba(255, 255, 255, .2); stroke-width: 1; }
.lv-bar { fill: var(--tone); transform-box: fill-box; transform-origin: center bottom; }
.lv-bar.r1 { opacity: .55; } .lv-bar.r2 { opacity: .75; }
.lv-bubble { fill: rgba(var(--tone-rgb), 0.14); stroke: var(--tone); stroke-width: 1.4; }
.lv-dot { fill: var(--tone); }
.lv-house { fill: rgba(var(--tone-rgb), 0.12); stroke: var(--tone); stroke-width: 1.6; stroke-linejoin: round; stroke-dasharray: 100; stroke-dashoffset: 0; }
.lv-door { fill: var(--tone); opacity: .8; }
.lv-spark { fill: var(--fx-ink); opacity: .7; }

/* Animated state (only once flow.js runs): the pending steps dim, the signal lights the active one. */
.flow.is-animated .flow-step .flow-node { opacity: .5; }
.flow.is-animated .flow-step .flow-card { opacity: .55; }
.flow.is-animated .flow-step.is-done .flow-node, .flow.is-animated .flow-step.is-active .flow-node,
.flow.is-animated .flow-step.is-done .flow-card, .flow.is-animated .flow-step.is-active .flow-card { opacity: 1; }
.flow-step.is-done .flow-node { background: #1A1531; background-image: linear-gradient(rgba(var(--tone-rgb), .16), rgba(var(--tone-rgb), .16)); }
.flow-step.is-active .flow-node { background: var(--tone); color: #120F24; transform: translateX(-50%) scale(1.12); box-shadow: 0 0 0 4px rgba(18, 15, 36, .9), 0 0 0 9px rgba(var(--tone-rgb), 0.22), 0 0 34px rgba(var(--tone-rgb), 0.55); }
.flow-step.is-active .flow-card { background: var(--fx-card-hi); border-color: rgba(var(--tone-rgb), 0.45); box-shadow: 0 18px 40px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(var(--tone-rgb), 0.12); transform: translateY(-4px); }
.flow-step.is-active .flow-card::before { opacity: 1; }

.flow-step.is-active .lv-fill { animation: lvGrow .9s cubic-bezier(.3, .7, .2, 1) both; }
.flow-step.is-active .lv-fill.f2 { animation-delay: .25s; } .flow-step.is-active .lv-fill.f3 { animation-delay: .5s; }
.flow-step.is-active .lv-caret { animation: lvBlink .8s steps(1) .9s infinite; }
.flow-step.is-active .lv-arc { animation: lvArc 1.2s cubic-bezier(.3, .7, .2, 1) both; }
.flow-step.is-active .lv-needle { animation: lvNeedle 1.2s cubic-bezier(.3, .7, .2, 1) both; }
.flow-step.is-active .lv-sweep { animation: lvSpin 1.6s linear infinite; }
.flow-step.is-active .lv-blip { animation: lvBlip 1.6s ease-out infinite; }
.flow-step.is-active .lv-blip.b2 { animation-delay: .55s; } .flow-step.is-active .lv-blip.b3 { animation-delay: 1.05s; }
.flow-step.is-active .lv-seal { animation: lvPop .5s .35s cubic-bezier(.3, 1.6, .5, 1) both; }
.flow-step.is-active .lv-check { animation: lvDraw .5s .7s ease-out both; }
.flow-step.is-active .lv-bar { animation: lvRise .7s cubic-bezier(.3, .7, .2, 1) both; }
.flow-step.is-active .lv-bar.r2 { animation-delay: .18s; } .flow-step.is-active .lv-bar.r3 { animation-delay: .36s; }
.flow-step.is-active .lv-dot { animation: lvBounce 1s ease-in-out infinite; }
.flow-step.is-active .lv-dot.d2 { animation-delay: .15s; } .flow-step.is-active .lv-dot.d3 { animation-delay: .3s; }
.flow-step.is-active .lv-house { animation: lvDrawHouse 1s ease-out both; }
.flow-step.is-active .lv-door { animation: lvGlow 1.4s .8s ease-in-out infinite alternate; }
.flow-step.is-active .lv-spark { animation: lvTwinkle 1.2s ease-in-out infinite; }
.flow-step.is-active .lv-spark.s2 { animation-delay: .4s; } .flow-step.is-active .lv-spark.s3 { animation-delay: .8s; }

@keyframes lvGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes lvBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes lvArc { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 30; } }
@keyframes lvNeedle { from { transform: rotate(-95deg); } to { transform: rotate(0deg); } }
@keyframes lvSpin { to { transform: rotate(360deg); } }
@keyframes lvBlip { 0% { opacity: 0; r: 1; } 30% { opacity: 1; r: 2.6; } 100% { opacity: 0; r: 2; } }
@keyframes lvPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes lvDraw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes lvRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes lvBounce { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-4px); } }
@keyframes lvDrawHouse { from { stroke-dashoffset: 100; fill-opacity: 0; } 70% { fill-opacity: 0; } to { stroke-dashoffset: 0; fill-opacity: 1; } }
@keyframes lvGlow { from { opacity: .45; } to { opacity: 1; } }
@keyframes lvTwinkle { 0%, 100% { opacity: .15; } 50% { opacity: .9; } }
.lv-seal, .lv-check { transform-box: fill-box; transform-origin: center; }

@media (min-width: 1140px) { .flow-scroll { overflow: visible; margin: 20px 0 0; padding: 8px 0 0; } .flow-track { min-width: 0; } }
@media (max-width: 480px) { .flow { --lanes-w: 92px; } .flow-track { min-width: 1180px; } }
@media (prefers-reduced-motion: reduce) {
  .flow-node, .flow-card { transition: none; }
  .flow-step.is-active .flow-live * { animation: none !important; }
}


/* ---------- Mobile menu (nav.js) ---------- */
.nav-burger { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; padding: 0; border: 1px solid var(--rule); border-radius: 40px; background: var(--surface); color: var(--ink); cursor: pointer; }
.nav-burger-bars { position: relative; width: 18px; height: 12px; display: block; }
.nav-burger-bars span { position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s, top .2s; }
.nav-burger-bars span:nth-child(1) { top: 0; }
.nav-burger-bars span:nth-child(2) { top: 5px; }
.nav-burger-bars span:nth-child(3) { top: 10px; }
body.nav-open .nav-burger-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.nav-open .nav-burger-bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }
.nav-scrim { position: fixed; inset: 0; background: rgba(38, 33, 63, .35); z-index: 40; }
@media (min-width: 820px) { .nav-burger { display: none; } .nav-scrim { display: none; } }
@media (max-width: 819px) {
  body.nav-open .site-nav {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; left: 0; right: 0; top: 100%;
    padding: 10px var(--gutter) 18px; background: var(--ground);
    border-bottom: 1px solid var(--rule); box-shadow: var(--shadow); z-index: 60;
  }
  body.nav-open .site-nav a { min-height: 48px; font-size: 1.1rem; padding-inline: 8px; border-radius: 12px; }
  .header-tools { gap: 6px; }
  .brand .wordmark { font-size: 1.15rem; }
}

/* ---------- Install bar (install.js) ---------- */
.install-bar {
  position: fixed; left: max(12px, env(safe-area-inset-left)); right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 70; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 14px; border-radius: 18px; background: var(--surface); color: var(--ink);
  border: 1px solid var(--rule); box-shadow: 0 10px 30px rgba(38, 33, 63, .18); max-width: 560px; margin-inline: auto;
}
.install-bar img { border-radius: 10px; flex: none; }
.install-text { display: grid; gap: 2px; flex: 1 1 180px; min-width: 0; font-size: .95rem; }
.install-text span { color: var(--muted); }
.install-actions { display: flex; gap: 6px; margin-left: auto; }
body.has-install-bar { padding-bottom: 120px; }

/* ---------- Touch and small screens ---------- */
.flow-actor, .example-label { font-size: .75rem; }
@media (display-mode: standalone) { .site-header { padding-top: env(safe-area-inset-top); } }
@media (max-width: 480px) {
  section { padding-block: 40px; }
  .btn { width: 100%; }
  .btn.btn-small, .install-actions .btn, .home-card .btn { width: auto; }
  .btn-row { flex-direction: column; }
}


/* ---------- Home search widget (search-widget.js), shared by the landing and /search ---------- */
.search-form { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; align-items: end; margin-top: 18px; }
.search-form .field { margin: 0; }
.search-form .go { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .bls-full .search-form { grid-template-columns: 1fr .75fr .9fr .8fr 1.25fr auto; }
  .bls-compact .search-form { grid-template-columns: 1.1fr .8fr .9fr .8fr auto; }
  .search-form .go { grid-column: auto; }
}
.search-error { color: var(--critical); margin-top: 8px; }
.results-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding-block: 14px 10px; }
.results-count { font-weight: 800; margin: 0; }
.results { display: grid; gap: 16px; grid-template-columns: 1fr; padding-bottom: 24px; }
@media (min-width: 980px) { .results { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; } }
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); background: var(--surface-2); height: 300px; order: 1; }
.bls .list { display: grid; gap: 12px; order: 2; align-content: start; }
@media (min-width: 980px) {
  .map-wrap { position: sticky; top: 76px; order: 2; }
  .bls .list { order: 1; }
  .bls-full .map-wrap { height: calc(100vh - 100px); min-height: 480px; }
  .bls-compact .map-wrap { height: 540px; }
  .bls-compact .list { max-height: 540px; overflow: auto; padding-right: 4px; }
}
.bl-map { position: absolute; inset: 0; }
.bl-map.leaflet-touch .leaflet-bar a { width: 44px; height: 44px; line-height: 44px; font-size: 22px; }
.home-card { display: grid; gap: 6px; padding: 16px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--rule); cursor: pointer; transition: border-color .15s, box-shadow .15s; text-align: left; font: inherit; color: inherit; width: 100%; }
.home-card:hover, .home-card.is-selected { border-color: var(--brand); box-shadow: var(--shadow); }
.home-card .price { font-weight: 900; font-size: 1.45rem; color: var(--ink); letter-spacing: -.02em; }
.home-card .specs { font-weight: 700; color: var(--ink); }
.home-card .addr { color: var(--muted); }
.home-card .builder { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.home-card .meta { font-size: .85rem; color: var(--muted); }
.home-card .cta { justify-self: start; margin-top: 4px; }
.price-pin { background: var(--brand); color: #fff; font: 800 12px/1 var(--font-body); padding: 6px 8px; border-radius: 999px; white-space: nowrap; box-shadow: 0 2px 6px rgba(38, 33, 63, .35); border: 2px solid #fff; transform: translate(-50%, -50%); display: inline-block; }
.price-pin.is-selected { background: var(--navy); color: var(--navy-ink); }
.leaflet-div-icon.pin-host { background: transparent; border: 0; }
.state-box { padding: 24px 22px; border-radius: var(--radius); background: var(--surface-2); }
.state-box h3 { font-size: 1.2rem; margin-bottom: .4em; }
.source-note { font-size: .82rem; color: var(--muted); }
.search-more { margin: 4px 0 10px; }
.search-more:empty { display: none; }
.leaflet-container { font-family: var(--font-body); }
:root[data-theme="dark"] .leaflet-tile-pane { filter: invert(1) hue-rotate(180deg) brightness(.92) contrast(.88) saturate(.7); }
:root[data-theme="dark"] .leaflet-control-attribution { background: rgba(27, 23, 48, .8); color: #ccc; }
:root[data-theme="dark"] .leaflet-control-attribution a { color: #FF8A4C; }
.home-search h2 { margin-bottom: 6px; }


/* ---------- Voice orb (shared /embed/voice-orb.js) in BuyersLine red. site.css loads only on
   BuyersLine pages, so other products keep their orb colors. `body` outranks the orb's injected styles. ---------- */
body .d2orb-ball { background: radial-gradient(circle at 34% 30%, #FFE1DE, #E5322D 45%, #8E1512 100%); box-shadow: 0 0 18px rgba(229, 50, 45, .45); }
body .d2orb-ball::after { border-color: rgba(229, 50, 45, .45); }
body .d2orb-ball.is-speaking { animation-name: bl-orb-pulse; }
@keyframes bl-orb-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(229, 50, 45, .45); } 50% { transform: scale(1.1); box-shadow: 0 0 34px rgba(229, 50, 45, .75); } }
body .d2orb-row button { color: #FFFFFF; }

/* ---------- Fields filled by Ava (voice orb page action) ---------- */
.ava-filled { outline: 3px solid rgba(252, 76, 2, .7); outline-offset: 2px; border-radius: 12px; animation: ava-glow 2.4s ease-out 1; }
@keyframes ava-glow { 0% { box-shadow: 0 0 0 0 rgba(252, 76, 2, .45); } 100% { box-shadow: 0 0 0 12px rgba(252, 76, 2, 0); } }
@media (prefers-reduced-motion: reduce) { .ava-filled { animation: none; } }

/* ---------- Print ---------- */
.print-only { display: none; }
.print-brand { font-weight: 900; font-size: 20pt; color: #26213F; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid #bbb; }
.print-brand span { color: #C93D00; }
.print-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }

@media print {
  :root, :root[data-theme="dark"] {
    --ground: #fff; --surface: #fff; --surface-2: #f3f3f3; --ink: #000; --muted: #444; --rule: #bbb;
    --accent: #C93D00; --accent-soft: #fff1ea; --highlight: #C93D00; --highlight-ink: #C93D00; --brand: #26213F; --brand-ink: #fff; --navy: #26213F; --navy-ink: #fff; --band: #fff; --verified: #1E7A4C; --verified-bg: #fff;
    --caution: #6b4500; --caution-bg: #fff; --critical: #8a1d22; --critical-bg: #fff; --shadow: none;
  }
  body { font-size: 11pt; background: #fff; }
  .no-print, .site-header, .lang-toggle, .theme-toggle, .flow-circuit, .install-bar, .nav-burger, .nav-scrim, form, .consult, [data-voice-orb], .skip-link, .btn { display: none !important; }
  .table-wrap { overflow: visible; border: 1px solid #bbb; break-inside: avoid; }
  .print-only { display: block !important; }
  /* The printed report keeps the BuyersLine brand at the top (toggles stay hidden). */
  .table-min { min-width: 0; }
  .item { break-inside: auto; page-break-before: auto; }
  .incentive, tr { break-inside: avoid; }
  a { color: #000; }
  section { padding-block: 16px; }
}

/* Dark: the navy logo tile needs an edge against the navy header. */
:root[data-theme="dark"] .brand svg { border-radius: 22%; box-shadow: 0 0 0 1px rgba(255, 255, 255, .22); }

/* Ana's send countdown: the buyer can cancel before the form goes out. */
.bl-sendbar { position: fixed; left: 50%; bottom: calc(96px + env(safe-area-inset-bottom)); transform: translateX(-50%); z-index: 1200; display: flex; align-items: center; gap: 12px; width: min(440px, calc(100vw - 32px)); box-sizing: border-box; padding: 10px 10px 10px 16px; border-radius: 16px; background: #26213F; color: #fff; box-shadow: 0 10px 30px rgba(38, 33, 63, .35); font-weight: 700; font-size: 15px; line-height: 1.3; }
.bl-sendbar span { flex: 1; min-width: 0; }
.bl-sendbar .btn { flex: none; width: auto; font-size: 1rem; min-height: 44px; padding-inline: 18px; background: #fff; color: #26213F; border-color: #fff; }

/* ---------- Ana: conversational intake (public/intake-chat.js) ---------- */
.wrap-chat { max-width: 980px; }
.intake-head { max-width: 680px; margin-bottom: 18px; }
.mch { margin-bottom: 72px; background: var(--surface); border: 1px solid var(--rule); border-radius: 24px; box-shadow: var(--shadow); padding: 18px clamp(14px, 3vw, 28px) 22px; }
.mch-head { display: grid; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 14px; position: relative; }
.mch-id { display: flex; align-items: center; gap: 12px; }
.mch-id strong { display: block; font-size: 1.05rem; color: var(--ink); line-height: 1.2; }
.mch-role { display: block; font-size: .85rem; color: var(--muted); }
.mch-avatar { flex: none; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: #26213F; color: #fff; position: relative; }
.mch-avatar::after { content: ""; position: absolute; right: 9px; bottom: 11px; width: 7px; height: 7px; border-radius: 50%; background: #FC4C02; }
.mch-avatar svg { width: 24px; height: 24px; }
.mch-restart { background: none; border: 1px solid var(--rule); border-radius: 999px; color: var(--ink); font: 700 .82rem/1 var(--font-body); min-height: 34px; padding: 0 12px; cursor: pointer; }
.mch-restart:hover { border-color: var(--brand); }
.mch-count { margin-left: auto; font: 800 .75rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.mch-progress { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; }
.mch-progress li { display: grid; gap: 6px; font-size: .74rem; color: var(--muted); min-width: 0; }
.mch-progress li::before { content: ""; height: 5px; border-radius: 5px; background: var(--rule); }
.mch-progress li.is-done::before { background: var(--brand); }
.mch-progress li.is-current::before { background: linear-gradient(90deg, var(--brand) 55%, var(--rule) 55%); }
.mch-progress li.is-current { color: var(--ink); font-weight: 800; }
.mch-dot { display: none; }
.mch-stage { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mch-back { position: absolute; right: 0; top: 52px; background: none; border: 0; color: var(--accent); font: 700 .88rem/1 var(--font-body); min-height: 32px; cursor: pointer; padding: 0 2px; }
.mch-log { display: grid; gap: 8px; max-height: 340px; overflow-y: auto; padding: 4px 2px 8px; scrollbar-width: thin; }
.mch-turn { display: grid; gap: 12px; padding-top: 6px; }
.mch-b { max-width: min(640px, 92%); padding: 11px 15px; border-radius: 18px; line-height: 1.45; font-size: 1rem; word-wrap: break-word; }
.mch-b-m { background: var(--surface-2); color: var(--ink); border-top-left-radius: 6px; justify-self: start; }
.mch-b-small { font-size: .88rem; color: var(--muted); padding: 7px 12px; }
.mch-a { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.mch-b-u { background: var(--navy); color: var(--navy-ink); border-top-right-radius: 6px; font-weight: 600; }
.mch-edit { background: none; border: 0; color: var(--accent); font: 700 .82rem/1 var(--font-body); cursor: pointer; min-height: 32px; padding: 0 4px; }
.mch-typing { display: inline-flex; gap: 5px; padding: 14px 16px; border-radius: 18px; background: var(--surface-2); justify-self: start; }
.mch-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: mchDot 1s ease-in-out infinite; }
.mch-typing span:nth-child(2) { animation-delay: .15s; } .mch-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes mchDot { 0%, 100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-4px); opacity: 1; } }
.mch-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mch-chip { font: 700 .95rem/1.2 var(--font-body); min-height: 44px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--rule); background: var(--surface); color: var(--ink); cursor: pointer; text-align: left; }
.mch-chip:hover { border-color: var(--brand); }
.mch-chip.is-on { border-color: var(--brand); background: var(--accent-soft); color: var(--ink); }
.mch-composer { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--rule); border-radius: 999px; padding: 5px 5px 5px 16px; background: var(--surface); }
.mch-composer:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(252, 76, 2, .15); }
.mch-composer input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink); font: 500 1rem/1.3 var(--font-body); min-height: 40px; outline: none; }
.mch-prefix { color: var(--muted); font-weight: 700; }
.mch-send { min-height: 44px; padding: 8px 20px; border-radius: 999px; font-size: 1rem; }
.mch-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.mch-skip, .mch-linkbtn { background: none; border: 0; color: var(--accent); font: 700 .92rem/1 var(--font-body); cursor: pointer; min-height: 40px; padding: 0 4px; justify-self: start; }
.mch-err { color: var(--critical); font-weight: 700; font-size: .92rem; margin: 6px 4px 0; }
.mch-hint { color: var(--muted); font-size: .86rem; margin: -4px 4px 6px; }
.mch-visitform { border-radius: 18px; flex-wrap: wrap; padding: 8px; }
.mch-visitform input { flex: 1 1 180px; border: 1px solid var(--rule); border-radius: 12px; padding: 0 12px; }
.mch-visits { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.mch-visits li { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 12px; border: 1px solid var(--rule); border-radius: 12px; }
/* research */
.mch-research { display: grid; gap: 12px; }
.mch-scan { border: 1px solid var(--rule); border-radius: 18px; padding: 16px; background: var(--surface-2); display: grid; gap: 10px; }
.mch-scan-bar { height: 6px; border-radius: 6px; background: var(--rule); overflow: hidden; }
.mch-scan-bar span { display: block; height: 100%; width: 40%; border-radius: 6px; background: linear-gradient(90deg, transparent, var(--brand), transparent); animation: mchScan 1.6s ease-in-out infinite; }
@keyframes mchScan { from { transform: translateX(-100%); } to { transform: translateX(260%); } }
.mch-scan-title { margin: 0; font-weight: 800; color: var(--ink); }
.mch-scan-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.mch-stat { background: var(--surface); border-radius: 12px; padding: 10px 12px; display: grid; gap: 2px; }
.mch-stat strong { font-size: 1.4rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.mch-stat span { font-size: .78rem; color: var(--muted); }
.mch-disclaimer { font-size: .84rem; color: var(--muted); margin: 0; }
.mch-h { margin: 10px 0 6px; font-size: 1rem; color: var(--ink); }
.mch-results { display: grid; gap: 8px; }
.mch-top { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; }
.mch-deal { position: relative; display: grid; gap: 4px; align-content: start; text-align: left; font: inherit; color: var(--ink); background: var(--surface); border: 1.5px solid var(--rule); border-radius: 16px; padding: 14px 14px 12px 44px; cursor: pointer; }
div.mch-deal { cursor: default; }
.mch-deal.is-on { border-color: var(--brand); background: var(--accent-soft); }
.mch-rank { position: absolute; left: 12px; top: 13px; width: 24px; height: 24px; border-radius: 8px; background: #26213F; color: #fff; font: 900 .78rem/24px var(--font-body); text-align: center; }
.mch-sub { display: block; font-size: .84rem; color: var(--muted); }
.mch-promo { font-size: .9rem; font-weight: 700; color: var(--accent); }
.mch-reason { font-size: .84rem; color: var(--ink); }
.mch-pick { margin-top: 4px; font: 800 .8rem/1 var(--font-body); color: var(--accent); }
.mch-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.mch-badges .chip { font-size: .7rem; }
.mch-badge-agent { background: var(--verified-bg); color: var(--verified); }
.mch-badge-source { background: var(--surface-2); color: var(--ink); }
.mch-badge-unverified { background: var(--caution-bg); color: var(--caution); }
.mch-tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 14px; }
.mch-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 960px; }
.mch-table th { text-align: left; font: 800 .72rem/1.2 var(--font-body); letter-spacing: .05em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); padding: 9px 10px; position: sticky; top: 0; }
.mch-table td { padding: 10px; border-top: 1px solid var(--rule); vertical-align: top; color: var(--ink); }
.mch-table tr.is-on td { background: var(--accent-soft); }
.mch-pickcell input { width: 22px; height: 22px; accent-color: #FC4C02; }
.mch-inv { margin: 0; padding-left: 18px; display: grid; gap: 6px; font-size: .9rem; }
.mch-stickybar { position: sticky; bottom: 0; display: flex; justify-content: flex-end; padding: 12px 0 10px; margin: 0 -4px; background: linear-gradient(180deg, transparent, var(--surface) 38%); z-index: 3; }
.mch-stickybar .btn[disabled] { opacity: .55; }
/* consents */
.mch-consents { display: grid; gap: 10px; }
.mch-consent { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; border: 1.5px solid var(--rule); border-radius: 16px; padding: 14px; cursor: pointer; background: var(--surface); }
.mch-consent:has(input:checked) { border-color: var(--brand); background: var(--accent-soft); }
.mch-consent input { width: 22px; height: 22px; margin-top: 2px; accent-color: #FC4C02; }
.mch-consent.is-disabled { opacity: .6; cursor: default; }
.mch-consent-text { font-size: .94rem; line-height: 1.45; color: var(--ink); }
.mch-submit { justify-self: start; min-height: 50px; }
.mch-closing { margin: 4px 0; }
/* final report */
.mch-done { display: grid; gap: 12px; }
.mch-done-title { margin: 6px 0 0; font-size: 1.5rem; }
.mch-agent { margin: 0; font-weight: 700; color: var(--ink); }
.mch-kv { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin: 0; }
.mch-kv div { background: var(--surface-2); border-radius: 12px; padding: 10px 12px; }
.mch-kv dt { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 800; }
.mch-kv dd { margin: 2px 0 0; font-weight: 700; color: var(--ink); }
@media (max-width: 640px) {
  .mch { border-radius: 18px; }
  .mch-stage { display: none; }
  .mch-back { top: 44px; }
  .mch-b { max-width: 96%; }
  .mch-log { max-height: 260px; }
  .mch-scan-stats { grid-template-columns: 1fr 1fr 1fr; }
  .mch-table { min-width: 0; }
  .mch-table thead { display: none; }
  .mch-table tr { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); padding: 8px 10px; }
  .mch-table td { border: 0; padding: 3px 0; display: grid; grid-template-columns: 110px 1fr; gap: 8px; }
  .mch-table td::before { content: attr(data-label); font-size: .72rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
  .mch-composer { padding-left: 12px; }
  .mch-send { padding: 8px 14px; }
}
@media (prefers-reduced-motion: reduce) { .mch-typing span, .mch-scan-bar span { animation: none; } }
@media print { .mch-head, .mch-turn button, .mch-chips { display: none !important; } .mch { box-shadow: none; border: 0; } .mch-table { min-width: 0; } }

@media (max-width: 480px) { .mch-count { display: none; } .mch-restart { margin-left: auto; } }
.mch-composer .btn { width: auto; flex: none; }
.mch-chips .mch-chip { width: auto; }

/* Scheduler: booking panel on the finished report */
.mch-book { margin: 18px 0; padding: 16px; border: 1px solid var(--line, #E7E8E9); border-radius: 14px; }
.mch-bookday { margin: 12px 0 6px; font-weight: 700; font-size: 14px; }
.mch-book .mch-chip { min-height: 44px; }
.meet-wrap { max-width: 560px; margin: 0 auto; padding: 32px 16px 64px; }
.meet-stars { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.meet-stars button { min-width: 48px; min-height: 44px; }
.meet-stars button[aria-pressed="true"] { background: var(--ink, #26213F); color: #fff; }

/* Ecosystem map section (#ecosystem): the same dark signal world as the architecture page, in both themes.
   The selector is main > section.eco because main > section:nth-of-type(even) paints the band color. */
main > section.eco, .eco {
  position: relative; color: #ECEAF6; padding-block: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(900px 600px at 50% 18%, rgba(252, 76, 2, .12), transparent 70%),
    radial-gradient(700px 520px at 85% 60%, rgba(92, 200, 230, .07), transparent 70%),
    #0E0C1F;
}
.eco-head { max-width: 760px; margin: 0 auto; text-align: center; }
.eco .eyebrow { color: #FF7A3D; font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .16em; }
.eco h2 { color: #ECEAF6; font-weight: 900; text-wrap: balance; margin: 10px 0 12px; }
.eco h2 em { display: block; font-style: normal; color: #FC4C02; }
.eco-sub { color: #A6A3BD; margin: 0 auto; max-width: 62ch; }

/* ---------- Report view (report-view.js, owner review 2026-09-15) ---------- */
.rv { margin-top: 32px; border-top: 3px solid var(--navy); padding-top: 24px; }
.rv-top { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.rv-title { margin: 4px 0 2px; text-wrap: balance; }
.rv-sec { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.rv-h { margin: 0 0 6px; font-size: 1.2rem; font-weight: 900; }
.rv-sub { margin: 0 0 12px; color: var(--muted); font-size: .95rem; max-width: 70ch; }
.rv-big { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.rv-fit { display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px; border-radius: 999px; background: var(--verified-bg); color: var(--verified); font-weight: 800; font-size: .85rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.rv-best { padding: 16px; }
.rv-best-head { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rv-stats { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.rv-stat { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border: 1px solid var(--rule); border-radius: var(--radius-sm); background: var(--surface); }
.rv-stat strong { font-size: 1.35rem; font-variant-numeric: tabular-nums; }
.rv-schools { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.rv-schools li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--rule); }
.rv-grade { min-width: 2.2em; text-align: center; border-radius: 8px; background: var(--surface-2); padding: 0 6px; }
.rv-homes { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 8px; }
.rv-home { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--rule); border-radius: var(--radius-sm); background: var(--surface); }
.rv-home-main, .rv-home-side { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv-home-side { align-items: flex-end; text-align: right; }
.rv-disclaimer { margin: 22px 0 0; }
.rv-disclaimer p { margin: 0; font-weight: 700; }
.rv-calc { margin-top: 12px; border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 10px 14px; background: var(--surface-2); }
.rv-calc summary { cursor: pointer; font-weight: 700; min-height: 32px; display: flex; align-items: center; }
.rv-calc-form { display: grid; gap: 6px; margin-top: 10px; max-width: 420px; }
.rv-calc-form label { font-size: .9rem; font-weight: 700; }
.rv-calc-form .btn { justify-self: start; margin-top: 6px; }
.rv-calc-out { margin: 10px 0 0; font-weight: 700; }
.rv-form { padding: 18px; }
.rv-yesno { border: 0; padding: 0; margin: 0 0 14px; min-width: 0; }
.rv-yesno legend { margin-bottom: 6px; }
.rv-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.rv-radio { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border: 1px solid var(--rule); border-radius: 999px; cursor: pointer; background: var(--surface); }
.rv-radio:has(input:checked) { border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); font-weight: 700; }
.rv-yesno.has-error .rv-radio { border-color: var(--critical); }
.rv-create { width: 100%; margin-top: 8px; }
.rv-share .mch-chip { text-decoration: none; }
@media (max-width: 560px) { .rv-home { flex-direction: column; } .rv-home-side { align-items: flex-start; text-align: left; } }
@media print { .rv { border-top: 0; } .rv-contact .rv-form, .rv-share, .rv-calc { display: none !important; } }

/* Landing "Log in" link to the admin dashboard (owner request 2026-09-15) */
.site-nav a.nav-login { border: 1.5px solid var(--ink); border-radius: 999px; padding-inline: 16px; }
.site-nav a.nav-login:hover { background: var(--ink); color: var(--ground); }
