:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --text: #1c1c1c;
  --muted: #62605b;
  --line: #ded9cf;
  --accent: #146c5f;
  --accent-dark: #0d5148;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.intro,
.content {
  width: min(100%, 720px);
}

.intro {
  padding: 24px 0;
}

.content {
  padding: 48px 24px 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.lede {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--accent);
}

.button.secondary:hover {
  border-color: var(--accent);
  background: rgba(20, 108, 95, 0.08);
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--accent);
}

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

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

@media (max-width: 560px) {
  .page {
    place-items: end start;
    padding: 24px;
  }

  .content {
    padding: 32px 20px 56px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.8rem);
  }
}
