/* ===== app.css — layout mobile + componentes (iPhone, retrato) ===== */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* eyebrows minúsculas em maiúsculas com tracking largo */
.eyebrow {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.pos { color: var(--pos); } .neg { color: var(--neg); } .amber { color: var(--amber); }

/* ---------- moldura de iPhone (centraliza no desktop, Anel 1) ---------- */
#app { min-height: 100%; display: flex; flex-direction: column; max-width: 460px; margin: 0 auto;
  position: relative; }
@media (min-width: 480px) {
  body { background: radial-gradient(120% 100% at 50% 0, #131318, #050506 60%); }
  #app { min-height: 100vh; box-shadow: 0 0 0 1px var(--line), 0 40px 120px -30px #000; }
  .nav { left: 50% !important; transform: translateX(-50%); max-width: 460px; }
}

/* ---------- estrutura geral ---------- */
.scroll {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 0 16px calc(var(--nav-h) + var(--safe-bottom) + 24px);
}

/* faixa de saudação */
.greeting {
  padding: calc(var(--safe-top) + 18px) 16px 14px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.greeting .g-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.backbtn { width: 34px; height: 34px; flex: none; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font-size: 22px; line-height: 1; display: grid; place-items: center; }
.backbtn:active { background: var(--surface-2); }
.greeting h1 { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -.01em; }
.greeting .sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.badge {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 8px var(--brand); }
.badge.alerta { color: var(--neg); border-color: color-mix(in srgb, var(--neg) 40%, var(--line)); }
.badge.alerta .dot { background: var(--neg); box-shadow: 0 0 8px var(--neg); }

/* tira de stats no topo */
.stats {
  display: flex; gap: 0; margin: 4px 0 14px;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface);
  overflow: hidden;
}
.stats .stat { flex: 1; padding: 12px 12px; border-left: 1px solid var(--line); min-width: 0; }
.stats .stat:first-child { border-left: none; }
.stats .stat .k { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.stats .stat .v { font-family: var(--mono); font-weight: 600; font-size: 15px; margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* cards */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; margin-bottom: 12px;
}
.card .head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.card .head .eyebrow { margin: 0; }

/* assinatura: A PAGAR ESTE MÊS gigante */
.hero {
  background: linear-gradient(150deg, var(--surface), #141416 60%, var(--surface));
  position: relative; overflow: hidden;
}
.hero .valor { font-family: var(--mono); font-weight: 700; font-size: 44px; letter-spacing: -.03em;
  line-height: 1; margin: 6px 0 8px; }
.hero .prox { font-size: 12.5px; color: var(--muted); }
.hero .prox b { color: var(--text); font-weight: 600; }

/* cards de fórmula: ENTROU − SAIU = SALDO */
.formula { display: flex; align-items: stretch; gap: 8px; }
.formula .term { flex: 1; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 10px 10px; min-width: 0; }
.formula .term .k { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.formula .term .v { font-family: var(--mono); font-weight: 700; font-size: 17px; margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.formula .op { align-self: center; color: var(--faint); font-family: var(--mono); font-size: 18px; }

/* mini-cards de cartão */
.cartao-mini { display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-top: 1px solid var(--line); }
.cartao-mini:first-of-type { border-top: none; }
.cartao-mini .barra { width: 4px; align-self: stretch; border-radius: 3px; background: var(--faint); }
.cartao-mini .nome { font-weight: 600; }
.cartao-mini .meta { font-size: 12px; color: var(--muted); }
.cartao-mini .right { margin-left: auto; text-align: right; }
.cartao-mini .right .v { font-family: var(--mono); font-weight: 700; }
.statuschip { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  padding: 2px 7px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.statuschip.aberta { color: var(--muted); }
.statuschip.fechada { color: var(--amber); border-color: color-mix(in srgb, var(--amber) 35%, var(--line)); }
.statuschip.paga { color: var(--pos); border-color: color-mix(in srgb, var(--pos) 35%, var(--line)); }

/* barras de categoria */
.cat-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.cat-row .ic { width: 24px; text-align: center; }
.cat-row .nm { flex: 1; min-width: 0; }
.cat-row .bar { height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden;
  margin-top: 5px; }
.cat-row .bar > i { display: block; height: 100%; background: var(--amber); border-radius: 3px; }
.cat-row .vl { font-family: var(--mono); font-weight: 600; font-size: 13px; white-space: nowrap; }

/* ---------- barra inferior + FAB ---------- */
.nav {
  position: fixed; left: 0; right: 0; bottom: 0; height: calc(var(--nav-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--line);
  display: flex; align-items: stretch; z-index: 40;
}
.nav button { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.nav button.ativo { color: var(--pos); }
.nav button svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav .fab-slot { flex: 1.2; position: relative; }
.fab {
  position: absolute; left: 50%; top: -18px; transform: translateX(-50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brand); color: #04140d;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--bg), 0 8px 24px color-mix(in srgb, var(--brand) 45%, transparent);
}
.fab svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2.4; fill: none; }

/* ---------- sheet (bottom sheet) ---------- */
.sheet-bg { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 50;
  opacity: 0; transition: opacity .18s ease; }
.sheet-bg.show { opacity: 1; }
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 51;
  background: var(--surface); border-top: 1px solid var(--line);
  border-radius: 20px 20px 0 0; padding: 8px 16px calc(var(--safe-bottom) + 20px);
  max-height: 92vh; overflow-y: auto;
  transform: translateY(100%); transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.sheet.show { transform: translateY(0); }
.sheet .grip { width: 44px; height: 5px; border-radius: 3px; background: var(--faint);
  margin: 8px auto 14px; touch-action: none; cursor: grab; }
.sheet-x { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); font-size: 13px;
  display: grid; place-items: center; z-index: 3; }
.sheet-x:active { background: var(--line); }

/* deslizar para revelar editar/excluir */
.swipe { position: relative; overflow: hidden; border-radius: var(--r-md); margin-bottom: 12px; }
.swipe-actions { position: absolute; inset: 0; display: flex; justify-content: space-between; }
.swipe-actions button { width: 78px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.swipe-actions .sw-edit { background: #2b3a67; color: #bcd0ff; }
.swipe-actions .sw-del { background: var(--neg); color: #fff; }
.swipe-content { position: relative; z-index: 1; will-change: transform; background: var(--surface); }
.swipe-content.card { margin-bottom: 0; }
.sheet h2 { font-size: 17px; margin: 0 0 14px; }

/* ---------- tela Lançar ---------- */
.lancar { display: flex; flex-direction: column; }
.toggle-io { display: flex; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; margin: 4px 0 16px; }
.toggle-io button { flex: 1; padding: 9px; border-radius: 999px; font-weight: 600; font-size: 13px;
  color: var(--muted); }
.toggle-io button.on-saida { background: color-mix(in srgb, var(--neg) 18%, var(--surface)); color: var(--neg); }
.toggle-io button.on-entrada { background: color-mix(in srgb, var(--pos) 18%, var(--surface)); color: var(--pos); }

.visor { text-align: center; margin: 8px 0 4px; }
.visor .eyebrow { display: block; margin-bottom: 6px; }
.visor .num { font-family: var(--mono); font-weight: 700; font-size: 46px; letter-spacing: -.03em; }
.visor.saida .num { color: var(--neg); } .visor.entrada .num { color: var(--pos); }

.campo { margin: 14px 0; }
.campo > label { display: block; margin-bottom: 8px; }
.input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--r-sm); padding: 12px 14px; font-size: 15px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 13px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface-2); color: var(--muted); font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip.sel { color: var(--text); border-color: color-mix(in srgb, var(--brand) 60%, var(--line));
  background: color-mix(in srgb, var(--brand) 14%, var(--surface-2)); }

/* teclado numérico próprio */
.keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.keypad button { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 16px 0; font-family: var(--mono); font-size: 22px; font-weight: 600; }
.keypad button:active { background: var(--line); }

.btn-primary {
  width: 100%; padding: 15px; border-radius: var(--r-md); font-weight: 700; font-size: 15px;
  background: var(--brand); color: #04140d; margin-top: 16px;
}
.btn-primary:disabled { opacity: .4; }
.btn-ghost { width: 100%; padding: 13px; border-radius: var(--r-md); font-weight: 600;
  border: 1px solid var(--line); color: var(--text); }

/* lista de itens de fatura / extrato */
.item { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); }
.item:first-child { border-top: none; }
.item .ic { width: 26px; text-align: center; }
.item .nm { flex: 1; min-width: 0; }
.item .nm small { display: block; color: var(--muted); font-size: 11.5px; }
.item .vl { font-family: var(--mono); font-weight: 600; }

.empty { text-align: center; color: var(--muted); padding: 28px 10px; font-size: 13px; }

/* item tocável (editar) + cabeçalho de dia no extrato */
.item.tap { cursor: pointer; }
.item.tap:active { background: var(--surface-2); margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 8px; }
.dia-head { margin: 16px 0 2px; color: var(--muted); }
.dia-head:first-child { margin-top: 4px; }

/* onboarding */
.onb { position: fixed; inset: 0; background: var(--bg); z-index: 80; display: flex;
  flex-direction: column; justify-content: center; padding: 32px 24px calc(var(--safe-bottom) + 24px); }
.onb .logo { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand);
  font-weight: 700; }
.onb h1 { font-size: 28px; margin: 14px 0 6px; letter-spacing: -.02em; }
.onb-logo { width: 168px; height: auto; display: block; }
.hero-mark { width: 15px; height: 15px; object-fit: contain; vertical-align: -2px; margin-right: 7px; }
.onb p { color: var(--muted); margin: 0 0 28px; }

/* ---------- assinatura KYZEN: banner, régua, títulos com ícone ---------- */
.dash { padding-top: calc(var(--safe-top) + 8px); }

.hero-banner {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  margin-bottom: 14px; padding: 15px; min-height: 184px;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, #1c1c21 0%, #0f0f12 46%, #141417 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 40px -24px #000;
}
.hero-banner::after { /* corte diagonal espelhado da referência */
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,.035) 60%, transparent 78%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 8% 100%); pointer-events: none;
}
.hero-sheen { position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 32%, rgba(255,255,255,.05) 44%, transparent 54%),
    radial-gradient(130% 90% at 85% -15%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 60%); }
.wordmark {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
  font-weight: 800; font-size: 46px; letter-spacing: .24em; white-space: nowrap; opacity: .14;
  background: linear-gradient(180deg, #ffffff, #9a9aa2 55%, #3f3f46);
  -webkit-background-clip: text; background-clip: text; color: transparent; pointer-events: none;
}
.hero-top { display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2; }
.hero-eyebrow { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; display: inline-flex; align-items: center; gap: 7px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 8px var(--brand); }
.hero-greet { margin-top: auto; position: relative; z-index: 2; }
.hero-greet h1 { font-size: 26px; font-weight: 800; margin: 0; letter-spacing: -.02em; }
.hero-greet .sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

.railstrip { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); margin-bottom: 4px; }
.railstrip::-webkit-scrollbar { display: none; }
.railitem { flex: 0 0 auto; padding: 11px 15px; border-left: 1px solid var(--line); }
.railitem:first-child { border-left: none; }
.railitem .k { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.railitem .v { font-family: var(--mono); font-weight: 600; font-size: 14px; margin-top: 3px; white-space: nowrap; }

.sec-head { display: flex; align-items: center; gap: 8px; margin: 18px 2px 9px; }
.sec-head .eyebrow { margin: 0; }
.sec-head .aside { margin-left: auto; font-size: 12px; color: var(--muted); }
.icbox { width: 22px; height: 22px; border-radius: 7px; background: var(--surface-2);
  border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.icbox svg { width: 13px; height: 13px; stroke: var(--muted); fill: none; stroke-width: 1.7; }

/* ---------- componentes novos (Etapa 2.1) ---------- */
.head { justify-content: space-between; }
.head-aside { font-size: 12px; color: var(--muted); }
.head-aside.mono { font-weight: 600; }

/* hero em duas colunas com anel de progresso */
.hero { box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 12px 30px -18px rgba(0,0,0,.8); }
.hero::after { content: ''; position: absolute; top: -40%; right: -10%; width: 240px; height: 240px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 16%, transparent), transparent 70%);
  pointer-events: none; }
.hero-row { display: flex; align-items: center; gap: 14px; }
.hero-main { flex: 1; min-width: 0; }
.hero-split { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.hero-split b { color: var(--text); }
.dotsep { color: var(--faint); margin: 0 6px; }

.ring { width: 78px; height: 78px; border-radius: 50%; flex: none; display: grid; place-items: center;
  position: relative; }
.ring-hole { width: 60px; height: 60px; border-radius: 50%; background: var(--surface);
  display: grid; place-items: center; text-align: center; }
.ring-hole span { font-family: var(--mono); font-weight: 700; font-size: 16px; }
.ring-hole small { font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* mini-card de cartão: coluna do meio e barra de limite */
.cartao-mini .cm-mid { flex: 1; min-width: 0; }
.limbar { height: 4px; background: var(--surface-2); border-radius: 3px; overflow: hidden; margin-top: 7px; }
.limbar > i { display: block; height: 100%; border-radius: 3px; }

.link-row { width: 100%; text-align: left; color: var(--pos); font-size: 13px; font-weight: 600;
  padding: 12px 0 2px; border-top: 1px solid var(--line); margin-top: 4px; }

/* polimento geral: profundidade nos cards e toque mais responsivo */
.card { box-shadow: 0 1px 0 rgba(255,255,255,.02) inset; }
[data-cartao], [data-abrir-cartao] { transition: transform .12s ease, background .12s ease; }
[data-cartao]:active, [data-abrir-cartao]:active { transform: scale(.99); }
.chip, .keypad button, .btn-primary, .nav button { transition: all .12s ease; }

/* ---------- Etapa 3: fixas, reserva, ajustes ---------- */
.greet-actions { display: flex; align-items: center; gap: 8px; }
.gearbtn { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); display: grid; place-items: center; }
.gearbtn svg { width: 17px; height: 17px; stroke: var(--muted); fill: none; stroke-width: 1.6; }
.gearbtn:active { background: var(--surface-2); }

.link-mini { color: var(--pos); font-size: 12px; font-weight: 700; }

.fx-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.minibtn { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--amber) 40%, var(--line));
  color: var(--amber); }
.minibtn.ok { color: var(--pos); border-color: color-mix(in srgb, var(--pos) 40%, var(--line)); }
.minibtn:active { background: var(--surface-2); }
.item .ic.tap { cursor: pointer; }

.acoes4 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0 4px; }
.acoes4 button { padding: 13px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font-weight: 600; font-size: 13px; }
.acoes4 button:active { background: var(--surface-2); }

.grid2campos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid2campos .campo { margin: 14px 0; }

.corchip { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; }
.corchip.sel { border-color: var(--text); box-shadow: 0 0 0 2px var(--bg) inset; }

.pin-dots { display: flex; gap: 16px; justify-content: center; }
.pin-dots span { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--faint); }
.pin-dots span.on { background: var(--brand); border-color: var(--brand); box-shadow: 0 0 10px var(--brand); }
.onb.shake { animation: shake .4s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-8px)} 40%,80%{transform:translateX(8px)} }

