/* ============================================================================
   WestPay — Design System
   Palette: Ink #0B0F1A · Surface #141A2E · Gold #F0B429 · Teal #14B8A6 ·
            Coral #FF6B5F · Paper #F7F5F0
   Type: Sora (display) · Inter (body) · JetBrains Mono (ledger / amounts)
   Signature: recharge-card receipts with a serrated tear edge, and a wallet
   card with a faint repeating ₦ watermark — both nod to the physical scratch
   cards this app replaces.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --ink: #0B0F1A;
  --surface: #141A2E;
  --surface-2: #1B2338;
  --border: #262F49;
  --gold: #F0B429;
  --gold-dim: #7A5A16;
  --teal: #14B8A6;
  --coral: #FF6B5F;
  --paper: #F7F5F0;
  --text-hi: #F5F6FA;
  --text-mid: #A9B0C6;
  --text-low: #6B7290;

  --bg: var(--paper);
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --fg: #16192B;
  --fg-mid: #565D78;
  --fg-low: #8A90A8;
  --line: #E7E3D9;
  --shell-bg: #EFECE3;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 8px 30px -12px rgba(11, 15, 26, 0.18);
  --shadow-pop: 0 20px 60px -20px rgba(11, 15, 26, 0.35);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="dark"] {
  --bg: var(--ink);
  --bg-elevated: var(--surface);
  --bg-card: var(--surface);
  --fg: var(--text-hi);
  --fg-mid: var(--text-mid);
  --fg-low: var(--text-low);
  --line: var(--border);
  --shell-bg: #070A12;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--shell-bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}
h1, h2, h3, h4, .display { font-family: var(--font-display); letter-spacing: -0.01em; }
button { font-family: inherit; }
a { color: inherit; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

/* ---------- App shell ---------- */
#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  #app { max-width: 520px; box-shadow: var(--shadow-pop); }
}

.hidden { display: none !important; }

/* ---------- Auth screens ---------- */
.auth-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px 48px;
  background:
    radial-gradient(circle at 15% 0%, rgba(240,180,41,0.14), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(20,184,166,0.10), transparent 45%),
    var(--ink);
  color: var(--text-hi);
}
.auth-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.auth-brand .logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #FFDD8A);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 18px;
}
.auth-brand .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; }

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.auth-title { font-size: 24px; font-weight: 700; margin: 0 0 6px; }
.auth-sub { color: var(--text-mid); font-size: 14px; margin: 0 0 24px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-mid); }
[data-theme="dark"] .field label,
.auth-card .field label { color: var(--text-mid); }
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #0F1425;
  color: var(--text-hi);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--text-low); }
.field input:focus, .field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.18);
}
.field-error { color: var(--coral); font-size: 12.5px; margin-top: 6px; display: none; }
.field.has-error input { border-color: var(--coral); }
.field.has-error .field-error { display: block; }
.field-hint { font-size: 12.5px; color: var(--text-low); margin-top: 6px; }

.checkbox-row { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: var(--text-mid); }
.checkbox-row input { accent-color: var(--gold); width: 16px; height: 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .12s ease, opacity .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: linear-gradient(135deg, var(--gold), #FFDD8A); color: #241902; box-shadow: 0 10px 24px -10px rgba(240,180,41,0.55); }
.btn-secondary { background: var(--surface-2); color: var(--text-hi); border: 1px solid var(--border); }
.btn-teal { background: var(--teal); color: #04211D; }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn-danger { background: var(--coral); color: #2B0906; }
.btn-block-outline { background: transparent; border: 1px solid var(--coral); color: var(--coral); }
.btn-sm { padding: 9px 14px; font-size: 13px; width: auto; }

.auth-links { display: flex; justify-content: space-between; margin-top: 18px; font-size: 13.5px; }
.auth-links button.link, .link-btn {
  background: none; border: none; color: var(--gold); cursor: pointer; font-size: inherit; padding: 0; font-weight: 600;
}
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-mid); }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(0,0,0,0.2); border-top-color: currentColor;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top bar & bottom nav ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.topbar-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; color: var(--fg);
}
.icon-btn .dot {
  position: absolute; top: 7px; right: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--coral); border: 1.5px solid var(--bg-card);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #16192B; font-size: 15px; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

