:root {
  --text: #111;
  --muted: #666;
  --border: #eaeaea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background: #fff;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px;
}

.hero {
  padding-top: 56px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  max-width: 70ch;
  margin-bottom: 24px;
}

h2 {
  font-size: 20px;
  margin: 32px 0 12px;
}

ul, ol {
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--text);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

a {
  color: inherit;
}
