:root {
  color-scheme: light;
  --bg: #f4f6f3;
  --text: #10201a;
  --muted: #5f6f68;
  --green: #147a4f;
  --line: #dfe6e1;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

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

.page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

section {
  padding: 28px 0 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: 0;
}

h3 {
  margin: 22px 0 6px;
  font-size: 18px;
  letter-spacing: 0;
}

p {
  margin: 0 0 12px;
}

a {
  color: var(--green);
  font-weight: 650;
}
