:root {
  --theme-primary: #a855f7;
  --theme-primary-dark: #9333ea;
  --theme-surface: #fbf7ff;
  --color-primary: var(--theme-primary);
  --color-primary-dark: var(--theme-primary-dark);
}

body {
  background: linear-gradient(180deg, #f3e9ff 0%, var(--theme-surface) 32%);
}

.panel {
  border: 1px solid #d8b6ff;
}

.timeline li {
  background: #f9f0ff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-text: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-border: #334155;
  }
}
