/* Payment Tracking Dashboard — clean light aesthetic */

:root {
  --bg:        #f7f7f4;
  --surface:   #ffffff;
  --surface-2: #fafaf7;
  --border:    #e8e8e2;
  --border-2:  #f0f0ea;
  --text:      #18181a;
  --muted:     #6b6b66;
  --faint:     #9a9a93;

  --accent:    #2D5BFF;
  --ok:        #1F8A5B;
  --warn:      #C77A0A;
  --hot:       #D4571C;
  --danger:    #C9302E;
  --crit:      #9B1C1C;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 0 rgba(20,20,20,0.03);
  --shadow:    0 1px 2px rgba(20,20,20,0.04), 0 1px 0 rgba(20,20,20,0.02);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-feature-settings: "tnum"; letter-spacing: -0.01em; }
.num  { font-variant-numeric: tabular-nums; }

button { font: inherit; color: inherit; cursor: pointer; }

/* ───── Layout ───── */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.content {
  padding: 24px 32px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

/* ───── Sidebar ───── */
.nav {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid var(--border-2);
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.brand-line1 { font-weight: 600; font-size: 13.5px; }
.brand-line2 { color: var(--muted); font-size: 11.5px; }

.nav-section { display: flex; flex-direction: column; gap: 2px; }
.nav-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 4px 8px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 0;
  background: transparent;
  border-radius: var(--r-sm);
  color: var(--text);
  text-align: left;
  font-size: 13px;
}
.nav-item:hover { background: var(--bg); }
.nav-item.active {
  background: color-mix(in oklch, var(--accent) 9%, transparent);
  color: var(--accent);
  font-weight: 600;
}
.nav-item.active .nav-icon { color: var(--accent); }
.nav-icon { color: var(--faint); font-size: 14px; width: 16px; text-align: center; }
.nav-label { flex: 1; }
.nav-count {
  background: var(--accent);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.nav-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-2); }
.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px;
  border-radius: var(--r-sm);
}
.nav-user:hover { background: var(--bg); }
.nav-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
  color: var(--muted);
}
.nav-uinfo { flex: 1; min-width: 0; }
.nav-uname { font-size: 12.5px; font-weight: 600; }
.nav-urole { font-size: 11px; color: var(--muted); }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }

/* ───── Topbar ───── */
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
}
.crumb {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.crumb-sep { color: var(--faint); margin: 0 4px; }
.crumb-cur { color: var(--text); font-weight: 500; }
.page-title { margin: 0; font-size: 22px; letter-spacing: -0.02em; font-weight: 700; }
.page-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }

.topbar-right { display: flex; align-items: center; gap: 8px; }
.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  width: 340px;
  height: 34px;
}
.search input {
  border: 0; background: transparent; outline: 0;
  flex: 1; font-size: 13px; color: var(--text);
}
.search input::placeholder { color: var(--faint); }
.search-i { color: var(--faint); font-size: 14px; }
.search kbd {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}

.icon-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--muted);
}
.icon-btn:hover { color: var(--text); border-color: var(--text); }

