:root {
  --brand-1: #0a84ff;
  --brand-2: #7c3aed;
  --brand-3: #00c2ff;
  --ink: #0b1220;
  --muted: #6b7280;
  --bg: #f7f8fb;
}
html,
body {
  font-family: Inter, "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
}
.text-gradient {
  background: linear-gradient(
    90deg,
    var(--brand-1),
    var(--brand-2),
    var(--brand-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-hero {
  background: radial-gradient(
      1200px 600px at 20% 10%,
      rgba(124, 58, 237, 0.25),
      transparent 60%
    ),
    linear-gradient(135deg, var(--brand-1), var(--brand-2));
}
.opacity-90 {
  opacity: 0.9;
}
.fw-extrabold {
  font-weight: 800;
}

.pricing-card.highlight {
  transform: translateY(-4px);
}
.pricing-card .display-6 {
  letter-spacing: -0.5px;
}
.step {
  position: relative;
}
.step .step-num {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-1);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.navbar .nav-link.active {
  font-weight: 600;
  color: var(--brand-1) !important;
}
.navbar .nav-link:hover {
  color: var(--brand-1);
}

.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
