:root {
  color: #172033;
  background: #f7f9fb;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  --ink: #172033;
  --muted: #5a6678;
  --line: #d9e1ea;
  --surface: #ffffff;
  --green: #0c8b65;
  --cyan: #087ea4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.toplink {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.eyebrow {
  margin: 58px 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.5rem, 7vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-top: 44px;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.lead {
  max-width: 780px;
  font-size: 1.2rem;
}

.actions,
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.button,
.related a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.button--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

pre {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #101827;
  color: #e7edf5;
  font-size: 0.92rem;
  line-height: 1.62;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.note {
  border-left: 4px solid var(--cyan);
  padding: 14px 18px;
  background: var(--surface);
}
