:root {
  --bg: #0e131a;
  --panel: #161d27;
  --panel-2: #1c2531;
  --border: #283242;
  --text: #e7eef6;
  --muted: #8a98ab;
  --accent: #2dd4bf;
  --accent-2: #3b82f6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --blue: #60a5fa;
  --gray: #64748b;
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ---- Top bar ---- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 58px;
  background: var(--panel); border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; }
.logo-mark { color: var(--accent); margin-right: 4px; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(45,212,191,0.15); color: var(--accent); border: 1px solid rgba(45,212,191,0.35);
}
.badge.live { background: rgba(34,197,94,0.15); color: var(--green); border-color: rgba(34,197,94,0.4); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.acct { display: flex; align-items: center; gap: 10px; padding-left: 22px; border-left: 1px solid var(--border); }
.acct-name { font-size: 13px; font-weight: 600; color: var(--muted); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct .ghost { padding: 6px 12px; font-size: 12px; }
.stats { display: flex; gap: 26px; }
.stat { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.stat span { font-size: 11px; color: var(--muted); }
.stat b { font-size: 17px; }

/* ---- Layout ---- */
.layout { display: flex; height: calc(100vh - 58px); }
.sidebar {
  width: 230px; flex-shrink: 0; background: var(--panel);
  border-right: 1px solid var(--border); display: flex; flex-direction: column;
}
.side-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 16px 8px; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--muted);
}
.lists { list-style: none; margin: 0; padding: 4px 8px; flex: 1; overflow: auto; }
.lists li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 8px; cursor: pointer; color: var(--text);
}
.lists li:hover { background: var(--panel-2); }
.lists li.active { background: rgba(45,212,191,0.12); color: var(--accent); }
.lists li.fresh-list { color: var(--amber); font-weight: 700; }
.lists li.fresh-list .count { color: var(--amber); }
.lists li.fresh-list.active { background: rgba(245,158,11,0.14); }
.lists li .count { font-size: 12px; color: var(--muted); }
.lists li.active .count { color: var(--accent); }
.side-foot { padding: 12px; border-top: 1px solid var(--border); }

/* ---- Main ---- */
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.main-head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 16px 22px; border-bottom: 1px solid var(--border);
}
.tabs { display: flex; gap: 4px; }
.tab {
  background: transparent; border: none; color: var(--muted);
  padding: 7px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
}
.tab.active { background: var(--panel-2); color: var(--text); }
.main-head h2 { margin: 0; font-size: 16px; font-weight: 600; }
.main-actions { display: flex; gap: 10px; }

.view { flex: 1; overflow: auto; }

/* ---- Stage chips (filter inside a pipeline) ---- */
.stage-chips {
  display: flex; gap: 8px; padding: 12px 16px 4px; flex-wrap: wrap;
  position: sticky; top: 0; background: var(--bg); z-index: 5;
}
.stage-chips button {
  background: var(--panel-2); color: var(--muted); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 99px; font-size: 12px; font-weight: 700;
}
.stage-chips button:hover { color: var(--text); }
.stage-chips button.active { background: rgba(45,212,191,0.14); color: var(--accent); border-color: rgba(45,212,191,0.4); }
.pill.stage-new { color: var(--blue); border-color: rgba(96,165,250,0.4); background: rgba(96,165,250,0.1); }
.pill.stage-follow_up { color: var(--amber); border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.1); }
.pill.stage-not_interested { color: var(--red); border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.1); }

/* ---- Stage buttons in the contact drawer ---- */
.stage-set { display: flex; gap: 8px; margin: 6px 0 16px; flex-wrap: wrap; }
.stage-set button {
  background: var(--panel-2); color: var(--muted); border: 1px solid var(--border);
  padding: 8px 12px; border-radius: 9px; font-size: 12px; font-weight: 700;
}
.stage-set button.active { color: var(--text); border-color: var(--accent); background: rgba(45,212,191,0.12); }
table.leads { width: 100%; border-collapse: collapse; }
table.leads th {
  text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--muted); font-weight: 600; padding: 12px 16px;
  position: sticky; top: 0; background: var(--bg); border-bottom: 1px solid var(--border);
}
table.leads td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
table.leads tr:hover td { background: var(--panel); }
th.cb, td.cb { width: 34px; }
.lead-name { font-weight: 600; }
.pill {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 99px;
  background: var(--panel-2); color: var(--muted); border: 1px solid var(--border);
}
.pill.new { color: var(--blue); border-color: rgba(96,165,250,0.4); background: rgba(96,165,250,0.1); }
.pill.contacted { color: var(--muted); }
.pill.interested { color: var(--green); border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.1); }
.pill.callback { color: var(--blue); border-color: rgba(96,165,250,0.4); background: rgba(96,165,250,0.1); }
.pill.dnc, .pill.do_not_call { color: var(--red); border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.1); }

