:root {
  --cyan-500: #06b6d4;
  --coral-500: #fb7185;
  --plum-600: #7c3aed;
  --midnight: #0a0f1f;
  --haze: #f5f7ff;
  --haze-2: #f8fafc;
  --ink: #121826;
  --muted: #6b7280;
}

html,
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
}
h1,
h2,
h3,
h4 {
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.hero-gradient {
  background: radial-gradient(
      140% 160% at 0% 0%,
      var(--plum-600) 0%,
      #4c1d95 45%,
      var(--midnight) 100%
    ),
    linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(251, 113, 133, 0.35));
}
.ridge {
  background: linear-gradient(180deg, #fff 0%, #eef2ff 40%, #e6fffb 100%);
}
.bg-soft {
  background: var(--haze);
}
.bg-soft-2 {
  background: var(--haze-2);
}

.logo-orb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 35%;
  background: conic-gradient(
    from 90deg,
    var(--cyan-500),
    var(--plum-600),
    var(--coral-500),
    var(--cyan-500)
  );
  box-shadow: 0 0 0 0.14rem #fff, 0 0.25rem 0.75rem rgba(0, 0, 0, 0.16);
}

.btn-mindarya {
  --bs-btn-bg: var(--plum-600);
  --bs-btn-border-color: var(--plum-600);
  --bs-btn-hover-bg: #6a29e1;
  --bs-btn-hover-border-color: #6a29e1;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}
.border-mindarya {
  border-color: var(--plum-600) !important;
}
.text-ink {
  color: var(--ink);
}
.nav-link.active {
  color: var(--plum-600) !important;
  font-weight: 700;
}
.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.card-tilt {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.08);
}
.pill-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan-500), #a5f3fc);
  color: #042a31;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--coral-500);
  color: #fff;
  font-weight: 800;
}

.badge.text-bg-plum {
  background: var(--plum-600);
  color: #fff;
}
.badge.text-bg-coral {
  background: var(--coral-500);
  color: #2a1014;
}
.badge.text-bg-cyan {
  background: var(--cyan-500);
  color: #012126;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px dashed var(--muted);
  background: #fff;
}

.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(--plum-600);
}

.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}
