:root {
  --theme-primary: #ec4899;
  --theme-primary-dark: #be185d;
  --theme-surface: #fff9fc;
  --color-primary: var(--theme-primary);
  --color-primary-dark: var(--theme-primary-dark);
}

body {
  background: radial-gradient(700px 280px at 10% -10%, #ffdff0, transparent), var(--theme-surface);
}

.feature-card {
  border-radius: 24px;
}

.timeline li {
  border: 1px solid #f9c5df;
  background: #fff;
}

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