:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --text: #15251f;
  --muted: #5d6f66;
  --line: #d9e1dc;
  --brand: #146c55;
  --brand-dark: #0f3f33;
  --accent: #e7f5ef;
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topline,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topline {
  margin-bottom: 48px;
}

.brand {
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 64px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.hero-panel,
.cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-panel {
  padding: 24px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.hero-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 48px;
}

.item {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.item p {
  margin: 0;
  color: var(--muted);
}

.section {
  margin: 56px 0;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: #fff;
}

.cta {
  margin: 56px 0 32px;
  padding: 28px;
  background: var(--accent);
}

.footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .topline,
  .footer,
  .hero {
    display: block;
  }

  .nav {
    margin-top: 12px;
  }

  .hero-panel {
    margin-top: 28px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
