:root {
  --primary: #6f2cf5;
  --secondary: #00c2a8;
  --accent: #ff6b6b;
  --sun: #ffd166;
  --ink: #1f2430;
  --muted: #5f6c7b;
  --bg: #0f1220;
  --surface: #ffffff;
  --ring: rgba(111, 44, 245, 0.25);
}

:root {
  --ff-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: #fff;
}
h1,
h2,
h3,
h4,
.display-5,
.display-6 {
  font-family: var(--ff-head);
}

a {
  color: var(--primary);
}
a:hover {
  color: #5421c8;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.navbar {
  backdrop-filter: saturate(140%) blur(6px);
}
.navbar .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.hero-vivid {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(255, 209, 102, 0.35),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at 90% 10%,
      rgba(0, 194, 168, 0.25),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at 20% 90%,
      rgba(111, 44, 245, 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4ff 100%);
}
.blob {
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}
.blob--violet {
  background: radial-gradient(circle at 30% 30%, #b69bff, transparent 60%);
  right: -60px;
  top: -60px;
}
.blob--teal {
  background: radial-gradient(circle at 70% 70%, #7ff1e3, transparent 60%);
  left: -60px;
  bottom: -60px;
}

.card {
  border: 1px solid #eef0f5;
  border-radius: 1.25rem;
}
.card:hover {
  box-shadow: 0 1rem 2rem rgba(31, 36, 48, 0.08);
}

.icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: #fff;
  border: 2px solid var(--ring);
  box-shadow: 0 8px 20px rgba(111, 44, 245, 0.08);
  color: var(--primary);
}

.step {
  border: 1px dashed #e4e7ef;
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff, #fbfbff);
}
.step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.section-angled {
  position: relative;
  z-index: 0;
  background: #fff;
}
.section-angled::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 40px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(111, 44, 245, 0.08),
    rgba(0, 194, 168, 0.08)
  );
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.faq details {
  border: 1px solid #e9ecf3;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details + details {
  margin-top: 0.75rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
}

.table thead th {
  background: #fafbff;
}

footer {
  background: #fff;
}

.badge-accent {
  background: var(--sun);
  color: #222;
  font-weight: 600;
}
.text-muted-ink {
  color: var(--muted) !important;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 2rem rgba(0, 0, 0, 0.06);
}
.price-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: #eef7ff;
  color: #0d6efd;
}
.text-muted-ink {
  color: #6b7280;
}
