:root {
  --brand-1: #7c3aed;
  --brand-2: #06b6d4;
  --brand-3: #ff6b6b;
  --brand-ink: #0f172a;
  --brand-muted: #64748b;
  --brand-bg: #f8fafc;
}

html,
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--brand-ink);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
.bg-gradient {
  background: radial-gradient(
    90% 120% at 0% 0%,
    var(--brand-1) 0%,
    #5b21b6 40%,
    #312e81 100%
  );
}
.bg-gradient-subtle {
  background: linear-gradient(0deg, #fff 0%, #f3e8ff 40%, #e0f2fe 100%);
}
.text-white a {
  color: #fff;
  text-decoration: underline;
}

.brand-badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: inline-block;
}

.btn-aurivexa {
  --bs-btn-bg: var(--brand-1);
  --bs-btn-border-color: var(--brand-1);
  --bs-btn-hover-bg: #6d28d9;
  --bs-btn-hover-border-color: #6d28d9;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}
.nav-link.active {
  color: var(--brand-1) !important;
  font-weight: 600;
}

.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-2), #22d3ee);
  color: #0b2230;
  font-size: 1.3rem;
}
.step-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
}
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-3);
  color: #fff;
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--brand-2);
}

.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

.timeline {
  list-style: none;
  padding-left: 0;
}
.timeline li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--brand-2);
}

.process-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px dashed var(--brand-muted);
  background: #fff;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}

.card-header .badge {
  letter-spacing: 0.5px;
}
a {
  color: inherit;
  text-decoration: none;
}