.home-hero {
  background: linear-gradient(135deg, #f1f7f3 0%, #ffffff 60%);
  padding: 3rem;
  border-radius: 24px;
  margin-bottom: 2.5rem;
  box-shadow: 0 18px 40px rgba(18, 42, 24, 0.08);
}

.home-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.home-hero h1 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
}

.home-hero__lede {
  margin: 1rem 0 1.5rem;
  max-width: 70ch;
  color: var(--color-muted);
}

.home-hero__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__cta:hover,
.home-hero__cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(31, 122, 77, 0.25);
}

.home-index__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.home-index__grid {
  list-style: none;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
}

.home-index__card {
  background: #f6faf7;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(31, 122, 77, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-index__card a {
  color: inherit;
  display: block;
}

.home-index__card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.home-index__card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.home-index__card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-index__card:hover,
.home-index__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 24px rgba(20, 48, 28, 0.12);
}

.home-index__chip {
  background: rgba(31, 122, 77, 0.1);
  color: var(--color-accent);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
*** End Patch
