/* Slid Phi Labs — live proof bar (alive signal) */
.slid-proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  align-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.15rem;
  background: #05080f;
  color: #c8d4e0;
  border-bottom: 1px solid rgba(61, 214, 198, 0.22);
  position: relative;
  z-index: 60;
}
.slid-proof-bar .slid-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ef0df;
  box-shadow: 0 0 0 0 rgba(94, 240, 223, 0.55);
  animation: slidPulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes slidPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 240, 223, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(94, 240, 223, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 240, 223, 0);
  }
}
.slid-proof-bar .slid-label {
  color: #8fa3b8;
  margin-right: 0.25rem;
}
.slid-proof-bar strong {
  color: #5ef0df;
  font-weight: 600;
}
.slid-proof-bar strong.gold {
  color: #e8c547;
}
.slid-proof-bar a {
  color: #a5b4fc;
  margin-left: auto;
  text-decoration: none;
  white-space: nowrap;
}
.slid-proof-bar a:hover {
  color: #e8c547;
}
.slid-proof-bar .slid-engine {
  color: #e8c547;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}
@media (max-width: 640px) {
  .slid-proof-bar {
    font-size: 0.72rem;
    gap: 0.5rem 0.9rem;
  }
  .slid-proof-bar a {
    margin-left: 0;
    width: 100%;
  }
}
