:root {
  color-scheme: dark;
  --bg: #111318;
  --panel: #1c2228;
  --panel-2: #242a31;
  --text: #f2f5f7;
  --muted: #a6b0b8;
  --line: #3a424b;
  --green: #5fd1a5;
  --amber: #e6b450;
  --red: #f07178;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: flex;
  gap: 8px;
  height: 18px;
}

.mark span {
  width: 18px;
  border-radius: 3px;
  background: var(--green);
}

.mark span:nth-child(2) {
  background: var(--amber);
}

.mark span:nth-child(3) {
  background: var(--red);
}

.eyebrow,
.label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: #101412;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
}

article {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: 0;
}

article p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.link-card p {
  overflow-wrap: anywhere;
}

.status {
  max-width: 960px;
}

.status-header {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.status-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: 17px;
}

pre {
  max-height: 520px;
  overflow: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0f13;
  color: #d8dee5;
  line-height: 1.45;
  white-space: pre-wrap;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 28px 0;
  }

  .hero {
    min-height: 46vh;
  }

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

  h1 {
    font-size: 44px;
  }
}
