/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #e65100;
    --primary-hover: #ff6d00;
    --secondary-color: #3f3f46;
    --accent-color: #d97706;
    --background-color: #111111;
    --surface-color: #1c1917;
    --text-color: #eaddcf;
    --text-muted: #a8a29e;
    --border-color: #292524;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}