.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(17, 24, 39, 0.05), transparent 30%),
    linear-gradient(180deg, #f7f8f6 0%, #eef2ec 100%);
  color: #152318;
}

.shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  gap: 1.25rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: #0a6f49;
  text-decoration: none;
  font-weight: 700;
}

.nav a[aria-current="page"] {
  color: #163c2b;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
  padding: 1.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f6b61;
  font-weight: 700;
}

.title {
  margin: 0.35rem 0 0;
  font-size: 2.1rem;
  line-height: 1.05;
}

.lead {
  margin: 0.8rem 0 0;
  color: #5c675e;
  line-height: 1.7;
}

.stack {
  display: grid;
  gap: 1rem;
}

.sectionTitle {
  margin: 0;
  font-size: 1.05rem;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: #4d5a50;
  line-height: 1.7;
}

.muted {
  color: #5c675e;
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  background: #163c2b;
  color: #f8fffb;
  font-weight: 700;
}

.footer {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
  padding: 0 0.2rem;
}

.footerText {
  margin: 0;
  color: #5c675e;
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 1rem;
  }

  .topbar {
    align-items: flex-start;
  }
}