/* ---- Buttons ---- */
.primary {
  background: var(--accent); color: #06231f; border: none; font-weight: 700;
  padding: 9px 16px; border-radius: 9px; font-size: 13px;
}
.primary:hover { filter: brightness(1.08); }
.ghost {
  background: var(--panel-2); color: var(--text); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 9px; font-size: 13px; font-weight: 600;
}
.ghost:hover { border-color: var(--muted); }
.ghost:disabled { opacity: 0.4; cursor: not-allowed; }
.ghost.full { width: 100%; }
.icon-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  width: 26px; height: 26px; border-radius: 7px; font-size: 14px; line-height: 1;
}
.icon-btn:hover { color: var(--text); border-color: var(--muted); }

/* ---- Overlay / dialer ---- */
.overlay {
  position: fixed; inset: 0; background: rgba(6,10,16,0.78); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; z-index: 50; padding: 24px;
}
.overlay[hidden] { display: none; }
.dialer {
  width: min(920px, 96vw); max-height: 92vh; overflow: auto;
  background: var(--panel); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.dialer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border);
}
.dialer-title { font-size: 16px; font-weight: 700; }
.dialer-title small { color: var(--muted); font-weight: 500; margin-left: 8px; }

.lines { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; padding: 22px; }
.lines:empty { padding: 0; }

/* ---- line-count selector ---- */
.lines-select {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px; font-weight: 600;
}
.resume-btn { color: var(--amber); border-color: rgba(245,158,11,0.4); }
.resume-btn:hover { border-color: var(--amber); }
.lines-select select {
  background: var(--panel-2); color: var(--text); border: 1px solid var(--border);
  border-radius: 9px; padding: 8px 10px; font-size: 13px; font-weight: 700; cursor: pointer;
}
.line {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; min-height: 120px; transition: border-color 0.2s, opacity 0.3s;
}
.line .line-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.line .line-name { font-weight: 700; font-size: 15px; margin-top: 6px; }
.line .line-company { color: var(--muted); font-size: 12px; }
.line .line-phone { font-size: 13px; margin-top: 6px; color: var(--text); font-variant-numeric: tabular-nums; }
.line .line-state {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 99px;
  background: var(--bg); color: var(--muted);
}
.line.ringing { border-color: var(--amber); }
.line.ringing .line-state { color: var(--amber); }
.line.answered { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.line.answered .line-state { color: var(--green); }
.line.canceled, .line.no_answer, .line.voicemail, .line.busy, .line.failed { opacity: 0.55; }
.line.canceled .line-state { color: var(--gray); }
.spinner {
  width: 9px; height: 9px; border-radius: 50%; background: var(--amber);
  animation: pulse 1s infinite ease-in-out;
}
.dot-green { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
@keyframes pulse { 0%,100% { opacity: 0.3; transform: scale(0.8);} 50% { opacity: 1; transform: scale(1.2);} }

.dialer-status { padding: 0 22px 8px; color: var(--muted); font-size: 13px; min-height: 20px; }

/* ---- Agent bar (live mode: your phone is the headset) ---- */
.agent-bar[hidden] { display: none; }
.agent-bar {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 22px 0; padding: 12px 16px;
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 12px;
  font-weight: 600;
}
.agent-bar button { margin-left: auto; }
.agent-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.agent-bar.calling .agent-dot { background: var(--amber); animation: pulse 1s infinite; }
.agent-bar.connected { border-color: rgba(34,197,94,0.45); }
.agent-bar.connected .agent-dot { background: var(--green); }

/* ---- Screen pop ---- */
.screen-pop { margin: 8px 22px 22px; border: 1px solid var(--green); border-radius: 14px; overflow: hidden; animation: pop 0.25s ease; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pop-banner {
  background: rgba(34,197,94,0.14); color: var(--green); font-weight: 800; letter-spacing: 0.5px;
  font-size: 12px; padding: 10px 18px; display: flex; align-items: center; gap: 8px;
}
.pop-banner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.2s infinite; }
.pop-banner .timer { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--text); }
.pop-body { padding: 18px; }
.pop-id { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; border-radius: 12px; background: var(--accent-2);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: white;
}
.pop-name { font-size: 20px; font-weight: 700; }
.pop-company { color: var(--muted); }
.pop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0; }
.pop-grid label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); margin-bottom: 3px; }
.pop-grid span { font-size: 14px; }
.pop-notes-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); }
.pop-file-notes {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 12px; font-size: 13px; color: var(--muted); margin-bottom: 12px;
  white-space: pre-wrap; max-height: 90px; overflow-y: auto;
}
.pop-notes {
  width: 100%; margin-top: 6px; min-height: 64px; resize: vertical;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); padding: 10px; font-size: 13px;
}
.dispo { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dispo button { border: none; padding: 9px 14px; border-radius: 9px; font-weight: 700; font-size: 13px; color: white; }
.d-green { background: var(--green); } .d-blue { background: var(--accent-2); }
.d-gray { background: var(--gray); } .d-amber { background: var(--amber); color: #2a1c00; }
.d-red { background: var(--red); }
.dispo button:hover { filter: brightness(1.1); }
.pop-foot { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.pop-foot .hint { color: var(--muted); font-size: 12px; }

/* ---- Modal ---- */
.modal { width: min(440px, 94vw); background: var(--panel); border: 1px solid var(--border); border-radius: 14px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--border); font-weight: 700; }
.modal-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.modal-body input, .modal-body select {
  background: var(--bg); border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); padding: 10px 12px; font-size: 13px; width: 100%;
}
.frow { display: flex; gap: 10px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--border); }

