/* Proof strip — live HTML figures under the hero. Accent uses AA-safe brand text. */
:root {
  --proof-brand-text: #9a5600;
}

.proof-strip {
  background: linear-gradient(180deg, #f7f5f1 0%, #efece6 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.25rem 0 1.5rem;
}

.proof-strip-cells {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.proof-strip-cell {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.proof-strip-value {
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  font-weight: 650;
  line-height: 1.35;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.proof-strip-cell-note {
  font-size: 0.75rem;
  color: var(--proof-brand-text);
  font-weight: 600;
}

.proof-strip-clients {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.proof-strip-attrib {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .proof-strip-cells {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .proof-strip-cells {
    grid-template-columns: 1fr;
  }
}
