/* Landing-page stat tiles */
.sf-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
}
.sf-stat {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.4rem;
  padding: 0.9rem 0.6rem 0.7rem;
  text-align: center;
  background: var(--md-code-bg-color);
}
.sf-stat .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--md-primary-fg-color);
  line-height: 1.15;
}
.sf-stat .label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.66rem;
  opacity: 0.75;
}

/* Slightly tighter hero */
.sf-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0.5rem 0 1.5rem;
  text-align: left;
  flex-wrap: wrap;
}
.sf-hero-content {
  flex: 1;
  min-width: 300px;
}
.sf-hero-image {
  flex-shrink: 0;
  margin: 0 auto;
}
.sf-hero p {
  max-width: 34rem;
  margin: 0.6rem 0 1rem;
}