/* ---- Contact file drawer ---- */
.drawer[hidden] { display: none; }
.drawer {
  position: fixed; top: 58px; right: 0; bottom: 0; width: min(420px, 92vw);
  background: var(--panel); border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4); z-index: 40;
  display: flex; flex-direction: column; animation: slideIn 0.2s ease;
}
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px; border-bottom: 1px solid var(--border);
}
.drawer-body { padding: 18px; overflow-y: auto; flex: 1; }
.drawer-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
.drawer-actions { display: flex; align-items: center; gap: 12px; margin: 4px 0 16px; }
.d-history { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.d-call {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 12px; font-size: 13px;
}
.d-call .d-when { color: var(--muted); font-size: 11px; }
.d-call .d-note { margin-top: 4px; color: var(--text); }
.d-empty { color: var(--muted); font-size: 13px; padding: 8px 0; }

/* ---- Carrier settings modal ---- */
.carrier-note { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 0 0 6px; }
.carrier-fields { display: flex; flex-direction: column; gap: 10px; }
.carrier-fields[hidden] { display: none; }
.carrier-status {
  padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 600;
  background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.4);
}
.carrier-err { color: var(--red); font-size: 13px; min-height: 16px; }
.modal-body > label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); margin-top: 4px; }

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--panel-2); border: 1px solid var(--border); color: var(--text);
  padding: 12px 18px; border-radius: 10px; z-index: 100; font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ---------- AI Assistant ---------- */
.assistant-modal { width: min(560px, 94vw); display: flex; flex-direction: column; max-height: 80vh; }
.chat-log {
  flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column;
  gap: 10px; min-height: 220px; max-height: 52vh;
}
.chat-msg { padding: 10px 14px; border-radius: 12px; line-height: 1.45; font-size: 14px; max-width: 92%; white-space: pre-wrap; }
.chat-msg.user { align-self: flex-end; background: var(--accent-2); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.assistant { align-self: flex-start; background: var(--panel-2); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-msg.assistant.thinking { color: var(--muted); font-style: italic; }
.chat-msg .chat-actions { margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--border); font-size: 12.5px; color: var(--accent); }
.chat-msg .chat-actions div { margin-top: 2px; }
.chat-hints { margin-top: 8px; font-size: 12px; color: var(--muted); font-style: normal; }
.chat-input-row { display: flex; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--border); }
.chat-input-row input {
  flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 11px 13px; font-size: 14px;
}
.chat-input-row input:focus { outline: none; border-color: var(--accent); }

