:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #08111f;
  color: #e8eef7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, #15345d, #08111f 55%);
}
.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}
.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.eyebrow {
  margin: 0 0 8px;
  color: #7dd3fc;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}
h1,
h2,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}
h2 {
  font-size: 1.05rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.card {
  border: 1px solid #29405d;
  border-radius: 18px;
  padding: 24px;
  background: rgba(14, 29, 50, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}
.card p {
  color: #b6c4d8;
  line-height: 1.6;
}
.status {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.status-pending {
  background: #3a2c0b;
  color: #facc15;
}
.status-readonly {
  background: #24324a;
  color: #bfdbfe;
}
.status-live {
  background: #123b2b;
  color: #86efac;
}
.status-error {
  background: #4b1d25;
  color: #fda4af;
}
button {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  background: #38bdf8;
  color: #082032;
  font-weight: 700;
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
form {
  display: grid;
  gap: 10px;
  max-width: 32rem;
  margin-top: 20px;
}
input {
  width: 100%;
  border: 1px solid #58708f;
  border-radius: 10px;
  padding: 10px 12px;
  background: #0b192c;
  color: #e8eef7;
  font: inherit;
}
input:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 2px;
}
button:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
