/* Tito — leads / CRM */

.lead-row {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr 1fr 0.8fr 0.6fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.1s;
}

.lead-row:last-child { border-bottom: none; }
.lead-row:hover { background: var(--bg-warm); }
.lead-row.head {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg-soft);
  cursor: default;
}

.lead-avatar {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.lead-name {
  display: flex;
  flex-direction: column;
}
.lead-name strong { font-weight: 500; }
.lead-name span { font-size: 11px; color: var(--muted); font-family: var(--mono); }

.qual-bar {
  display: flex;
  gap: 2px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.qual-bar div { flex: 1; background: var(--bg-soft); }
.qual-bar div.on { background: var(--green); }