main.view { padding: 20px 20px 100px; flex: 1; }

.bottom-nav {
  position: sticky; bottom: 0; z-index: 20;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; padding: 6px 2px; cursor: pointer;
  color: var(--fg-low); font-size: 11px; font-weight: 600;
}
.nav-item svg { width: 22px; height: 22px; }
.nav-item.active { color: var(--gold-dim); }
[data-theme="dark"] .nav-item.active { color: var(--gold); }

/* ---------- Wallet card (signature element) ---------- */
.wallet-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  background:
    radial-gradient(circle at 90% -10%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, #171A2E 0%, #0B0F1A 100%);
  color: var(--text-hi);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wallet-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -20deg,
    transparent 0 28px,
    rgba(240,180,41,0.05) 28px 30px
  );
  pointer-events: none;
}
.wallet-card::after {
  content: "\20A6";
  position: absolute; right: -10px; bottom: -34px;
  font-family: var(--font-display); font-weight: 800; font-size: 160px;
  color: rgba(240,180,41,0.06); pointer-events: none; line-height: 1;
}
.wallet-label { font-size: 13px; color: var(--text-mid); margin: 0 0 6px; position: relative; }
.wallet-balance { font-family: var(--font-mono); font-size: 34px; font-weight: 700; margin: 0 0 18px; position: relative; letter-spacing: -0.5px; }
.wallet-balance.blurred { filter: blur(9px); user-select: none; }
.wallet-eye { background: none; border: none; color: var(--text-mid); cursor: pointer; margin-left: 10px; vertical-align: middle; }
.wallet-actions { display: flex; gap: 10px; position: relative; }
.wallet-actions .btn { width: auto; flex: 1; padding: 12px; font-size: 14px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 16px;
}
.stat-card .stat-label { font-size: 12.5px; color: var(--fg-low); margin-bottom: 6px; }
.stat-card .stat-value { font-family: var(--font-mono); font-size: 19px; font-weight: 700; }

.section-title { display: flex; align-items: center; justify-content: space-between; margin: 28px 0 12px; }
.section-title h3 { margin: 0; font-size: 16px; }
.section-title .see-all { font-size: 13px; color: var(--teal); font-weight: 600; background: none; border: none; cursor: pointer; }

/* ---------- Quick actions ---------- */
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.quick-action {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 8px; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.quick-action .qa-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(240,180,41,0.14); color: var(--gold-dim);
}
[data-theme="dark"] .quick-action .qa-icon { color: var(--gold); }
.quick-action span { font-size: 11.5px; font-weight: 600; }

/* ---------- Lists / rows ---------- */
.tx-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.tx-row:last-child { border-bottom: none; }
.tx-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--shell-bg); flex-shrink: 0; }
.tx-body { flex: 1; min-width: 0; }
.tx-title { font-weight: 600; font-size: 14.5px; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-sub { font-size: 12.5px; color: var(--fg-low); margin: 0; }
.tx-amount { text-align: right; font-family: var(--font-mono); font-weight: 700; font-size: 14.5px; }
.tx-amount.negative { color: var(--coral); }
.tx-amount.positive { color: var(--teal); }
.tx-row-clickable { cursor: pointer; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11.5px; font-weight: 700; }
.badge-success { background: rgba(20,184,166,0.15); color: #0B8577; }
.badge-pending { background: rgba(240,180,41,0.18); color: #8A6300; }
.badge-failed { background: rgba(255,107,95,0.15); color: #C43A2E; }
[data-theme="dark"] .badge-success { color: var(--teal); }
[data-theme="dark"] .badge-pending { color: var(--gold); }
[data-theme="dark"] .badge-failed { color: var(--coral); }

/* ---------- Cards / forms in-app ---------- */
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.card + .card { margin-top: 14px; }

.network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.network-pill {
  border: 2px solid var(--line); border-radius: var(--radius-md); background: var(--bg-card);
  padding: 12px 6px; text-align: center; cursor: pointer; font-size: 12px; font-weight: 700;
}
.network-pill .net-dot { width: 26px; height: 26px; border-radius: 50%; margin: 0 auto 8px; }
.network-pill.selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,0.16); }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0 18px; }
.amount-chip {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card);
  padding: 12px 4px; text-align: center; font-weight: 700; font-family: var(--font-mono); cursor: pointer; font-size: 14px;
}
.amount-chip.selected { border-color: var(--teal); color: var(--teal); background: rgba(20,184,166,0.08); }

