:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #667085;
  --line: #d5d9df;
  --paper: #f8fafc;
  --panel: #ffffff;
  --green: #206b55;
  --blue: #245f9f;
  --gold: #9a6a16;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(32, 107, 85, 0.09), transparent 38%),
    linear-gradient(315deg, rgba(36, 95, 159, 0.1), transparent 42%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

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

.mast {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--green), white 48%);
  border-radius: 8px;
  background: linear-gradient(145deg, #206b55, #245f9f);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service {
  display: grid;
  min-height: 164px;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel), transparent 6%);
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.08);
}

.service:focus-visible,
.service:hover {
  border-color: color-mix(in srgb, var(--blue), white 35%);
  outline: 2px solid color-mix(in srgb, var(--blue), transparent 70%);
  outline-offset: 2px;
}

.service-kicker {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold), white 86%);
  color: #65440b;
  font-size: 0.76rem;
  font-weight: 800;
}

.service strong {
  font-size: 1.15rem;
}

.service span:last-child {
  color: var(--muted);
  line-height: 1.45;
}

.notes {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .shell {
    padding: 36px 0;
  }

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

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