:root {
  --brand-primary: #6a4c93;
  --brand-accent: #ffb703;
  --brand-muted: #e9e2f4;
  --ink-900: #0b132b;
  --ink-700: #3a506b;
  --ink-500: #7a8aa1;
  --bg-soft: #faf7ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans",
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--ink-900);
  background-color: #fff;
}

h1,
h2,
.brand-mark {
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
}

.navbar .nav-link.active {
  color: var(--brand-primary) !important;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-outline-secondary:hover {
  color: var(--ink-900);
}

.bg-gradient-hero {
  background: radial-gradient(
    1200px 600px at 10% -10%,
    var(--brand-muted),
    #ffffff 60%
  );
}

.section-title {
  letter-spacing: 0.3px;
}

.badge-accent {
  background: var(--brand-accent);
  color: #1b1b1b;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.25rem 0.6rem;
}

.card:hover {
  transform: translateY(-2px);
  transition: transform 0.15s ease;
}

.hero-illus {
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(106, 76, 147, 0.15);
}

.step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), #8a63bd);
}

.faq-item {
  border: 1px solid #e7e7ef;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

table td,
table th {
  vertical-align: middle;
}
code {
  background: #f6f6fb;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
}