.plan-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 18px; }
.plan-row {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 13px 15px; cursor: pointer;
}
.plan-row.selected { border-color: var(--teal); background: rgba(20,184,166,0.06); }
.plan-row .plan-name { font-weight: 600; font-size: 14px; }
.plan-row .plan-validity { font-size: 12px; color: var(--fg-low); }
.plan-row .plan-price { font-family: var(--font-mono); font-weight: 700; }

.fav-chip-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 4px; }
.fav-chip {
  flex-shrink: 0; border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px;
  background: var(--bg-card); font-size: 12.5px; font-family: var(--font-mono); cursor: pointer; white-space: nowrap;
}

/* ---------- Receipt (signature: torn recharge-card edge) ---------- */
.receipt-wrap { display: flex; flex-direction: column; align-items: center; padding: 10px 0 26px; }
.receipt {
  width: 100%; max-width: 340px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  padding: 26px 22px 18px;
  text-align: center;
  position: relative;
}
.receipt-status-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  background: rgba(20,184,166,0.15); color: var(--teal);
}
.receipt-status-icon.failed { background: rgba(255,107,95,0.15); color: var(--coral); }
.receipt-status-icon.pending { background: rgba(240,180,41,0.18); color: var(--gold-dim); }
.receipt-amount { font-family: var(--font-mono); font-size: 28px; font-weight: 700; margin: 0 0 4px; }
.receipt-desc { color: var(--fg-low); font-size: 13.5px; margin-bottom: 18px; }
.receipt-line { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 0; border-top: 1px dashed var(--line); }
.receipt-line:first-of-type { border-top: none; }
.receipt-line span:first-child { color: var(--fg-low); }
.receipt-line span:last-child { font-family: var(--font-mono); font-weight: 600; text-align: right; }
.receipt-tear {
  width: 100%; max-width: 340px; height: 16px;
  background-image: radial-gradient(circle at 8px 0, transparent 8px, var(--shell-bg) 8.5px);
  background-size: 16px 16px; background-repeat: repeat-x;
  margin-top: -1px;
}
.receipt-actions { display: flex; gap: 10px; width: 100%; max-width: 340px; margin-top: 18px; }

/* ---------- Filters ---------- */
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 16px; }
.filter-chip {
  flex-shrink: 0; border: 1px solid var(--line); background: var(--bg-card); border-radius: 100px;
  padding: 8px 15px; font-size: 12.5px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
[data-theme="dark"] .filter-chip.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.custom-date-row { display: flex; gap: 8px; margin-bottom: 16px; }
.custom-date-row input { flex: 1; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-card); color: var(--fg); }

/* ---------- Empty / error / skeleton states ---------- */
.empty-state { text-align: center; padding: 48px 20px; color: var(--fg-low); }
.empty-state .empty-icon { font-size: 38px; margin-bottom: 12px; }
.empty-state h4 { margin: 0 0 6px; color: var(--fg); font-size: 15px; }
.empty-state p { margin: 0; font-size: 13.5px; }

.error-state { text-align: center; padding: 32px 20px; color: var(--coral); }
.error-state button { margin-top: 12px; }

