/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #ffffff;
    --primary-hover: #e4e4e7;
    --secondary-color: #27272a;
    --accent-color: #3b82f6; /* Tech blue for modern feel */
    --background-color: #09090b; /* Matte black / Zinc 950 */
    --surface-color: #18181b; /* Zinc 900 */
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}