/* Homepage hero — large, quiet, centered. Palette-safe (no gradient text) so it
   reads in both the slate (dark) and default (light) schemes. */
.hero-text {
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--md-default-fg-color--light);
  max-width: 44rem;
  margin: 0 auto 2rem;
}

/* A small pill under the hero — the one-line proof claim. */
.hero-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--md-accent-fg-color);
  border-radius: 999px;
  color: var(--md-accent-fg-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.md-typeset .md-button {
  margin-top: 0.4rem;
}

/* Grid cards read as product capability tiles — a touch more lift. */
.md-typeset .grid.cards > ul > li {
  border-radius: 0.6rem;
  transition: border-color 125ms, box-shadow 125ms;
}
.md-typeset .grid.cards > ul > li:hover {
  border-color: var(--md-accent-fg-color);
  box-shadow: 0 0 0 1px var(--md-accent-fg-color);
}

@media screen and (max-width: 44.98em) {
  .hero-text {
    font-size: 2.1rem;
  }
}
