:root {
  --bc-primary: #6a5bff;
  --bc-teal: #00d0b6;
  --bc-sun: #ffc857;
  --bc-ink: #0e1325;
  --bc-bg: #f7f8ff;
}

html,
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--bc-ink);
  background: #fff;
}

h1,
h2,
.navbar-brand,
.hero-title {
  font-family: "Merriweather Sans", "Manrope", "Segoe UI", Roboto, Arial,
    sans-serif;
  letter-spacing: -0.01em;
}

.bg-bc-gradient {
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-teal));
}
.bg-hero-bc {
  background: radial-gradient(
      1100px 520px at -10% -20%,
      rgba(106, 91, 255, 0.35),
      transparent
    ),
    radial-gradient(
      1100px 520px at 110% 120%,
      rgba(0, 208, 182, 0.28),
      transparent
    ),
    linear-gradient(135deg, var(--bc-primary), var(--bc-teal));
}
.bg-bc-soft {
  background: linear-gradient(180deg, #fff, var(--bc-bg));
}

.card {
  border-radius: 1rem;
}
img.rounded-4 {
  border-radius: 1rem !important;
}
.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(106, 91, 255, 0.12);
  color: var(--bc-primary);
  font-size: 1.25rem;
}

.timeline {
  border-left: 2px dashed rgba(14, 19, 37, 0.15);
  padding-left: 1rem;
}
.timeline li {
  position: relative;
  margin-bottom: 1rem;
}
.timeline-dot {
  position: absolute;
  left: -10px;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bc-sun);
  box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.18);
}

.faq-item summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 19, 37, 0.08);
  border-radius: 0.75rem;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] summary {
  box-shadow: 0 0 0 0.25rem rgba(106, 91, 255, 0.18);
  border-color: var(--bc-primary);
}
.faq-item > div {
  padding: 0.75rem 1rem 0.5rem 1rem;
  color: #475569;
}

.btn-primary {
  --bs-btn-bg: var(--bc-primary);
  --bs-btn-border-color: var(--bc-primary);
  --bs-btn-hover-bg: #584af0;
  --bs-btn-hover-border-color: #584af0;
}
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
}

.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
}
