/* Explain: Theme tokens defining the site's color palette and typography. - */
:root {
    --primary-color: #3B82F6;
    --primary-hover: #2563EB;
    --secondary-color: #6366F1;
    --accent-color: #00E5FF;
    /* Legacy aliases mapped to new modern tech palette */
    --lime-color: #00E5FF;   /* Cyan */
    --pink-color: #3B82F6;   /* Bright Blue for contrast */
    --purple-color: #818CF8; /* Soft Indigo for contrast */
    --black-color: #020617;  /* Deep Slate */
    --white-color: #F8FAFC;
    
    --background-color: #020617;
    --surface-color: #0F172A;
    --text-color: #F8FAFC;
    --text-muted: rgba(248, 250, 252, 0.7);
    --border-color: rgba(248, 250, 252, 0.12);
    --shadow-soft: 0 26px 80px rgba(59, 130, 246, 0.2);
    --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}