body {
  min-height: 100vh;
  line-height: 1.7;
}

nav,
main,
footer {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

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

.back {
  font-size: 14px;
  font-weight: 700;
}

main {
  padding-top: 56px;
  padding-bottom: 72px;
}

h1 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

h2 {
  color: var(--green);
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 10px;
}

p,
li {
  color: var(--text-dim);
}

ul {
  padding-left: 20px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 36px;
}

footer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 28px;
  padding-bottom: 32px;
}
