/* Shared live-status indicator used in nav and footer */

.nav-status-pill,
.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #27272a;
  border-radius: 999px;
  font-size: 13px;
  color: #a1a1aa;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
  white-space: nowrap;
}
.nav-status-pill:hover,
.footer-status-pill:hover {
  color: #fafafa;
}

.nav-status-dot,
.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71717a;
  flex-shrink: 0;
  transition: background-color .3s, box-shadow .3s;
}

/* State colors — severity model, identical palette to the status-page card
   (none/minor/major/critical => green/yellow/orange/red). */
.nav-status-pill.operational,
.footer-status-pill.operational { border-color: rgba(33, 197, 93, .45); }
.nav-status-pill.minor,
.footer-status-pill.minor       { border-color: rgba(250, 204, 21, .55); }
.nav-status-pill.major,
.footer-status-pill.major       { border-color: rgba(255, 140, 66, .55); }
.nav-status-pill.critical,
.footer-status-pill.critical    { border-color: rgba(255, 59, 48, .55); }

.nav-status-dot.operational,
.footer-status-dot.operational { background: #21c55d; box-shadow: 0 0 0 3px rgba(33,197,93,.18); }
.nav-status-dot.minor,
.footer-status-dot.minor       { background: #facc15; box-shadow: 0 0 0 3px rgba(250,204,21,.18); }
.nav-status-dot.major,
.footer-status-dot.major       { background: #ff8c42; box-shadow: 0 0 0 3px rgba(255,140,66,.18); }
.nav-status-dot.critical,
.footer-status-dot.critical    { background: #ff3b30; box-shadow: 0 0 0 3px rgba(255,59,48,.18); }

/* Footer-specific compact styling: pill is slightly smaller; Free download
   sits inline with the other footer links but with the accent color. */
.footer-status-pill {
  font-size: 12px;
  padding: 4px 10px;
  vertical-align: middle;
}
.footer-status-pill .footer-status-dot { width: 7px; height: 7px; }

.footer-cta-link {
  color: #da7756 !important;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.footer-cta-link:hover { color: #b85a42 !important; }
