:root {
  --base-900: #0b1220;
  --base-50: #f6f8fb;
  --base-25: #eef4ff;
  --neo: #2563eb;
  --neo-2: #a3e635;
  --neo-3: #db2777;
  --text: #121826;
  --muted: #667085;
  --radius: 1rem;
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text);
  background: #fff;
}

.bg-base-900 {
  background: var(--base-900) !important;
}
.bg-base-50 {
  background: var(--base-50) !important;
}
.bg-base-25 {
  background: var(--base-25) !important;
}
.text-neo {
  color: var(--neo) !important;
}
.bg-neo {
  background: var(--neo) !important;
}
.badge.bg-neo {
  background: var(--neo) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.btn-neo {
  background: linear-gradient(135deg, var(--neo), var(--neo-3));
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}
.btn-neo:hover {
  opacity: 0.96;
  color: #fff;
}

.hero-surge {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(37, 99, 235, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 450px at 90% 20%,
      rgba(163, 230, 53, 0.3),
      transparent 60%
    ),
    linear-gradient(180deg, #0e1530, #0b1220);
}
.fw-extrabold {
  font-weight: 800;
}

.glassy {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #fff;
}
.glassy .form-control,
.glassy .form-select {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(17, 23, 41, 0.08);
}
.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neo), var(--neo-2));
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-card {
  border-radius: var(--radius);
}
.pricing-card.featured {
  border: 2px solid var(--neo);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  z-index: 10000;
}
