:root {
  color: #17201b;
  background: #f6f8f4;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

.landing {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark,
.header-link,
.primary-link {
  font-weight: 750;
  text-decoration: none;
}

.wordmark {
  color: #102018;
  font-size: 22px;
}

.header-link {
  color: #31443a;
  font-size: 15px;
}

.hero {
  align-self: center;
  max-width: 760px;
  padding: 72px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #5e6d63;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: #102018;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #56655d;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.5;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  border-radius: 8px;
  padding: 0 20px;
  color: #ffffff;
  background: #225a3c;
}

.note {
  margin: 12px 0 0;
  color: #66756c;
  font-size: 13px;
}

@media (max-width: 640px) {
  .landing {
    padding: 18px;
  }

  .hero {
    padding: 64px 0 88px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1.02;
  }
}
