:root {
  --mx-font-display: "Outfit", "Inter", system-ui, sans-serif;
  --mx-font-body: "Nunito Sans", "Inter", system-ui, sans-serif;
  --mx-space-1: 0.25rem;
  --mx-space-2: 0.5rem;
  --mx-space-3: 0.75rem;
  --mx-space-4: 1rem;
  --mx-space-5: 1.25rem;
  --mx-space-6: 1.5rem;
  --mx-space-8: 2rem;
}

.mx-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #4e4f7d;
  border: 1px solid #dce2ff;
  background: #f7f9ff;
}

.mx-card {
  border-radius: 20px;
  border: 1px solid #e2e7ff;
  background: #fff;
  box-shadow: 0 12px 36px rgba(91, 108, 255, 0.09);
}

.mx-section-title {
  margin: 0;
  font-family: var(--mx-font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #171a31;
}

.mx-section-lead {
  margin: 0;
  color: #5d6486;
  font-size: 0.95rem;
  line-height: 1.55;
}

.mx-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.62rem 1.25rem;
  background: linear-gradient(135deg, #5b6cff, #7a3cff 60%, #ec4899);
  color: #fff;
  font-family: var(--mx-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.mx-pill-btn:hover {
  filter: brightness(1.06);
}

.mx-pill-btn:active {
  transform: scale(0.985);
}

.mx-pill-btn--ghost {
  border: 1px solid #d7dcff;
  background: #fff;
  color: #363c61;
}
