/* Public landing. The action button comes from .btn--primary in
   static/components.css; .hero-kicker stays in static/style.css — the
   login screen uses both. */
/* Landing page */
.landing-wrap {
  flex: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero-sub {
  margin: 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}

.feature-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
