/* =========================================================
   Mind GEO — Onboarding
   Tokens → componentes → layout → prévia (mock)
   ========================================================= */
:root {
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bg-left: #fdfdfd;
  --bg-right: #f3f3f4;
  --surface: #ffffff;
  --text: #111113;
  --text-2: #3f3f46;
  --muted: #71717a;
  --label: #8b8b93;
  --border: #e6e6e9;
  --border-strong: #d4d4d8;
  --chip: #f4f4f5;
  --skeleton: #efeff1;
  --primary: #111113;
  --primary-hover: #2a2a2e;
  --focus: #3b82f6;
  --focus-ring: rgba(59,130,246,.18);
  --blue: #3b82f6;
  --green: #22a55a;
  --green-bg: #eaf7ef;
  --orange: #ea6a2a;
  --danger: #dc2626;
  --radius: 10px;
  --radius-sm: 7px;
  --shadow-mock: 0 30px 80px -30px rgba(17,17,19,.18), 0 0 0 1px rgba(17,17,19,.05);
  --left-w: 660px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--text); background: var(--bg-right);
  font-size: 15px; line-height: 1.45; -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
.muted { color: var(--muted); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row { display: flex; align-items: center; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gap-8 { gap: 8px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- Layout ---------- */
.ob { display: flex; height: 100vh; overflow: hidden; }
.ob-left {
  width: var(--left-w); flex: 0 0 var(--left-w); background: var(--bg-left);
  display: flex; flex-direction: column; border-right: 1px solid #f0f0f2; position: relative; z-index: 2;
}
.ob-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 44px 0 38px; gap: 16px; }
.brand-mark { display: flex; align-items: center; gap: 9px; color: var(--text); }
.brand-name { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.ob-user { display: flex; align-items: center; gap: 12px; min-width: 0; font-size: 13px; }
.ob-scroll {
  flex: 1; overflow-y: auto; padding: 72px 44px 40px 38px;
  mask-image: linear-gradient(to bottom, #000 calc(100% - 48px), transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 48px), transparent);
}
.ob-footer { padding: 0 44px 26px 38px; }
.nav-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 30px; }
.nav-buttons.single { grid-template-columns: 1fr; }
.legal { font-size: 14px; color: var(--muted); }
.legal i { display: inline-block; width: 1px; height: 14px; background: var(--border); margin: 0 12px; vertical-align: -2px; }
.legal a:hover { color: var(--text); }

.ob-right { flex: 1; position: relative; overflow: hidden; }

/* ---------- Tipografia das etapas ---------- */
.step { animation: stepIn .28s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-count { margin: 0; font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.step-count b { color: var(--text); font-weight: 600; }
.step-title { margin: 2px 0 6px; font-size: 20px; font-weight: 600; letter-spacing: -.015em; }
.step-sub { margin: 0 0 30px; color: var(--muted); font-size: 15px; }

/* ---------- Campos ---------- */
.field { margin-bottom: 18px; }
.field-block { margin-bottom: 30px; }
.label { display: block; font-size: 14px; color: var(--label); margin-bottom: 8px; }
.label-strong { font-size: 15px; font-weight: 500; }
.hint { font-size: 14px; color: var(--muted); margin: 2px 0 12px; }
.input {
  width: 100%; height: 42px; padding: 0 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); outline: none; transition: border-color .15s, box-shadow .15s; font-size: 15px;
}
.input::placeholder { color: #b4b4bb; }
.input:focus { border-color: var(--focus); box-shadow: 0 0 0 3px var(--focus-ring); }
.input.is-filled { border-color: #1f1f23; }
.input.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 84px; line-height: 1.5; font-size: 14px; }

.input-group { display: flex; align-items: stretch; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); transition: border-color .15s, box-shadow .15s; }
.input-group:focus-within { border-color: var(--focus); box-shadow: 0 0 0 3px var(--focus-ring); }
.input-group .input { border: 0; box-shadow: none !important; height: 40px; }
.input-prefix { display: flex; align-items: center; padding: 0 12px; color: var(--muted); border-right: 1px solid var(--border); font-size: 15px; }
.input-logo { display: flex; align-items: center; padding-right: 10px; }
.input-logo img, .input-logo .avatar { width: 22px; height: 22px; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 12px; transform: translateY(-50%); pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpath d='M1 4.5 4 1.5l3 3M1 7.5l3 3 3-3' fill='none' stroke='%2371717a' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.select {
  appearance: none; -webkit-appearance: none; width: 100%; height: 44px; padding: 0 36px 0 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); outline: none; cursor: pointer; font-size: 15px; font-weight: 500;
}
.select:focus { border-color: var(--focus); box-shadow: 0 0 0 3px var(--focus-ring); }
.has-flag .select { padding-left: 46px; }
.has-icon .select { padding-left: 42px; }
.select-flag { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 20px; line-height: 1; pointer-events: none; }
.select-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.select-sm .select { height: 36px; font-size: 14px; padding-right: 30px; }
.select-sm::after { right: 11px; }

.segmented { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; background: #f1f1f3; border-radius: 9px; padding: 3px; gap: 2px; }
.segmented button { height: 38px; border: 0; background: transparent; border-radius: 7px; cursor: pointer; font-weight: 500; color: var(--text-2); transition: background .15s, box-shadow .15s; }
.segmented button:hover { color: var(--text); }
.segmented button.is-active { background: #fff; color: var(--text); box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.03); }

/* ---------- Botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; padding: 0 16px; border-radius: 8px; border: 1px solid transparent; cursor: pointer; font-weight: 500; font-size: 15px; transition: background .15s, border-color .15s, opacity .15s; white-space: nowrap; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
.btn-secondary { background: #fff; border-color: var(--border); }
.btn-secondary:hover { background: #fafafa; }
.btn-ghost { background: #fff; border-color: var(--border); }
.btn-sm { height: 32px; padding: 0 10px; font-size: 14px; }
.btn-icon { width: 36px; height: 36px; padding: 0; background: #fff; border-color: var(--border); }
.link-btn { border: 0; background: none; color: var(--muted); font-size: 13px; cursor: pointer; padding: 10px 2px; }
.link-btn:hover { color: var(--text); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips-stack { flex-direction: column; align-items: flex-start; }
.chip { display: inline-flex; align-items: center; height: 32px; background: var(--chip); border: 1px solid #ececef; border-radius: 6px; font-size: 14px; color: var(--text-2); overflow: hidden; }
.chip span { padding: 0 10px 0 9px; }
.chip button { height: 100%; width: 28px; border: 0; border-left: 1px solid #e4e4e7; background: transparent; cursor: pointer; color: var(--muted); display: grid; place-items: center; }
.chip button:hover { color: var(--danger); background: #fff; }
.chip-add { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 10px; border: 1px dashed var(--border-strong); border-radius: 6px; background: transparent; cursor: pointer; color: var(--muted); font-size: 14px; }
.chip-add:hover { color: var(--text); border-color: var(--muted); }
.chip-input { height: 32px; border: 1px solid var(--focus); box-shadow: 0 0 0 3px var(--focus-ring); border-radius: 6px; padding: 0 10px; outline: none; font-size: 14px; min-width: 200px; }
.chip.chip-flag span:first-child { padding-right: 0; }

.divider { border: 0; border-top: 1px solid var(--border); margin: 8px 0 30px; }

/* ---------- Mapa ---------- */
.map-card { position: relative; margin: 16px 0 12px; border: 1px solid var(--border); border-radius: 12px; background: #fff; height: 320px; overflow: hidden; transition: height .25s ease; }
.map-card.is-expanded { height: 520px; }
.map-svg, .map-svg svg { width: 100%; height: 100%; display: block; }
.map-svg path { transition: fill .2s; }
.map-fallback { display: grid; place-items: center; height: 100%; font-size: 14px; }
.map-add { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); }
.select-pill .select { height: 36px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,.08); font-size: 14px; min-width: 170px; }
.select-pill .select-flag { font-size: 16px; left: 12px; }
.select-pill.has-flag .select { padding-left: 38px; }

/* ---------- Listas de seleção ---------- */
.list-head { margin-bottom: 12px; }
.counter { font-size: 14px; color: var(--muted); }
.counter b { color: var(--text); font-weight: 500; }
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-row { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 9px; background: #fff; cursor: pointer; transition: border-color .15s, background .15s; }
.check-row:hover { border-color: var(--border-strong); }
.check-row.is-off { background: #fafafa; color: var(--muted); }
.check-row .grow { flex: 1; min-width: 0; }
.check-row .row-actions { display: flex; gap: 2px; opacity: 0; transition: opacity .15s; }
.check-row:hover .row-actions { opacity: 1; }
.tag { display: inline-block; font-size: 11px; padding: 1px 7px; border-radius: 99px; background: #f1f1f3; color: var(--muted); margin-left: 8px; vertical-align: 1px; }
.tag-custom { background: #eef4ff; color: #2f6fe0; }

.cbx { appearance: none; -webkit-appearance: none; flex: 0 0 18px; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border-strong); background: #fff; cursor: pointer; display: grid; place-items: center; margin: 0; transition: background .12s, border-color .12s; }
.cbx:checked { background: var(--blue); border-color: var(--blue); }
.cbx:checked::after { content: ""; width: 9px; height: 5px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg) translate(1px,-1px); }
.cbx:disabled { opacity: .4; cursor: not-allowed; }

.icon-btn { width: 28px; height: 28px; border: 0; background: transparent; border-radius: 6px; color: var(--muted); cursor: pointer; display: grid; place-items: center; }
.icon-btn:hover { background: #f1f1f3; color: var(--text); }

.add-row { display: flex; align-items: center; gap: 8px; width: 100%; min-height: 48px; margin-top: 8px; padding: 0 16px; border: 1px dashed var(--border); border-radius: 9px; background: transparent; color: var(--text-2); cursor: pointer; font-size: 15px; }
.add-row:hover { border-color: var(--border-strong); color: var(--text); }
.inline-form { display: flex; gap: 8px; margin-top: 8px; }
.inline-form .input { height: 44px; }

/* ---------- Acordeão de prompts ---------- */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc { border: 1px solid var(--border); border-radius: 10px; background: #fff; overflow: hidden; }
.acc-head { display: flex; align-items: center; gap: 10px; width: 100%; height: 46px; padding: 0 14px; border: 0; background: #fff; cursor: pointer; text-align: left; font-size: 15px; }
.acc-head .count { color: var(--muted); font-size: 13px; }
.acc-head .chev { margin-left: auto; color: var(--muted); transition: transform .2s; }
.acc.is-open .acc-head .chev { transform: rotate(90deg); }
.acc-body { background: #f7f7f8; padding: 10px 14px 12px; border-top: 1px solid var(--border); }
.acc-body .hint-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--label); margin: 4px 0 8px; }
.prompt-row { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: 14.5px; color: var(--text); cursor: pointer; }
.prompt-row .cbx { margin-top: 2px; }
.prompt-row.is-off { color: var(--muted); }
.prompt-row .intent { font-size: 11px; color: var(--label); white-space: nowrap; margin-left: auto; padding-left: 8px; padding-top: 3px; }
.acc-body .add-row { background: #fff; min-height: 38px; font-size: 14px; }

/* ---------- Concorrentes ---------- */
.comp-list { display: flex; flex-direction: column; gap: 8px; }
.comp-row { display: grid; grid-template-columns: 28px 1fr 1fr 28px; align-items: center; gap: 10px; padding: 6px 8px 6px 12px; border: 1px solid var(--border); border-radius: 9px; background: #fff; }
.comp-row .input { height: 34px; font-size: 14px; border-color: transparent; padding: 0 8px; }
.comp-row .input:hover { border-color: var(--border); }
.comp-row .input:focus { border-color: var(--focus); }
.comp-row .domain { color: var(--muted); }

/* ---------- Modelos ---------- */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.model-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 9px; background: #fff; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.model-card.is-on { border-color: var(--blue); box-shadow: 0 0 0 3px var(--focus-ring); }
.model-card .meta { flex: 1; min-width: 0; }
.model-card .name { font-size: 14px; font-weight: 500; }
.model-card .prov { font-size: 12px; color: var(--muted); }

.credit-card { margin-top: 20px; border: 1px solid var(--border); border-radius: 10px; padding: 16px; background: #fff; }
.credit-card .big { font-size: 18px; font-weight: 500; }
.bar { height: 10px; border-radius: 99px; background: #f0f0f2; overflow: hidden; display: flex; gap: 2px; margin-top: 10px; }
.bar i { display: block; height: 100%; border-radius: 99px; }
.small { font-size: 13px; }
.warn { color: var(--orange); }

/* ---------- Avatares / logos ---------- */
.avatar { display: inline-grid; place-items: center; border-radius: 6px; font-weight: 600; color: #fff; font-size: 12px; overflow: hidden; flex: 0 0 auto; background: #d4d4d8; }
.logo-img { object-fit: contain; border-radius: 6px; background: #fff; flex: 0 0 auto; }

/* ---------- Loader de análise ---------- */
.loader-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; background: #fff; }
.loader-title { display: flex; align-items: center; gap: 10px; font-weight: 500; margin-bottom: 14px; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #e4e4e7; border-top-color: var(--blue); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-steps { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--muted); }
.loader-steps li { display: flex; align-items: center; gap: 9px; }
.loader-steps li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #d4d4d8; }
.loader-steps li.is-active { color: var(--text); }
.loader-steps li.is-active::before { background: var(--blue); box-shadow: 0 0 0 4px var(--focus-ring); }
.loader-steps li.is-done { color: var(--text-2); }
.loader-steps li.is-done::before { background: var(--green); }
.sk { background: linear-gradient(90deg, var(--skeleton) 0%, #f7f7f8 50%, var(--skeleton) 100%); background-size: 200% 100%; animation: shimmer 1.4s ease infinite; border-radius: 6px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Painel final ---------- */
.run-model { display: grid; grid-template-columns: 24px 1fr 60px; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f2; font-size: 14px; }
.run-model:last-child { border-bottom: 0; }
.run-model .bar { margin: 4px 0 0; height: 6px; }
.run-model .pct { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.summary-grid div { border: 1px solid var(--border); border-radius: 9px; padding: 12px; background: #fff; }
.summary-grid b { display: block; font-size: 22px; font-weight: 600; }
.summary-grid span { font-size: 13px; color: var(--muted); }

.toast { position: fixed; left: 38px; bottom: 120px; background: #111113; color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 14px; z-index: 50; box-shadow: 0 10px 30px rgba(0,0,0,.2); max-width: 560px; }

/* =========================================================
   PRÉVIA (mock do app)
   ========================================================= */
.mock {
  position: absolute; top: 118px; left: 112px; width: 1500px; height: calc(100% - 118px); background: #fff;
  border-radius: 14px 0 0 0; box-shadow: var(--shadow-mock); display: grid; grid-template-columns: 272px 1fr; overflow: hidden;
  font-size: 14px; transition: opacity .2s;
}
.mock::after { content: ""; position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(transparent, rgba(255,255,255,.95)); pointer-events: none; }
.mock.single { grid-template-columns: 1fr; }
.m-side { background: #fafafa; border-right: 1px solid #eeeef0; padding: 14px 12px; position: relative; }
.m-main { position: relative; min-width: 0; }
.m-topbar { height: 56px; border-bottom: 1px solid #eeeef0; display: flex; align-items: center; gap: 14px; padding: 0 18px; }
.m-pills { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid #eeeef0; }
.m-pill { height: 32px; border: 1px solid #ececef; border-radius: 8px; display: flex; align-items: center; gap: 8px; padding: 0 8px; }
.m-pill i { display: block; height: 16px; border-radius: 4px; background: var(--skeleton); }
.m-body { padding: 20px 18px; }
.m-sk { background: var(--skeleton); border-radius: 5px; height: 16px; }
.m-navgroup { margin: 16px 8px 10px; }
.m-nav { display: flex; align-items: center; gap: 10px; padding: 10px 8px; }
.m-nav .ic { width: 18px; height: 18px; border-radius: 5px; background: var(--skeleton); }
.m-nav.is-active { border: 1.5px solid var(--focus); border-radius: 9px; background: #fff; box-shadow: 0 0 0 3px var(--focus-ring); }
.m-switch { display: flex; align-items: center; gap: 9px; height: 44px; padding: 0 12px; border: 1px solid #ececef; border-radius: 9px; background: #fff; font-weight: 500; }
.m-switch .chev { margin-left: auto; color: var(--muted); }
.hl { outline: 1.5px solid var(--focus); outline-offset: 0; box-shadow: 0 0 0 4px var(--focus-ring) !important; }
.m-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--text-2); background: #f3f3f5; padding: 3px 8px; border-radius: 6px; font-weight: 400; }
.m-h { font-size: 15px; font-weight: 600; }
.m-sub { font-size: 13px; color: var(--muted); }
.m-card { border: 1px solid #eeeef0; border-radius: 12px; padding: 16px 18px; }
.m-table { border: 1px solid #eeeef0; border-radius: 12px; overflow: hidden; }
.m-tr { display: grid; align-items: center; min-height: 44px; padding: 0 14px; border-top: 1px solid #f1f1f3; gap: 12px; }
.m-tr.head { background: #f7f7f8; color: #52525b; font-size: 12.5px; text-transform: uppercase; letter-spacing: .02em; border-top: 0; }
.m-status { font-size: 12.5px; padding: 2px 7px; border-radius: 5px; background: var(--green-bg); color: var(--green); display: inline-block; }
.m-status.blue { background: #eef4ff; color: #2f6fe0; }
.m-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.m-field { margin-bottom: 22px; }
.m-field .t { font-weight: 500; font-size: 16px; }
.m-field .s { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.m-input { border: 1px solid #e6e6e9; border-radius: 8px; padding: 10px 14px; font-size: 16px; min-height: 42px; }
.m-input.muted { color: #9a9aa2; line-height: 1.55; }
.m-popover { border: 1.5px solid var(--focus); box-shadow: 0 0 0 4px var(--focus-ring), 0 12px 30px rgba(0,0,0,.08); border-radius: 12px; background: #fff; padding: 8px 6px; }
.m-popover div { padding: 10px 14px; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-list-row { padding: 12px 14px; border-bottom: 1px solid #f3f3f5; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fade-in { animation: stepIn .3s ease both; }

@media (max-width: 1100px) { :root { --left-w: 560px; } .mock { left: 60px; } }
@media (max-width: 900px) {
  .ob { height: auto; min-height: 100vh; }
  .ob-left { width: 100%; flex: 1; }
  .ob-right { display: none; }
  .ob-header, .ob-scroll, .ob-footer { padding-left: 16px; padding-right: 16px; }
  .ob-scroll { padding-top: 40px; }
  .ob-user .truncate { display: none; }
  .grid-2, .model-grid { grid-template-columns: 1fr; }
  .comp-row { grid-template-columns: 28px 1fr 28px; }
  .comp-row .domain { grid-column: 2; }
  .toast { left: 16px; right: 16px; }
}

/* Mercados: nota de mercado parcial sobre o mapa */
.map-note { position: absolute; left: 12px; top: 12px; right: 12px; background: rgba(255,255,255,.92); border: 1px solid var(--border); border-radius: 8px; padding: 7px 10px; font-size: 12px; color: var(--text-2); line-height: 1.4; }
.map-svg { position: relative; }

/* Tópicos: origem do território · Concorrentes: onde aparecem */
.topic-from { margin-left: 8px; font-size: 11.5px; color: var(--label); background: var(--chip); border-radius: 20px; padding: 2px 8px; white-space: nowrap; }
.comp-why { grid-column: 1 / -1; margin: -2px 0 2px 34px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.comp-why b { color: var(--text-2); font-weight: 600; }

.map-fallback { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; height: 100%; text-align: center; padding: 20px; }
.map-fallback b { color: var(--text-2); font-weight: 500; font-size: 14px; }
.map-fallback span { font-size: 12.5px; }

.chip-select .chip-input { min-width: 220px; background: #fff; }

.uf-label { font-size: 11px; font-weight: 600; fill: #fff; paint-order: stroke; stroke: rgba(17,17,19,.25); stroke-width: 2px; pointer-events: none; }
