/* ---- hero ---- */
.hero-banner {
  background: linear-gradient(135deg, #5e35b1 0%, #7e57c2 100%);
  color: #fff;
  border-radius: 14px;
  padding: 2.2rem 2rem;
  margin: 0 0 1.6rem;
}
.hero-banner h1 { color: #fff; margin: 0 0 .5rem; font-size: 2.1rem; }
.hero-banner p  { margin: 0 0 1rem; max-width: 60ch; line-height: 1.5; opacity: .96; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-badge {
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: .2rem .7rem; font-size: .8rem; font-weight: 600;
}
/* ---- feature grid ---- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; margin: 1rem 0 2rem;
}
.feature-card {
  display: block; border: 1px solid var(--color-background-border, #e0e0e0);
  border-radius: 12px; padding: 1.1rem 1.2rem; text-decoration: none !important;
  color: inherit !important; transition: transform .12s ease, box-shadow .12s ease;
  background: var(--color-background-secondary, #fafafa);
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(94,53,177,.16); }
.feature-card-icon { width: 38px; height: 38px; border-radius: 9px; display: flex;
  align-items: center; justify-content: center; margin-bottom: .7rem; }
.feature-card-icon svg { width: 22px; height: 22px; }
.icon-blue   { background: #e3f2fd; color: #1565c0; }
.icon-green  { background: #e8f5e9; color: #2e7d32; }
.icon-orange { background: #fff3e0; color: #e65100; }
.icon-purple { background: #ede7f6; color: #5e35b1; }
.feature-card-title { font-weight: 700; margin-bottom: .3rem; }
.feature-card-desc  { font-size: .88rem; opacity: .82; line-height: 1.45; }
/* ---- headings / tables ---- */
.dr-heading { margin-top: 2rem; }
.dr-sub { opacity: .75; margin-top: -.4rem; }
table.metric-table { font-variant-numeric: tabular-nums; }
table.metric-table th { background: #ede7f6; }
