:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --text: #17211d;
  --muted: #60706a;
  --line: #dce2dd;
  --accent: #176b5c;
  --accent-2: #c8573a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

.hero h1 {
  font-size: clamp(56px, 10vw, 116px);
  line-height: 0.92;
  margin: 8px 0 24px;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.lead {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  background: white;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 20px;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 32px;
  margin: 0 0 24px;
}

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

article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

article h3 {
  margin: 0 0 10px;
}

article p,
.split p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .split {
    display: block;
  }

  nav {
    margin-top: 14px;
  }

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

  .lead {
    font-size: 19px;
  }
}