.skeleton { background: linear-gradient(90deg, var(--line) 25%, rgba(255,255,255,0.5) 37%, var(--line) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: 8px; }
[data-theme="dark"] .skeleton { background: linear-gradient(90deg, var(--surface-2) 25%, #263153 37%, var(--surface-2) 63%); background-size: 400% 100%; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.skeleton-line { height: 14px; margin-bottom: 8px; }
.skeleton-card { height: 88px; border-radius: var(--radius-md); margin-bottom: 12px; }

/* ---------- Modal / sheet ---------- */
.sheet-backdrop {
  position: fixed; inset: 0; background: rgba(11,15,26,0.55); z-index: 50;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity .2s ease;
}
.sheet-backdrop.open { opacity: 1; }
.sheet {
  width: 100%; max-width: 480px; background: var(--bg-elevated);
  border-radius: 24px 24px 0 0; padding: 22px 22px calc(22px + env(safe-area-inset-bottom));
  transform: translateY(100%); transition: transform .25s cubic-bezier(.32,.72,0,1);
  max-height: 86vh; overflow-y: auto;
}
.sheet-backdrop.open .sheet { transform: translateY(0); }
.sheet-handle { width: 40px; height: 4px; background: var(--line); border-radius: 4px; margin: 0 auto 16px; }
.sheet-title { font-size: 18px; font-weight: 700; margin: 0 0 16px; }

/* ---------- Toasts ---------- */
.toast-container {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 8px; width: min(94vw, 420px);
}
.toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; border-radius: 12px; padding: 13px 14px;
  box-shadow: var(--shadow-pop); opacity: 0; transform: translateY(-12px); transition: all .2s ease;
  font-size: 13.5px;
}
.toast-in { opacity: 1; transform: translateY(0); }
.toast-out { opacity: 0; transform: translateY(-12px); }
.toast-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; }
.toast-success .toast-icon { background: var(--teal); color: #04211D; }
.toast-error .toast-icon { background: var(--coral); color: #2B0906; }
.toast-info .toast-icon { background: var(--gold); color: #241902; }
.toast-warning .toast-icon { background: #FFD166; color: #241902; }
.toast-message { flex: 1; }
.toast-close { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 16px; }

/* ---------- Notif drawer ---------- */
.notif-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.notif-item.unread { background: rgba(240,180,41,0.05); margin: 0 -20px; padding: 14px 20px; }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.notif-title { font-weight: 600; font-size: 14px; margin: 0 0 3px; }
.notif-body { font-size: 13px; color: var(--fg-low); margin: 0 0 4px; }
.notif-time { font-size: 11.5px; color: var(--fg-low); }

/* ---------- Toggles ---------- */
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.toggle-row:last-child { border-bottom: none; }
.toggle-row .toggle-label { font-size: 14.5px; font-weight: 600; }
.toggle-row .toggle-sub { font-size: 12.5px; color: var(--fg-low); margin-top: 2px; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0; background: var(--line); border-radius: 100px; cursor: pointer; transition: background .2s ease;
}
.switch .track::before {
  content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform .2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.switch input:checked + .track { background: var(--teal); }
.switch input:checked + .track::before { transform: translateX(20px); }

.theme-toggle-group { display: flex; gap: 10px; }
.theme-option {
  flex: 1; border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 14px; text-align: center;
  cursor: pointer; background: var(--bg-card);
}
.theme-option.selected { border-color: var(--gold); }
.theme-option .theme-icon { font-size: 20px; margin-bottom: 6px; }

/* ---------- Verify email screen ---------- */
.verify-illustration { font-size: 48px; text-align: center; margin-bottom: 18px; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.divider-or { display: flex; align-items: center; gap: 10px; color: var(--text-low); font-size: 12.5px; margin: 18px 0; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* Install banner */
.install-banner {
  position: fixed; bottom: 84px; left: 50%; transform: translateX(-50%);
  width: min(92vw, 440px); background: var(--ink); color: #fff; border-radius: var(--radius-md);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-pop); z-index: 60;
}
.install-banner p { margin: 0; font-size: 13px; flex: 1; }
