.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.proof-chip {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  min-height: 48px;
  padding: 0 8px 0 6px;
  border-radius: 12px;
  background: rgba(6, 48, 63, 0.72);
  border: 1px solid rgba(85, 178, 216, 0.22);
  text-decoration: none;
  color: inherit;
  line-height: 1;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.proof-chip:hover {
  background: rgba(6, 48, 63, 0.92);
  border-color: rgba(34, 211, 238, 0.4);
}

.proof-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.proof-chip-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.proof-chip-icon--tp {
  background: #00B67A;
}

.proof-chip-icon--li {
  background: #0A66C2;
}

.proof-chip-meta {
  min-width: 0;
  text-align: left;
}

.proof-chip-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.15;
}

.proof-chip-verified {
  width: 12px;
  height: 12px;
  color: #22d3ee;
  flex-shrink: 0;
}

.proof-chip-sub {
  display: block;
  font-size: 11px;
  color: rgba(159, 232, 255, 0.55);
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.proof-chip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  margin-left: 2px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.proof-chip:hover .proof-chip-cta {
  background: rgba(34, 211, 238, 0.24);
  border-color: rgba(34, 211, 238, 0.55);
}
