/* Live platform status strip, in the owner UI's tokens (style.css). */
.gh-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  padding: 14px 28px 0;
}
.gh-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  line-height: 1.35;
}
.gh-card b {
  font-family: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e9edf3;
}
.gh-card small {
  color: #8c96a5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gh-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c6ced9;
}
.gh-state::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6b7482;
}
.gh-state[data-state="running"]::before { background: #7ee3b8; box-shadow: 0 0 8px rgba(126, 227, 184, 0.6); }
.gh-state[data-state="paused"]::before,
.gh-state[data-state="degraded"]::before,
.gh-state[data-state="stale"]::before { background: #e8b86d; }
.gh-state[data-state="offline"]::before,
.gh-state[data-state="error"]::before { background: #ef7b86; }
#gh-mode-pill[data-mode="live"] { color: #ef7b86; }
.gh-dot-offline { background: #ef7b86 !important; }
@media (max-width: 760px) {
  .gh-strip { padding: 12px 16px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Login page */
.gh-login-body { min-height: 100vh; display: grid; place-items: center; padding-inline: 16px; }
.gh-login { width: min(380px, 100%); display: grid; gap: 14px; padding-block: 32px; }
.gh-login h1 { margin: 12px 0 0; font-family: "Space Grotesk", "DM Sans", system-ui, sans-serif; font-size: 28px; }
.gh-login-sub { margin: 0; color: #8c96a5; }
.gh-login form { display: grid; gap: 8px; }
.gh-login label { margin-top: 6px; font-size: 13px; color: #c6ced9; }
.gh-login input {
  padding: 11px 12px; border-radius: 9px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04); color: #e9edf3; font: inherit;
}
.gh-login input:focus-visible { outline: 2px solid #7ee3b8; outline-offset: 1px; }
.gh-login button {
  margin-top: 12px; padding: 11px 14px; border: 0; border-radius: 9px; background: #7ee3b8; color: #07120d;
  font: 600 14px "DM Sans", system-ui, sans-serif; cursor: pointer;
}
.gh-login button:disabled { opacity: 0.6; cursor: progress; }
#login-error { min-height: 1.2em; margin: 4px 0 0; color: #ef7b86; font-size: 13px; }
