:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7f8;
  color: #1b1f24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: #4f6f52;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 3.8rem;
  line-height: 0.98;
}

h2 {
  font-size: 1rem;
  margin-bottom: 16px;
}

button {
  border: 0;
  border-radius: 8px;
  background: #1f6f78;
  color: white;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

button:focus-visible {
  outline: 3px solid #d59d22;
  outline-offset: 3px;
}

.status-grid,
.workspace {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.workspace {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 14px;
}

article,
.panel {
  background: white;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  padding: 18px;
}

article span,
dt {
  display: block;
  color: #5f6b75;
  font-size: 0.82rem;
  font-weight: 700;
}

article strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

dl {
  margin: 0;
}

dd {
  margin: 6px 0 14px;
  overflow-wrap: anywhere;
  font-family: "Cascadia Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
}

pre {
  margin: 0;
  min-height: 150px;
  overflow: auto;
  white-space: pre-wrap;
  font-family: "Cascadia Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.full {
  margin-top: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  border-bottom: 1px solid #e6ecef;
  padding: 10px 8px;
  text-align: left;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .mast {
    align-items: stretch;
    flex-direction: column;
  }

  .status-grid,
  .workspace {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.4rem;
  }
}
