:root {
  color-scheme: light;
  --bg: #f4f6f1;
  --ink: #171a18;
  --muted: #626b64;
  --line: #d9ded5;
  --panel: #ffffff;
  --accent: #2f6f5e;
  --accent-strong: #1d4e42;
}

* {
  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(47, 111, 94, 0.08), transparent 45%),
    var(--bg);
}

.shell {
  width: min(920px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0 48px;
  display: grid;
  align-content: center;
  gap: 40px;
}

.intro {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 12vw, 118px);
  line-height: 0.92;
}

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.links a {
  min-height: 132px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.links a:hover,
.links a:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.links span {
  font-size: 18px;
  font-weight: 800;
}

.links small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .shell {
    padding-top: 40px;
    align-content: start;
  }

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