body {
  background: #f7f7f8;
  color: #1c1d22;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.intro {
  margin-bottom: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b6f76;
  margin: 0 0 8px;
}

.intro h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.intro p {
  font-size: 17px;
  color: #41454d;
  max-width: 60ch;
  margin: 0;
}

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

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    border-color 120ms ease,
    transform 120ms ease,
    box-shadow 120ms ease;
}

.card:hover,
.card:focus-visible {
  border-color: #1c1d22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  outline: none;
}

.card .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6f76;
}

.card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #41454d;
}

footer.foot {
  margin-top: 64px;
  font-size: 13px;
  color: #6b6f76;
}

footer.foot a {
  color: #1c1d22;
}
