:root {
  color-scheme: light;
  --bg: #f4f4f1;
  --surface: #fcfcfb;
  --surface-2: #f0efec;
  --ink: #111110;
  --ink-2: #52514e;
  --muted: #6b6964;
  --line: rgba(11, 11, 11, 0.1);
  --line-strong: rgba(11, 11, 11, 0.18);
  --accent: #256abf;
  --accent-hover: #1c5cab;
  --accent-ink: #ffffff;
  --accent-wash: #e6eefa;
  --good: #006300;
  --good-wash: #e5f3e5;
  --critical: #b42f2f;
  --critical-wash: #fbeceb;
  --warning: #8a5a00;
  --warning-wash: #fdf2dc;
  --chart-line: #2a78d6;
  --chart-grid: #e1e0d9;
  --chart-axis: #898781;
  --band: 11, 11, 11;
  --heat-0: #f0efec;
  --heat-1: #b7d3f6;
  --heat-2: #5598e7;
  --heat-3: #1c5cab;
  --heat-ink-dark: #0b0b0b;
  --shadow: 0 1px 2px rgba(11, 11, 11, 0.04), 0 4px 16px rgba(11, 11, 11, 0.04);
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0d0d0d;
    --surface: #1a1a19;
    --surface-2: #242422;
    --ink: #f4f4f1;
    --ink-2: #c3c2b7;
    --muted: #9a988f;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --accent: #3987e5;
    --accent-hover: #5598e7;
    --accent-ink: #ffffff;
    --accent-wash: #16263a;
    --good: #4cc24c;
    --good-wash: #13261a;
    --critical: #f07474;
    --critical-wash: #2e1616;
    --warning: #e8b24a;
    --warning-wash: #2c2210;
    --chart-line: #3987e5;
    --chart-grid: #2c2c2a;
    --chart-axis: #898781;
    --band: 255, 255, 255;
    --heat-0: #242422;
    --heat-1: #184f95;
    --heat-2: #2a78d6;
    --heat-3: #86b6ef;
    --shadow: none;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d0d0d;
  --surface: #1a1a19;
  --surface-2: #242422;
  --ink: #f4f4f1;
  --ink-2: #c3c2b7;
  --muted: #9a988f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #3987e5;
  --accent-hover: #5598e7;
  --accent-ink: #ffffff;
  --accent-wash: #16263a;
  --good: #4cc24c;
  --good-wash: #13261a;
  --critical: #f07474;
  --critical-wash: #2e1616;
  --warning: #e8b24a;
  --warning-wash: #2c2210;
  --chart-line: #3987e5;
  --chart-grid: #2c2c2a;
  --chart-axis: #898781;
  --band: 255, 255, 255;
  --heat-0: #242422;
  --heat-1: #184f95;
  --heat-2: #2a78d6;
  --heat-3: #86b6ef;
  --shadow: none;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
a { color: var(--accent); text-underline-offset: 2px; }
h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: 26px; font-weight: 650; }
h2 { font-size: 17px; font-weight: 620; }
h3 { font-size: 14px; font-weight: 600; }
p { margin: 0; }
button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.num { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.secondary { color: var(--ink-2); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Shell */
.demo-banner {
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 12.5px;
  text-align: center;
  padding: 6px 16px;
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 30px; height: 30px; flex: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
}
.brand-name { font-weight: 650; font-size: 15px; white-space: nowrap; }
.brand-practice { font-size: 12px; color: var(--muted); white-space: nowrap; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.user-name { font-size: 13.5px; color: var(--ink-2); padding: 0 4px; white-space: nowrap; }

.segmented {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}
.segmented button {
  border: 0;
  background: none;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.segmented button[aria-pressed="true"] { background: var(--surface-2); color: var(--ink); }

.icon-btn {
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  color: var(--ink-2);
  cursor: pointer;
}
.icon-btn:hover { background: var(--surface-2); }
.icon { width: 18px; height: 18px; flex: none; }

main.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}
main.narrow { max-width: 680px; }

/* Buttons & form controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-weight: 560;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--surface-2); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-ghost { border-color: transparent; background: none; }
.btn-lg { min-height: 48px; padding: 0 20px; font-size: 15px; }
.btn[disabled] { opacity: 0.55; cursor: default; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .label { font-size: 13px; font-weight: 560; color: var(--ink-2); }
.input, select.input {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  width: 100%;
}
.input:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }
.check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--accent); margin: 0; }
.form-error {
  color: var(--critical);
  background: var(--critical-wash);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13.5px;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad { padding: 20px; }
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  background: var(--surface-2);
  color: var(--ink-2);
}
.badge .icon { width: 13px; height: 13px; }
.badge-good { background: var(--good-wash); color: var(--good); }
.badge-critical { background: var(--critical-wash); color: var(--critical); }
.badge-warning { background: var(--warning-wash); color: var(--warning); }
.badge-accent { background: var(--accent-wash); color: var(--accent); }

/* Severity meter: position within the instrument's bands, always with a text label */
.sev { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-2); white-space: nowrap; }
.sev-pips { display: inline-flex; gap: 2px; }
.sev-pips i { width: 5px; height: 12px; border-radius: 1.5px; background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line); }
.sev-pips i.on { background: var(--ink-2); box-shadow: none; }

/* Page header */
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.page-head p { color: var(--ink-2); margin-top: 6px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Stat tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.tile { padding: 16px 18px; }
.tile-label { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.tile-value { font-size: 30px; font-weight: 650; letter-spacing: -0.02em; margin-top: 4px; line-height: 1.15; }
.tile-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.tile-critical .tile-value { color: var(--critical); }

/* Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.search { position: relative; flex: 1 1 220px; max-width: 320px; }
.search .icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search .input { padding-left: 36px; min-height: 36px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 560;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.chip .count { font-weight: 500; opacity: 0.7; }

/* Tables */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.data th button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
table.data th button:focus-visible { outline: 2px solid var(--accent); }
table.data td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr.link { cursor: pointer; }
table.data tbody tr.link:hover { background: var(--surface-2); }
table.data .right { text-align: right; }
.client-name { font-weight: 600; color: var(--ink); text-decoration: none; }
.client-name:hover { text-decoration: underline; }
.score-cell { display: flex; align-items: center; gap: 12px; }
.score-main { display: flex; flex-direction: column; min-width: 128px; }
.score-value { font-weight: 650; font-size: 15px; }
.score-delta { font-size: 12px; color: var(--muted); }
.spark { width: 72px; height: 24px; flex: none; }
.empty { padding: 40px 16px; text-align: center; color: var(--muted); }

/* Dialog */
dialog {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  width: min(460px, calc(100vw - 32px));
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
dialog::backdrop { background: rgba(10, 10, 10, 0.45); }
.dialog-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.dialog-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 22px; border-top: 1px solid var(--line); }
.code-box {
  display: flex; gap: 8px; align-items: center;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  word-break: break-all;
}
.invite-code { font-size: 24px; font-weight: 650; letter-spacing: 0.12em; font-family: ui-monospace, "SF Mono", Menlo, monospace; }

/* Client detail */
.back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13.5px; color: var(--ink-2); text-decoration: none; margin-bottom: 12px; }
.back-link:hover { color: var(--ink); }
.detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.instrument-card { margin-bottom: 20px; }
.summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 20px 0;
}
.summary-stat { background: var(--surface-2); border-radius: 8px; padding: 12px 14px; min-width: 0; }
.summary-stat .v { font-size: 26px; font-weight: 650; letter-spacing: -0.02em; line-height: 1.2; }
.summary-stat .l { font-size: 12.5px; color: var(--ink-2); }
.summary-stat .s { font-size: 12.5px; margin-top: 2px; }
.chart-box { position: relative; height: 280px; padding: 12px 12px 4px 8px; }
.chart-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 0 20px 14px; font-size: 12.5px; color: var(--muted);
}
.legend-dash { display: inline-block; width: 18px; border-top: 1.5px dashed var(--ink-2); vertical-align: middle; margin-right: 6px; }
.link-btn { all: unset; color: var(--accent); cursor: pointer; font-size: 12.5px; }
.link-btn:hover { text-decoration: underline; }
.link-btn:focus-visible { outline: 2px solid var(--accent); }
.risk-note {
  margin: 16px 20px 0;
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--critical-wash);
  color: var(--critical);
  border-left: 3px solid var(--critical);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 560;
}
.section { padding: 16px 20px; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }

