:root {
  --iris-700: #4338ca;
  --cobalt-600: #2563eb;
  --lime-400: #a3e635;
  --sun-400: #f59e0b;
  --ink: #0b0f1a;
  --mist: #f6f9ff;
  --mist-2: #f4f7fa;
  --muted: #6b7280;
}

html,
body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Outfit, "IBM Plex Sans", system-ui, -apple-system, Segoe UI,
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.hero-wrap {
  background: radial-gradient(
      140% 160% at 0% 0%,
      var(--cobalt-600) 0%,
      #0b3aa9 45%,
      #081531 100%
    ),
    linear-gradient(135deg, rgba(163, 230, 53, 0.45), rgba(67, 56, 202, 0.5));
}
.ridge {
  background: linear-gradient(180deg, #fff 0%, #eef2ff 40%, #f0ffe1 100%);
}
.bg-soft {
  background: var(--mist);
}
.bg-soft-2 {
  background: var(--mist-2);
}

.logo-gem {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 30%;
  background: conic-gradient(
    from 90deg,
    var(--lime-400),
    var(--cobalt-600),
    var(--iris-700),
    var(--lime-400)
  );
  box-shadow: 0 0 0 0.12rem #fff, 0 0.25rem 0.75rem rgba(0, 0, 0, 0.18);
}

.btn-cxo {
  --bs-btn-bg: var(--iris-700);
  --bs-btn-border-color: var(--iris-700);
  --bs-btn-hover-bg: #372fbd;
  --bs-btn-hover-border-color: #372fbd;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}
.border-cxo {
  border-color: var(--iris-700) !important;
}
.text-ink {
  color: var(--ink);
}
.nav-link.active {
  color: var(--iris-700) !important;
  font-weight: 700;
}
.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.feature-card {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.08);
}
.feat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lime-400), #eaffac);
  color: #19320a;
  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(--cobalt-600);
  color: #fff;
  font-weight: 800;
}

.badge.text-bg-lime {
  background: var(--lime-400);
  color: #1b2d08;
}
.badge.text-bg-iris {
  background: var(--iris-700);
  color: #fff;
}
.badge.text-bg-sun {
  background: var(--sun-400);
  color: #2a1600;
}

.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(--cobalt-600);
}

.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}
