:root {
  --bn-primary: #7c3aed; /* Vivid Violet */
  --bn-secondary: #06b6d4; /* Aqua */
  --bn-accent: #f59e0b; /* Amber */
  --bn-deep: #0b1020; /* Deep Navy */
  --bn-muted: #6b7280; /* Gray */
  --bn-bg: #f8fafc; /* Soft BG */
  --bs-primary: var(--bn-primary);
}

html,
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;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Manrope, Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    Arial, sans-serif;
}
.bg-body {
  background: var(--bn-bg);
}
a {
  color: var(--bn-primary);
}
a:hover {
  color: #5b21b6;
}
.nav-link.active {
  color: var(--bn-primary) !important;
  font-weight: 700;
}

.hero-violet {
  background: radial-gradient(
      1200px 600px at 15% 10%,
      rgba(6, 182, 212, 0.35),
      transparent 70%
    ),
    linear-gradient(140deg, var(--bn-primary), #5b21b6 60%, var(--bn-secondary));
}
.glassy {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
}

.feature-pill {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
}
.feature-pill i {
  font-size: 1.5rem;
  color: var(--bn-primary);
}
.price-card .display-6 {
  letter-spacing: -0.02em;
}

.process-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.process-step .step-icon {
  font-size: 1.75rem;
  color: var(--bn-primary);
}

.timeline li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.25rem;
}
.timeline li .bi-dot {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--bn-accent);
}

.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: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  z-index: 10000;
  outline: 2px solid var(--bn-primary);
}

.toc-sticky {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.toc-sticky .btn {
  --bs-btn-border-color: var(--bn-primary);
  --bs-btn-hover-bg: var(--bn-primary);
  --bs-btn-hover-border-color: var(--bn-primary);
}

.team-card .avatar-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bn-primary), var(--bn-secondary));
  color: #fff;
  font-weight: 800;
  margin-top: 0.25rem;
}

.table thead th {
  white-space: nowrap;
}
