:root {
  color: #17202a;
  background: #f3f6f1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  min-height: 100vh;
  padding: 48px clamp(18px, 4vw, 64px);
}

.hero {
  max-width: 900px;
  padding: 48px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #476657;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.95;
}

.hero p {
  max-width: 720px;
  color: #405047;
  font-size: 19px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

a {
  border-radius: 6px;
  background: #1d6f5f;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
}

a + a {
  background: #dce8df;
  color: #18352e;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

article {
  border-top: 1px solid #c8d7cd;
  padding-top: 18px;
}

h2 {
  margin: 0 0 8px;
}

code {
  font-size: 0.92em;
}
