:root {
  color-scheme: light;
  --ink: #07192b;
  --muted: #5f6b78;
  --line: #dbe3ea;
  --water: #2b7da7;
  --paper: #fbfcfd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

header,
main,
footer {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 48px 0 28px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--water);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(36px, 7vw, 58px);
  line-height: 0.98;
}

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

p,
li {
  font-size: 17px;
}

.subtitle,
.updated,
footer {
  color: var(--muted);
}

.updated {
  margin-top: 18px;
  font-size: 14px;
}

main {
  padding: 24px 0 56px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

a {
  color: var(--water);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
}

section {
  padding-bottom: 4px;
}

ul {
  padding-left: 22px;
}

footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