/* Assistant voice */
.mic-btn {
  background: var(--panel-2); border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 0 14px; font-size: 17px; cursor: pointer; transition: all 0.15s;
}
.mic-btn:hover { border-color: var(--accent); }
.mic-btn.listening {
  background: var(--red); border-color: var(--red); color: #fff;
  animation: mic-pulse 1.1s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(239, 68, 68, 0); }
}
.speaker-btn { font-size: 16px; opacity: 0.9; }
.speaker-btn.muted { opacity: 0.35; }

/* CSV import */
.drop-zone {
  border: 2px dashed var(--border); border-radius: 10px; padding: 26px 14px;
  text-align: center; color: var(--muted); cursor: pointer; transition: all 0.15s; font-size: 13.5px;
}
.drop-zone:hover, .drop-zone.dragover { border-color: var(--accent); color: var(--text); background: rgba(45, 212, 191, 0.05); }
.drop-zone.has-file { border-style: solid; border-color: var(--green); color: var(--text); }

/* Billing */
.plan-chip { cursor: pointer; background: rgba(245, 158, 11, 0.15); color: var(--amber); border: 1px solid rgba(245, 158, 11, 0.4); }
.plan-chip.expired { background: rgba(239, 68, 68, 0.15); color: var(--red); border-color: rgba(239, 68, 68, 0.4); }
.upgrade-link { display: block; text-align: center; text-decoration: none; padding: 12px; border-radius: 10px; font-weight: 700; }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }

/* Owner accounts roster */
.accounts-modal { width: min(760px, 96vw); }
.accounts-scroll { max-height: 55vh; overflow-y: auto; }
.accounts-table th, .accounts-table td { font-size: 13px; padding: 8px 10px; white-space: nowrap; }
.accounts-table .plan-owner { color: var(--accent); font-weight: 700; }
.accounts-table .plan-comped { color: var(--green); }
.accounts-table .plan-active { color: var(--green); font-weight: 700; }
.accounts-table .plan-trial { color: var(--amber); }
.accounts-table .plan-expired { color: var(--red); }

/* ================= PROFESSIONAL POLISH LAYER (7/8) =================
   Typography, depth, motion — the last 20% that makes it feel like a
   real product. Overrides earlier rules by cascade; keep at file end. */
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.logo, .modal-head, .main-head h2, .auth-logo, .dialer-title, .pop-name, .stat b {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.logo {
  background: linear-gradient(120deg, #e7eef6 30%, #2dd4bf);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo .logo-mark { -webkit-text-fill-color: var(--accent); }

/* Depth: bars and panels pick up subtle gradients + shadow */
.topbar {
  background: linear-gradient(180deg, #1a2230, var(--panel));
  box-shadow: 0 1px 0 rgba(45, 212, 191, 0.08), 0 6px 24px rgba(0, 0, 0, 0.25);
  position: relative; z-index: 10;
}
.sidebar { background: linear-gradient(180deg, var(--panel), #131a24); }
.modal, .dialer {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(45, 212, 191, 0.06);
}

/* Buttons: gradient primary with lift, refined ghosts */
button { transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease, opacity 0.12s ease; }
.primary {
  background: linear-gradient(120deg, #2dd4bf, #14b8a6);
  border: none; color: #06251f; font-weight: 800;
  box-shadow: 0 4px 14px rgba(45, 212, 191, 0.25);
}
.primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(45, 212, 191, 0.35); }
.primary:active { transform: translateY(0); }
.ghost:hover { border-color: var(--accent); color: var(--accent); }
button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid rgba(45, 212, 191, 0.6); outline-offset: 1px;
}

/* Table: breathing room + row hover */
.leads th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.7px;
  color: var(--muted); font-weight: 700;
}
.leads tbody tr { transition: background 0.1s ease; }
.leads tbody tr:hover { background: rgba(45, 212, 191, 0.045); }

/* Sidebar list rows: smoother active state */
.lists li { transition: background 0.1s ease, color 0.1s ease; }
.lists li.active { box-shadow: inset 2px 0 0 var(--accent); }

/* Scrollbars that match the theme */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a3546; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #37455c; }

/* Chat + dialer accents */
.chat-msg.user { background: linear-gradient(120deg, #3b82f6, #2563eb); }
.line.answered { box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4), 0 6px 24px rgba(34, 197, 94, 0.15); }

/* Badges slightly beefier */
.badge { letter-spacing: 0.8px; }
