:root {
  --background: #f7f5f0;
  --text: #1b1b1b;
  --muted: #66615b;
  --border: #d9d6cf;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.page {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 128px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 9vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.intro {
  padding-bottom: 60px;
}

.lede {
  max-width: 620px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

section {
  padding: 32px 0 36px;
  border-top: 1px solid var(--border);
}

h2 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
}

section p {
  color: var(--muted);
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 150ms ease;
}

a:hover,
a:focus-visible {
  text-decoration-color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 5px;
}

@media (max-width: 600px) {
  .page {
    width: min(100% - 40px, 680px);
    padding: 64px 0 80px;
  }

  .intro {
    padding-bottom: 72px;
  }

  .lede {
    margin-top: 22px;
    font-size: 18px;
  }
}
