:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #171b22;
  --panel-soft: #131720;
  --line: #262d39;
  --text: #e7eaf0;
  --muted: #aab3c2;
  --subtle: #7d8797;
  --link: #9fc1ff;
  --ok: #86efac;
  --warn: #fca5a5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.crumb {
  margin-bottom: 40px;
  font-size: 14px;
}

.hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  font: 12px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 760;
}

h2 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lede {
  font-size: 18px;
  color: #c8ced8;
}

.status,
.summary,
.section {
  border-top: 1px solid var(--line);
}

.status {
  padding: 18px 0;
  color: var(--ok);
}

.status.error {
  color: var(--warn);
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0;
}

.summary > div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.summary strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 650;
}

.section {
  padding: 28px 0;
}

.section-head {
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: var(--panel-soft);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--subtle);
  font-size: 13px;
  font-weight: 650;
}

td {
  color: var(--text);
  overflow-wrap: anywhere;
}

.verify-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.verify-grid a[aria-disabled="true"] {
  color: var(--subtle);
  pointer-events: none;
  text-decoration: none;
}

pre {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--panel);
}

code {
  font: 14px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #dbe4f0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, 1120px);
    padding-top: 32px;
  }

  .summary {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  table {
    min-width: 0;
    background: transparent;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-soft);
  }

  td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--line);
  }

  td:last-child {
    border-bottom: 0;
  }

  td::before {
    content: attr(data-label);
    color: var(--subtle);
    font-size: 13px;
    font-weight: 650;
  }
}
