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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.eyebrow,
.back {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back {
  text-decoration: none;
}

h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.doc h1 {
  font-size: clamp(34px, 5vw, 56px);
}

h2 {
  margin-top: 36px;
  font-size: 22px;
}

.lede,
p,
li {
  color: #334155;
  font-size: 18px;
  line-height: 1.7;
}

.lede {
  max-width: 760px;
  font-size: 21px;
}

.links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.links a {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #111827;
  font-weight: 800;
  padding: 18px;
  text-decoration: none;
}

.links a:hover {
  border-color: #111827;
}

@media (max-width: 720px) {
  .shell,
  .doc {
    padding: 56px 0;
  }

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