:root {
  --base-900: #0e1020;
  --base-50: #f6f7fb;
  --base-25: #f1f3ff;
  --accent: #6c5ce7;
  --accent-2: #00d1b2;
  --accent-3: #ff7a59;
  --text: #1c1f2e;
  --muted: #6b7280;
  --radius: 1rem;
}

body {
  font-family: "Inter", 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-accent {
  color: var(--accent) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.25);
}
.btn-accent:hover {
  opacity: 0.95;
  color: #fff;
}

.hero-gradient {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(108, 92, 231, 0.45),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 90% 20%,
      rgba(0, 209, 178, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #2d2f60, #121431);
}

.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.9);
  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: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card {
  border-radius: var(--radius);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 14px 30px rgba(108, 92, 231, 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;
}
