/* ═══════════════════════════════════════════════════════════
   CREDENTIALS STRIP — narrow trust bar under hero
   Foregrounds verifiable accreditations + track record
   ═══════════════════════════════════════════════════════════ */

.creds-strip {
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(230,0,126,0.06) 0%, rgba(0,159,227,0.06) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}

.creds-strip .page-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
}

.creds-item {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}

.creds-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .creds-strip { padding: 12px 0; }
  .creds-sep { width: 4px; height: 4px; }
}
