:root {
  --sidebar: #0a1f18;
  --sidebar-mid: #0f2e24;
  --sidebar-accent: #145c45;
  --accent: #0e8c63;
  --accent-soft: #d1fae5;
  --accent-dark: #0a6f4e;
  --surface: #f1f6f4;
  --card: #fff;
  --border: #dce8e2;
  --border-light: #eef5f1;
  --text: #1a2420;
  --text-2: #5a6b64;
  --muted: #8a9a93;
  --on-dark: #a8c4b8;
  --success: #0e8c63;
  --warning: #f59e0b;
  --danger: #e5484d;
  --info: #3b82f6;
  --violet: #7c3aed;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(10, 31, 24, .06);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --sidebar-w: 248px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Roboto, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--surface);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-dark);
  background: #fff;
}

.ico { width: 20px; height: 20px; display: block; flex: none; }

.app {
  min-height: 100dvh;
  display: flex;
  background: transparent;
}

.workspace {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f1f6f4 0%, #f7faf8 50%, #e8f4ee 100%);
}

.topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: calc(16px + var(--safe-t)) 16px 0;
}
.topbar h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.3px;
}
.topbar .sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 400;
  line-height: 1.4;
}
.icon-btn {
  width: 42px; height: 42px; border: 0; border-radius: 12px;
  background: transparent; color: var(--text);
  display: grid; place-items: center;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 11px; font-weight: 700;
}
.live-badge i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.page {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px calc(28px + var(--safe-b));
}

@media (min-width: 768px) {
  .topbar { padding: 16px 24px 0; }
  .page { padding: 24px 24px calc(36px + var(--safe-b)); }
  .icon-btn.menu { display: none; }
  .sidebar {
    display: flex;
    transition: margin-left .34s cubic-bezier(.22, 1, .36, 1);
  }
  .app.sidebar-off .icon-btn.menu { display: grid; }
  .app.sidebar-off .sidebar {
    margin-left: calc(var(--sidebar-w) * -1);
    pointer-events: none;
  }
}