/* empréstimos */
.emp-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.emp-top .vl { font-family: var(--mono); font-weight: 700; white-space: nowrap; }
.emp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 11px; font-size: 12px; }

/* ---------- atalhos (Pix, Boletos, Extrato, Resumo) ---------- */
.atalhos { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-bottom: 12px; padding-bottom: 2px; }
.atalhos::-webkit-scrollbar { display: none; }
.atalhos button { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  color: var(--text); font-size: 13px; font-weight: 600; }
.atalhos button:active { background: var(--surface-2); }
.atalhos .ai { display: inline-flex; }
.atalhos .ai svg { width: 15px; height: 15px; stroke: var(--pos); fill: none; stroke-width: 1.8; }

/* chave Pix / código truncados na listagem */
.item .nm small .chave { display: inline-block; max-width: 200px; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; vertical-align: bottom; }

/* ---------- Etapa 3.5: conta, previsão, backup ---------- */
.prev-grid { display: flex; gap: 0; }
.prev-grid > div { flex: 1; padding: 0 6px; border-left: 1px solid var(--line); }
.prev-grid > div:first-child { border-left: none; padding-left: 0; }
.prev-grid .k { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.prev-grid .v { font-weight: 700; font-size: 15px; margin-top: 4px; white-space: nowrap; }
.prev-result { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.prev-result b { font-size: 20px; margin-left: 4px; }

.backup-banner { display: block; width: 100%; text-align: left; margin-bottom: 12px;
  background: color-mix(in srgb, var(--neg) 12%, var(--surface)); color: var(--neg);
  border: 1px solid color-mix(in srgb, var(--neg) 35%, var(--line)); border-radius: var(--r-md);
  padding: 12px 14px; font-size: 12.5px; font-weight: 600; }

.muted { color: var(--muted); }
.sep-stat { margin: 0 0 10px; }
.toast { position: fixed; left: 50%; bottom: calc(var(--nav-h) + var(--safe-bottom) + 20px);
  transform: translateX(-50%); background: var(--surface-2); border: 1px solid var(--line);
  color: var(--text); padding: 10px 16px; border-radius: 999px; font-size: 13px; z-index: 70;
  opacity: 0; transition: opacity .2s; pointer-events: none; }
.toast.show { opacity: 1; }
