:root {
  color-scheme: dark;
  --bg: #090a0d;
  --panel: #151821;
  --text: #f5f7fb;
  --muted: #aeb6c7;
  --line: #2b3140;
  --accent: #4f8cff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--text);
}

.page,
.document {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.document {
  padding: 56px 0 72px;
  line-height: 1.65;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.document h1 {
  font-size: 44px;
  line-height: 1.05;
}

h2 {
  margin: 34px 0 8px;
  font-size: 20px;
}

h3 {
  margin: 24px 0 6px;
  font-size: 17px;
}

p {
  max-width: 760px;
  color: var(--muted);
}

li {
  color: var(--muted);
  margin: 8px 0;
}

ul {
  max-width: 760px;
  padding-left: 24px;
}

strong {
  color: var(--text);
}

.lede {
  font-size: 20px;
}

.updated {
  color: #d2d8e6;
}

.notice {
  max-width: 760px;
  margin: 28px 0;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  background: var(--panel);
}

.notice p {
  margin: 6px 0 0;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

th {
  color: var(--text);
  font-size: 14px;
}

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

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

.links a,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--panel);
  text-decoration: none;
  font-weight: 650;
}
