:root {
  color-scheme: light;
  --ink: #172025;
  --muted: #65737b;
  --line: #dbe3e6;
  --green: #1d8f6f;
  --blue: #246bba;
  --gold: #c6862d;
  --paper: #f7faf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(29, 143, 111, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 54vh;
  display: grid;
  align-content: center;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
}

.intro {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.nav-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.nav-actions a:first-child {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

article span {
  color: var(--gold);
  font-weight: 800;
}

article h2 {
  font-size: 1.15rem;
}

article p {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 38px 0;
  }

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