:root {
  --ink-900: #0b1020;
  --ink-50: #f5f7fb;
  --ink-25: #eef8f1;
  --accent: #2de59c;
  --accent-2: #ff2e63;
  --accent-3: #3e82ff;
  --text: #131a24;
  --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-ink-900 {
  background: var(--ink-900) !important;
}
.bg-ink-50 {
  background: var(--ink-50) !important;
}
.bg-ink-25 {
  background: var(--ink-25) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.bg-accent {
  background: var(--accent) !important;
}
.badge.bg-accent {
  background: var(--accent) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f17;
  border: 0;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 24px rgba(45, 229, 156, 0.25);
  font-weight: 700;
}
.btn-accent:hover {
  opacity: 0.96;
  color: #0b0f17;
}

.hero-neo {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(46, 229, 156, 0.3),
      transparent 60%
    ),
    radial-gradient(
      900px 450px at 90% 20%,
      rgba(62, 130, 255, 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, #101633, #0b1020);
}
.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(--accent), var(--accent-2));
  color: #0b0f17;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-card {
  border-radius: var(--radius);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 14px 30px rgba(45, 229, 156, 0.22);
}

.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;
}
