.landing-body { background: linear-gradient(180deg, #f0f4fa 0%, var(--bg) 280px); }
.hero { text-align: center; padding: 1.5rem 0 1rem; }
.hero h1 { font-size: 1.75rem; margin-bottom: 0.35rem; }
.hero .lead { max-width: 32rem; margin: 0 auto; }
.web-demos-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 0.75rem;
}
.web-demo-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.1rem;
}
.web-demos-section {
  margin-bottom: 1.5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.product-card { margin: 0; position: relative; }
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.product-link:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(29, 91, 191, 0.12);
}
.product-enterprise { border-color: #c5d4e8; }
.product-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.product-card h2 { margin: 0.35rem 0 0.5rem; font-size: 1.15rem; }
.product-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.product-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.hint.center { text-align: center; }
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}