.sidebar {
  width: var(--sidebar-w);
  flex: none;
  display: none;
  flex-direction: column;
  background: linear-gradient(160deg, #0a1f18 0%, #0f2e24 55%, #145c45 100%);
  border-right: 1px solid #1e4a3a;
  color: #fff;
  min-height: 100dvh;
}
.sidebar .brand {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 12px 16px 20px;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(160deg, #0e8c63, #14a078);
  display: grid; place-items: center;
  font-weight: 800; font-size: 12px; letter-spacing: .04em;
}
.sidebar .brand b { display: block; font-size: 15px; font-weight: 800; }
.sidebar .brand span { display: block; font-size: 11px; color: var(--on-dark); font-weight: 500; }
.sidebar nav { flex: 1; padding: 0 12px; overflow: auto; }
.sidebar .nav {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left; border: 0;
  background: transparent; color: var(--on-dark);
  padding: 12px; border-radius: 12px;
  font-size: 13.5px; font-weight: 500; margin-bottom: 4px;
}
.sidebar .nav .ico { color: var(--on-dark); }
.sidebar .nav.on { background: rgba(255,255,255,.12); color: #fff; font-weight: 700; }
.sidebar .nav.on .ico { color: #fff; }
.sidebar .out {
  margin: 8px 16px calc(16px + var(--safe-b));
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: 0; color: var(--on-dark);
  font-weight: 500; padding: 10px 0;
}
.sidebar .hide-side {
  width: 32px; height: 32px; color: var(--on-dark);
  border-radius: 10px;
}
.sidebar .hide-side:hover { background: rgba(255,255,255,.1); color: #fff; }

@media (min-width: 768px) {
  .sidebar { display: flex; }
}

.drawer-bg {
  position: fixed; inset: 0; background: rgba(10, 22, 18, .45); z-index: 30;
}
.drawer-dismiss {
  position: absolute; inset: 0; border: 0; background: transparent; padding: 0;
}
.drawer {
  position: relative; z-index: 1;
  width: min(84vw, 260px); height: 100%;
  background: linear-gradient(160deg, #0a1f18 0%, #0f2e24 55%, #145c45 100%);
  display: flex; flex-direction: column;
  padding-top: var(--safe-t);
}
.drawer .brand { display: flex; align-items: center; gap: 12px; padding: 20px; color: #fff; }
.drawer .brand b { display: block; font-size: 15px; }
.drawer .brand span { font-size: 11px; color: var(--on-dark); }
.drawer nav { flex: 1; padding: 0 12px; overflow: auto; }
.drawer .nav {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left; border: 0;
  background: transparent; color: var(--on-dark);
  padding: 12px; border-radius: 12px;
  font-size: 13.5px; font-weight: 500; margin-bottom: 4px;
}
.drawer .nav.on { background: rgba(255,255,255,.12); color: #fff; font-weight: 700; }
.drawer .nav.on .ico, .drawer .nav.on { color: #fff; }
.drawer .out {
  margin: 8px 16px calc(16px + var(--safe-b));
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: 0; color: var(--on-dark);
}

.panel {
  background: var(--card);
  border: 1px solid rgba(220, 232, 226, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 14px;
}
.panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px 16px;
}
.panel-head h2 { margin: 0; font-size: 16px; font-weight: 700; }
.panel-head p { margin: 2px 0 0; font-size: 12px; color: var(--text-2); }
.panel-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
  background: rgba(14, 140, 99, .12); color: var(--accent);
}
.panel-ico.warn { background: rgba(245, 158, 11, .12); color: var(--warning); }
.panel-ico.info { background: rgba(59, 130, 246, .12); color: var(--info); }
.panel-ico.violet { background: rgba(124, 58, 237, .12); color: var(--violet); }
.panel-ico.navy { background: rgba(10, 111, 78, .12); color: var(--accent-dark); }
.panel-body { padding: 20px; border-top: 1px solid var(--border); }
.panel-body.tight { padding: 0; }

.hero {
  padding: 22px 22px 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0a1f18, #0f3d2e 48%, #0e8c63);
  box-shadow: 0 12px 28px rgba(10, 111, 78, .28);
  margin-bottom: 16px;
}
.hero-top { display: flex; align-items: flex-start; gap: 12px; }
.hero h2 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.3px; }
.hero .addr { margin-top: 4px; font-size: 12.5px; color: rgba(255,255,255,.7); }
.hero-chip {
  margin-left: auto;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11.5px; font-weight: 600;
  white-space: nowrap;
}
.hero .kicker { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }
.hero .value {
  margin-top: 4px; font-size: 32px; font-weight: 800;
  letter-spacing: -.8px; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.hero-split div {
  background: rgba(255,255,255,.1);
  border-radius: 12px; padding: 10px 12px;
}
.hero-split span { display: block; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65); }
.hero-split b { display: block; margin-top: 2px; font-size: 14px; font-weight: 800; }
.hero-net { margin-top: 12px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }

.metric-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .metric-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .metric-grid { grid-template-columns: repeat(4, 1fr); }
}
.metric {
  min-height: 96px;
  background: #fff;
  border: 1px solid rgba(220, 232, 226, .85);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 18px rgba(14, 140, 99, .06);
}
.metric-ico {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; flex: none;
}
.metric b {
  display: block; font-size: 16.5px; font-weight: 800;
  letter-spacing: -.25px; font-variant-numeric: tabular-nums;
}
.metric span { display: block; font-size: 11.5px; color: var(--text-2); font-weight: 500; margin-bottom: 3px; }

.loc-grid { display: grid; gap: 14px; }
@media (min-width: 720px) {
  .loc-grid { grid-template-columns: 1fr 1fr; }
}

.chips {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 2px; margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.chip {
  flex: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12.5px; font-weight: 600; color: var(--text-2);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.on { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.chip.on:hover { color: #fff; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.filter-bar .chips {
  margin: 0;
  padding: 0;
  overflow: visible;
  flex-wrap: wrap;
}
.filter-bar .chips + .chips {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
@media (max-width: 680px) {
  .filter-bar .chips + .chips {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
  }
}

.row { display: flex; gap: 10px; }
.row > * { flex: 1; min-width: 0; }
.muted { color: var(--text-2); }
.ok { color: var(--success); }
.bad { color: var(--danger); }
.navy { color: var(--accent-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; border-radius: 12px; border: 0; padding: 0 18px;
  font-weight: 600; font-size: 14px; width: 100%;
}
.btn-primary { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: var(--accent-soft); color: var(--accent-dark); }
.btn-danger { background: #fdecec; color: var(--danger); }
.btn-row { display: flex; gap: 8px; margin-top: 14px; }
.btn-row .btn { flex: 1; }

.search {
  margin-bottom: 12px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%238a9a93' stroke-width='1.8' stroke-linecap='round' d='M11.5 11.5 16 16m-2.5-7a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/>") no-repeat 14px center;
  padding-left: 42px;
}

.tile {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  width: 100%; text-align: left; background: transparent; border-left: 0; border-right: 0; border-top: 0;
  border-radius: 0;
}
.tile:last-child { border-bottom: 0; }
.tile-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
}
.tile b { font-weight: 700; }
.tile .meta { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.tile .amt { font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.tile .st { font-size: 11px; font-weight: 700; margin-top: 4px; }

.status-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
}
.status-row .tile-ico { width: 36px; height: 36px; border-radius: 10px; }
.status-row span { flex: 1; }
.status-row b { font-weight: 800; font-variant-numeric: tabular-nums; }

.pl-line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 5px 0; font-size: 14px; font-variant-numeric: tabular-nums;
}
.pl-line.b { font-weight: 800; }
.pl-line.ind { color: var(--text-2); font-weight: 500; }
.pl-line.neg span:last-child { color: var(--danger); }
.pl-div { border-bottom: 1px solid var(--border); margin: 8px 0 12px; }

.pin {
  letter-spacing: .42em; text-align: center; font-size: 28px; font-weight: 800;
  padding: 16px; background: #fff;
}
.err { color: var(--danger); font-weight: 600; font-size: 13px; margin: 10px 0 0; text-align: center; }
.note { font-size: 13px; color: var(--text-2); margin: 0 0 12px; line-height: 1.45; }

.login {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 20px calc(32px + var(--safe-b));
  background:
    radial-gradient(1200px 600px at 15% 20%, #9fd4d0 0%, transparent 55%),
    radial-gradient(900px 500px at 90% 10%, #f3e7a8 0%, transparent 50%),
    radial-gradient(800px 600px at 80% 90%, #cbb8e6 0%, transparent 55%),
    linear-gradient(160deg, #8ec9c6 0%, #d7ead8 42%, #efe4b4 78%, #d5c6ea 100%);
}
.login-box {
  position: relative; z-index: 1;
  width: min(100%, 340px);
  margin-top: 28px;
  padding: 52px 26px 26px;
  text-align: center;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(40, 70, 90, .14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.login-box .brand-mark {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  margin: 0; width: 72px; height: 72px;
  font-size: 18px; border-radius: 50%;
}
.login-box .brand-logo { margin: 0; }
.login-box h1 {
  margin: 8px 0 4px;
  font-size: 28px; font-weight: 500;
  letter-spacing: -.3px; color: #3d4a50;
}
.login-box > p {
  margin: 0 0 22px;
  font-size: 13px; font-weight: 500;
  color: #7b888e; letter-spacing: 0;
  text-transform: none;
}
.login-store { display: none; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: #fff; overflow: hidden; flex: none;
  display: grid; place-items: center;
}
.sidebar .brand-logo, .drawer .brand-logo {
  border: 1px solid rgba(255,255,255,.16);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-logo-lg {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; padding: 8px; box-sizing: border-box;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.85);
  background: #fff;
  box-shadow: 0 10px 22px rgba(40, 70, 90, .16);
}
.login-field {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 14px;
  padding: 0 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(40, 70, 90, .04);
  text-align: left;
}
.login-field .ico { width: 18px; height: 18px; color: #9aa7ac; flex: none; }
.login-field-input,
.login-box input.login-field-input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0;
  border-radius: 0;
  letter-spacing: .28em;
  font-size: 16px; font-weight: 700;
  color: #3d4a50;
}
.login-field-input::placeholder {
  letter-spacing: 0; font-weight: 500; color: #b0babd;
}
.login-field-input:focus { background: transparent; border: 0; }
.login-go,
.login-box .btn-primary.login-go {
  margin-top: 4px; min-height: 48px;
  border-radius: 12px; font-size: 15px; font-weight: 600;
  background: #6a9aa3; color: #fff;
  box-shadow: none;
}
.login-box .btn-primary.login-go:active { transform: scale(.99); }
.login .err { margin: 0 0 12px; }

.sheet {
  position: fixed; inset: 0; background: rgba(10, 22, 18, .45); z-index: 40;
  display: flex; align-items: flex-end; justify-content: center;
}
.sheet-dismiss {
  position: absolute; inset: 0; border: 0; background: transparent; padding: 0;
}
.sheet .panel-sheet {
  position: relative; z-index: 1;
  background: #fff; width: 100%; max-width: 560px;
  border-radius: 22px 22px 0 0;
  padding: 10px 18px calc(20px + var(--safe-b));
  max-height: 92dvh; overflow: auto;
}
.sheet .panel-sheet::before {
  content: ""; display: block; width: 40px; height: 4px;
  background: #d7e0db; border-radius: 99px; margin: 4px auto 14px;
}
.sheet h2 { margin: 0 0 14px; font-size: 18px; font-weight: 800; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }

.empty { text-align: center; padding: 40px 16px; color: var(--text-2); font-size: 13px; }
.badge {
  display: inline-flex; align-items: center;
  border-radius: 999px; padding: 4px 9px;
  font-size: 11px; font-weight: 700;
  background: var(--accent-soft); color: var(--accent-dark);
}
.badge.off { background: #eef1ef; color: var(--muted); }
.badge.live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #16a34a; margin-right: 6px;
}

.fab {
  position: fixed; right: 16px; bottom: calc(18px + var(--safe-b));
  width: 56px; height: 56px; border-radius: 18px; border: 0;
  background: var(--accent-dark); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(10, 111, 78, .35);
  z-index: 15;
}
.time-col { text-align: right; min-width: 56px; }
.time-col small { display: block; color: var(--muted); font-weight: 600; font-size: 10px; text-transform: uppercase; }
.time-col b { font-variant-numeric: tabular-nums; font-size: 14px; font-weight: 700; }

.toast {
  position: fixed; left: 50%; bottom: calc(24px + var(--safe-b));
  transform: translateX(-50%);
  background: #1a2420; color: #fff; padding: 11px 16px; border-radius: 14px;
  font-size: 13px; font-weight: 600; z-index: 50; max-width: 90%;
}
.loading {
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-2); font-weight: 600;
  background: var(--surface);
}
.loading::before {
  content: ""; width: 28px; height: 28px;
  border: 3px solid #d9e6df; border-top-color: var(--accent);
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.strike { text-decoration: line-through; color: var(--muted); }
.grow { flex: 1; min-width: 0; }
.seg {
  display: flex; gap: 4px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 4px; margin-bottom: 12px;
}
.seg button {
  flex: 1; border: 0; background: transparent; border-radius: 11px;
  padding: 9px 6px; font-weight: 700; font-size: 12px; color: var(--text-2);
}
.seg button.on { background: var(--accent-dark); color: #fff; }
.date-btn { min-height: 44px; font-size: 12.5px; }
.ava {
  width: 40px; height: 40px; border-radius: 13px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; flex: none;
  background: var(--accent-soft); color: var(--accent-dark);
}
.ava.a1 { background: #eef2ff; color: #3d4fd0; }
.ava.a2 { background: #fff4e5; color: #b45309; }
.ava.a3 { background: #fdecef; color: #be123c; }
.person { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.person:last-child { border-bottom: 0; padding-bottom: 0; }
.person:first-child { padding-top: 0; }
.person .meta { font-size: 12px; color: var(--text-2); margin-top: 2px; }

.pin-vault {
  background: var(--card);
  border: 1px solid rgba(220, 232, 226, .9);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pin-vault-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 18px 16px;
}
.pin-vault-head h2 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.2px; }
.pin-vault-head p { margin: 3px 0 0; font-size: 12.5px; color: var(--text-2); }
.pin-eye {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); background: #fff;
  color: var(--text-2); border-radius: 999px;
  padding: 8px 12px; font-size: 12px; font-weight: 700;
  flex: none;
}
.pin-eye .ico { width: 16px; height: 16px; }
.pin-eye.on { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.pin-sys {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
  padding: 0 14px 14px;
}
@media (min-width: 720px) {
  .pin-sys { grid-template-columns: 1fr 1fr; }
}
.pin-card {
  background: linear-gradient(180deg, #f7fbf9, #eef6f2);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 16px;
}
.pin-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pin-kicker {
  font-size: 11px; font-weight: 700; color: var(--accent-dark);
  text-transform: uppercase; letter-spacing: .04em;
}
.pin-card h3 { margin: 10px 0 2px; font-size: 16px; font-weight: 800; }
.pin-card p { margin: 0 0 12px; font-size: 12.5px; color: var(--text-2); }
.pin-digit {
  letter-spacing: .42em; text-align: center;
  font-size: 20px; font-weight: 800;
  font-variant-numeric: tabular-nums;
  max-width: 168px; padding: 12px 8px 12px 16px;
  background: #fff;
}
.pin-digit.mask { -webkit-text-security: disc; }
.pin-staff { padding: 4px 8px 8px; border-top: 1px solid var(--border); }
.pin-staff-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 10px 6px;
}
.pin-staff-head h3 { margin: 0; font-size: 14px; font-weight: 800; }
.pin-staff-head span { font-size: 12px; color: var(--muted); font-weight: 600; }
.pin-staff-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #f7fbf9;
  margin: 4px 6px;
}
.pin-staff-row .pin-digit { margin-left: auto; max-width: 148px; }
.pin-staff-row .meta { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.pin-vault-foot {
  padding: 8px 16px 16px;
  border-top: 1px solid var(--border);
}
.pin-vault-foot .btn { width: 100%; }
