/* 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 */
.nav-status-pill.operational,
.footer-status-pill.operational  { border-color: rgba(33, 197, 93, .45); }
.nav-status-pill.investigating,
.footer-status-pill.investigating { border-color: rgba(217, 83, 79, .55); }
.nav-status-pill.identified,
.footer-status-pill.identified    { border-color: rgba(240, 173, 78, .55); }
.nav-status-pill.monitoring,
.footer-status-pill.monitoring    { border-color: rgba(79, 122, 140, .65); }

.nav-status-dot.operational,
.footer-status-dot.operational   { background: #21c55d; box-shadow: 0 0 0 3px rgba(33,197,93,.18); }
.nav-status-dot.investigating,
.footer-status-dot.investigating { background: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.18); }
.nav-status-dot.identified,
.footer-status-dot.identified    { background: #f0ad4e; box-shadow: 0 0 0 3px rgba(240,173,78,.18); }
.nav-status-dot.monitoring,
.footer-status-dot.monitoring    { background: #4f7a8c; box-shadow: 0 0 0 3px rgba(79,122,140,.22); }

/* 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; }