.heat { border-collapse: separate; border-spacing: 3px; font-size: 12px; }
.heat th { font-weight: 500; color: var(--muted); padding: 0 4px; white-space: nowrap; }
.heat th.item { text-align: left; max-width: 260px; overflow: hidden; text-overflow: ellipsis; color: var(--ink-2); padding-right: 10px; }
.heat td {
  width: 30px; min-width: 30px; height: 26px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.heat .h0 { background: var(--heat-0); color: var(--muted); }
.heat .h1 { background: var(--heat-1); color: var(--heat-ink-dark); }
.heat .h2 { background: var(--heat-2); color: #fff; }
.heat .h3 { background: var(--heat-3); color: #fff; }
.heat td.flag { box-shadow: 0 0 0 2px var(--critical); }
:root[data-theme="dark"] .heat .h1 { color: #fff; }
:root[data-theme="dark"] .heat .h3 { color: #0b0b0b; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .heat .h1 { color: #fff; }
  :root:not([data-theme="light"]) .heat .h3 { color: #0b0b0b; }
}

.answers { padding: 4px 0 8px; display: grid; gap: 4px; }
.answer-row { display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; gap: 10px; font-size: 13px; }
.answer-row .q { color: var(--ink-2); }
.answer-row.flag { color: var(--critical); font-weight: 600; }
.answer-row.flag .q { color: var(--critical); }
tr.expand td { background: var(--surface-2); }
.toggle-row { all: unset; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; color: var(--ink-2); font-size: 13px; }
.toggle-row .icon { width: 14px; height: 14px; transition: transform 0.15s; }
.toggle-row[aria-expanded="true"] .icon { transform: rotate(90deg); }

.settings-grid { display: grid; gap: 16px; }
.inline-note { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 16px; border-radius: 8px; background: var(--accent-wash); color: var(--ink); margin-bottom: 20px; font-size: 14px; }

/* Auth pages */
.auth {
  min-height: calc(100vh - 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.auth-aside {
  background: var(--surface);
  border-right: 1px solid var(--line);
  padding: 48px clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.auth-aside h1 { font-size: clamp(28px, 3.4vw, 40px); max-width: 16ch; }
.auth-aside .lede { color: var(--ink-2); font-size: 16px; max-width: 46ch; margin-top: 14px; }
.auth-preview { margin-top: auto; }
.auth-main {
  padding: 48px clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.auth-main { position: relative; }
.auth-top { position: absolute; top: 20px; right: 24px; display: flex; gap: 8px; }
.demo-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.demo-choice:hover { border-color: var(--accent); background: var(--accent-wash); }
.demo-choice .icon-wrap {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--accent-wash); color: var(--accent);
  display: grid; place-items: center;
}
.demo-choice strong { display: block; font-size: 15px; }
.demo-choice span { font-size: 13px; color: var(--ink-2); }
.demo-choice .chev { margin-left: auto; color: var(--muted); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12.5px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.stack { display: flex; flex-direction: column; gap: 14px; }
.stack-sm { display: flex; flex-direction: column; gap: 8px; }

/* Client portal */
.task {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}
.task + .task { border-top: 1px solid var(--line); }
.task-body { flex: 1; min-width: 0; }
.task-meta { font-size: 13px; color: var(--ink-2); margin-top: 2px; display: flex; gap: 4px 12px; flex-wrap: wrap; align-items: center; }

/* Questionnaire */
.q-shell { max-width: 640px; margin: 0 auto; padding: 20px 20px 48px; }
.q-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.q-title { font-weight: 600; font-size: 14px; color: var(--ink-2); flex: 1; min-width: 0; }
.progress { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress > div { height: 100%; background: var(--accent); border-radius: 999px; transition: width 0.25s ease; }
.q-count { font-size: 13px; color: var(--muted); margin: 10px 0 24px; }
.q-stem { font-size: 14px; color: var(--ink-2); margin-bottom: 10px; }
#q-label:focus { outline: none; }
.q-item { font-size: clamp(21px, 4.6vw, 26px); font-weight: 620; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 26px; }
.options { display: grid; gap: 10px; }
.option {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  text-align: left;
  font-size: 16px;
  font-weight: 520;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.option:hover { border-color: var(--accent); }
.option[aria-checked="true"] { border-color: var(--accent); background: var(--accent-wash); }
.option .radio {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid; place-items: center;
}
.option[aria-checked="true"] .radio { border-color: var(--accent); }
.option[aria-checked="true"] .radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.option .key { margin-left: auto; font-size: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; padding: 0 6px; }
.q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.review-list { display: grid; gap: 0; }
.review-item {
  all: unset;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 4px 10px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.review-item:hover .a { color: var(--accent); }
.review-item:focus-visible { outline: 2px solid var(--accent); }
.review-item .n { color: var(--muted); font-size: 13px; padding-top: 1px; }
.review-item .q { font-size: 14px; color: var(--ink-2); }
.review-item .a { grid-column: 2; font-weight: 600; font-size: 14.5px; }
.result-score { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.crisis {
  border-left: 3px solid var(--critical);
  background: var(--critical-wash);
  border-radius: 8px;
  padding: 14px 16px;
}
.crisis h3 { color: var(--critical); margin-bottom: 6px; font-size: 15px; }
.crisis p { font-size: 14px; }

@media (max-width: 900px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auth { grid-template-columns: minmax(0, 1fr); }
  .auth-aside { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 32px; }
  .auth-preview { display: none; }
  .hide-md { display: none; }
}
@media (max-width: 640px) {
  .topbar-inner { padding: 8px 16px; gap: 10px; }
  main.page { padding: 20px 16px 48px; }
  .brand-practice, .user-name, .hide-sm { display: none; }
  .summary-row { grid-template-columns: minmax(0, 1fr); padding: 14px 16px 0; }
  .section, .card-head { padding-left: 16px; padding-right: 16px; }
  .chart-box { height: 230px; }
  .tile-value { font-size: 24px; }
  h1 { font-size: 22px; }
  .auth-aside, .auth-main { padding: 28px 16px; }
  .task { padding: 16px; flex-wrap: wrap; }
  .task .btn { width: 100%; }
}

/* Login aside */
.features { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.features li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 14.5px; }
.features .icon { color: var(--accent); margin-top: 2px; }
.auth-preview { padding: 18px 20px; max-width: 380px; }
.preview-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.preview-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.preview-score { font-size: 26px; font-weight: 650; letter-spacing: -0.02em; }
.preview-chart { margin: 10px 0 8px; }
.preview-spark { width: 100%; height: auto; display: block; }
.preview-foot { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }
@media (max-width: 420px) {
  .brand-text { display: none; }
}
