/* Buttons */
.mipro-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--mipro-primary);
  color: #fff;
  text-decoration:none;
  font-weight:700;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.04);
}
.mipro-btn--ghost{
  background: transparent;
  color: var(--mipro-text);
  border: 1px solid rgba(17,24,39,.16);
}

/* Hero */
.mipro-hero{
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(37,99,235,0));
}
.mipro-hero__kicker{
  margin:0 0 10px;
  color: var(--mipro-muted);
  font-weight:700;
  font-size: 13px;
  letter-spacing: .3px;
}
.mipro-hero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}
.mipro-hero__text{
  margin:0 0 18px;
  color: var(--mipro-muted);
  max-width: 62ch;
}
.mipro-hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
