/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #a855f7; /* Purple to match logo */
    --primary-hover: #9333ea;
    --secondary-color: #c084fc;
    --accent-color: #d8b4fe;
    --background-color: #090514; /* Deep dark space */
    --surface-color: #160c28; /* Slightly lighter surface */
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #2e1e4b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}