.primary-btn {
  height: 34px;
  padding: 0 14px;
  background: var(--text);
  color: var(--surface);
  border: 1px solid var(--text);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
}
.primary-btn:hover { background: #000; }
.ghost-btn {
  height: 30px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 12.5px;
}
.ghost-btn:hover { color: var(--text); border-color: var(--text); }

/* ───── Switcher ───── */
.switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.seg {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 3px;
  gap: 2px;
}
.seg-btn {
  border: 0; background: transparent;
  padding: 5px 14px;
  font-size: 12.5px;
  color: var(--muted);
  border-radius: 4px;
  font-weight: 500;
}
.seg-btn.on {
  background: var(--text);
  color: white;
}
.switcher-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.dot.live { background: var(--ok); box-shadow: 0 0 0 3px color-mix(in oklch, var(--ok) 18%, transparent); }

/* ───── Cards ───── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-2);
}
.card-h h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.card-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }

.legend { display: flex; gap: 14px; font-size: 11.5px; color: var(--muted); }
.legend .lg { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }

/* ───── KPI tiles ───── */
.kpi-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px 14px;
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow);
  transition: border-color 120ms;
}
.kpi:hover { border-color: var(--text); }
.kpi-top { display: flex; align-items: center; justify-content: space-between; }
.kpi-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
}
.kpi-delta {
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.kpi-delta.bad  { background: color-mix(in oklch, var(--danger) 10%, transparent); color: var(--danger); }
.kpi-delta.good { background: color-mix(in oklch, var(--ok) 12%, transparent); color: var(--ok); }
.kpi-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.kpi-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi-footer {
  display: flex;
  align-items: center;
  padding-top: 8px;
  border-top: 1px dashed var(--border-2);
}
.kpi-rate { display: inline-flex; align-items: baseline; gap: 6px; }
.kpi-rate-v {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.kpi-rate-l {
  font-size: 11px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.kpi-rate-empty { font-size: 11px; color: var(--faint); }

/* ───── Breakdown bars ───── */
.bars { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 9px; }
.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 44px 52px;
  gap: 14px;
  align-items: center;
}
.bar-label { font-size: 12.5px; color: var(--muted); }
.bar-track {
  height: 18px;
  background: var(--surface-2);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}
.bar-seg { height: 100%; }
.bar-total {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.bar-rate {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ───── Aging summary ───── */
.aging {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.aging-tile {
  padding: 16px 18px 18px;
  border-right: 1px solid var(--border-2);
}
.aging-tile:last-child { border-right: 0; }

.aging-bucket {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.aging-amount {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.aging-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px;
}
.aging-label { font-size: 11.5px; color: var(--muted); }
.aging-count { font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; }

.tone-ok   .aging-bucket { color: var(--ok); }
.tone-warn .aging-bucket { color: var(--warn); }
.tone-hot  .aging-bucket { color: var(--hot); }
.tone-crit .aging-bucket { color: var(--crit); }
.tone-ok   .aging-amount { color: var(--ok); }
.tone-warn .aging-amount { color: var(--warn); }
.tone-hot  .aging-amount { color: var(--hot); }
.tone-crit .aging-amount { color: var(--crit); }

/* ───── Filters chips ───── */
.filters { display: flex; gap: 4px; }
.chip {
  height: 26px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip.on { background: var(--text); color: white; border-color: var(--text); }

/* ───── Table ───── */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tbl thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 12px 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-2);
  background: var(--surface-2);
  cursor: pointer;
  user-select: none;
}
.tbl thead th:hover { color: var(--text); }
.tbl thead th.num { text-align: right; }
.tbl tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-2);
  vertical-align: middle;
}
.tbl tbody tr { transition: background 80ms; }
.tbl tbody tr:hover { background: var(--surface-2); cursor: pointer; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td.num { text-align: right; }
.row-end { width: 24px; text-align: right; color: var(--faint); font-size: 18px; }

.cell-customer { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
}
.avatar.lg { width: 42px; height: 42px; font-size: 13px; }
.cust-name { font-size: 13px; font-weight: 500; }
.cust-name.lg { font-size: 18px; font-weight: 600; }
.cust-id { font-size: 11px; color: var(--muted); font-family: "JetBrains Mono", monospace; }

/* ───── Traffic light ───── */
.traffic {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.traffic-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.traffic-green  { color: var(--ok); }
.traffic-green  .traffic-dot { background: var(--ok); box-shadow: 0 0 0 3px color-mix(in oklch, var(--ok) 18%, transparent); }
.traffic-yellow { color: var(--warn); }
.traffic-yellow .traffic-dot { background: var(--warn); box-shadow: 0 0 0 3px color-mix(in oklch, var(--warn) 18%, transparent); }
.traffic-red    { color: var(--danger); }
.traffic-red    .traffic-dot { background: var(--danger); box-shadow: 0 0 0 3px color-mix(in oklch, var(--danger) 18%, transparent); }

/* ───── Bucket bar (in row) ───── */
.bucketbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.bb-num { font-size: 12px; color: var(--text); min-width: 38px; text-align: right; }
.bb-track {
  display: inline-flex;
  gap: 2px;
}
.bb-cell {
  width: 14px; height: 6px;
  border-radius: 2px;
  background: var(--border);
}
.bb-cell.on.tone-0-30  { background: var(--ok); }
.bb-cell.on.tone-31-60 { background: var(--warn); }
.bb-cell.on.tone-61-90 { background: var(--hot); }
.bb-cell.on.tone-90\+  { background: var(--crit); }

/* ───── Pill ───── */
.pill {
  display: inline-flex; align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pill-neutral { background: var(--surface-2); color: var(--muted); }
.pill-ok      { background: color-mix(in oklch, var(--ok)     12%, transparent); color: var(--ok); }
.pill-warn    { background: color-mix(in oklch, var(--warn)   14%, transparent); color: var(--warn); }
.pill-hot     { background: color-mix(in oklch, var(--hot)    14%, transparent); color: var(--hot); }
.pill-crit    { background: color-mix(in oklch, var(--crit)   12%, transparent); color: var(--crit); }

/* ───── Activity ───── */
.activity {
  list-style: none; margin: 0; padding: 4px 0;
}
.activity li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-2);
}
.activity li:last-child { border-bottom: 0; }
.act-time { font-size: 11.5px; color: var(--muted); padding-top: 2px; }
.act-line1 { display: flex; align-items: center; gap: 8px; }
.act-name { font-size: 13px; font-weight: 500; }
.act-line2 { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ───── Grid ───── */
.grid-2 {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 16px;
}

/* ───── Modal ───── */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(20,20,20,0.32);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  z-index: 1000;
  animation: fade 140ms ease-out;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: min(560px, 92vw);
  box-shadow: 0 20px 60px rgba(20,20,20,0.18), 0 4px 12px rgba(20,20,20,0.08);
  animation: pop 140ms ease-out;
  overflow: hidden;
}
@keyframes fade { from { opacity:0 } to { opacity:1 } }
@keyframes pop  { from { opacity:0; transform: translateY(6px) scale(.99) } to { opacity:1; transform: none } }

.modal-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-2);
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--border-2);
}
.stat {
  padding: 14px 22px;
  border-right: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat-l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.stat-v { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px; }

.modal-sec { padding: 16px 22px; }
.modal-sec h4 {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hist { list-style: none; padding: 0; margin: 0; }
.hist li {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-2);
}
.hist li:last-child { border-bottom: 0; }
.hist-d { font-size: 12px; color: var(--muted); }
.hist-amt { font-size: 12.5px; text-align: right; }
.hist-status {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.hist-status.ok   { background: color-mix(in oklch, var(--ok) 12%, transparent); color: var(--ok); }
.hist-status.fail { background: color-mix(in oklch, var(--danger) 12%, transparent); color: var(--danger); }

.modal-f {
  display: flex; justify-content: flex-end; gap: 8px;
  padding: 14px 22px;
  background: var(--surface-2);
  border-top: 1px solid var(--border-2);
}

/* KPI modal bars */
.modal-bars { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.mb-row { display: grid; grid-template-columns: 110px 1fr 50px 60px; gap: 12px; align-items: center; }
.mb-label { font-size: 12.5px; color: var(--muted); }
.mb-track { height: 14px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.mb-fill  { height: 100%; background: var(--accent); border-radius: 4px; }
.mb-val   { font-size: 12px; text-align: right; }
.mb-rate  { font-size: 11.5px; color: var(--muted); text-align: right; }

/* ───── Risk Summary (revenue at risk) ───── */
.risk { padding: 0; }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.risk-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 4px;
}
.risk-cell:last-child { border-right: 0; }
.risk-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
}
.risk-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.risk-cell.hot .risk-value { color: var(--crit); }
.risk-meta {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ───── Grouped past-due table (traffic-light mode) ───── */
.grouped-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.grouped-tbl thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 12px 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-2);
  background: var(--surface-2);
}
.grouped-tbl thead th.num { text-align: right; }
.grouped-tbl tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-2);
  vertical-align: middle;
}
.grouped-tbl tbody tr:last-child td { border-bottom: 0; }
.grouped-tbl td.num { text-align: right; }
.g-name { font-weight: 500; }
.g-cell { font-size: 12.5px; }
.g-total { font-weight: 600; }
.g-foot td {
  background: var(--surface-2);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dim { color: var(--faint); }

.traffic-cell {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.traffic-cell.tone-ok   { background: color-mix(in oklch, var(--ok)     14%, transparent); color: var(--ok); }
.traffic-cell.tone-warn { background: color-mix(in oklch, var(--warn)   16%, transparent); color: var(--warn); }
.traffic-cell.tone-hot  { background: color-mix(in oklch, var(--hot)    14%, transparent); color: var(--hot); }
.traffic-cell.tone-crit { background: color-mix(in oklch, var(--crit)   14%, transparent); color: var(--crit); }

/* ───── Empty ───── */
.empty {
  text-align: center;
  padding: 80px 32px;
  color: var(--muted);
}
.empty-mark { font-size: 48px; color: var(--faint); margin-bottom: 8px; }
.empty h2 { margin: 0 0 8px; font-size: 22px; color: var(--text); letter-spacing: -0.02em; }
.empty p { max-width: 380px; margin: 0 auto; font-size: 13.5px; }
