/* Landing page: hero, feature grid, download teaser, steps. */
.hero {
  text-align: center;
  padding: 4rem 0 2.5rem;
}
.hero-logo {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: 2.8rem;
  margin: 1.2rem 0 0.4rem;
}
.hero .tag {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1.8rem;
}
.cta-row {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.home-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.home-section h2 {
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.dl-grid a {
  color: var(--text);
}
.dl-grid a:hover {
  text-decoration: none;
}
.dl-grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 100%;
}

ol.steps {
  padding-left: 1.2rem;
  line-height: 1.9;
}
