/* Explain: Theme tokens defining the site's professional dark theme color palette and typography. - */
:root {
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary-color: #3B82F6;
    --accent-color: #60A5FA;
    /* Redefined aliases for a sleek, professional dark theme */
    --lime-color: #60A5FA;   /* Sleek Blue Accent */
    --pink-color: #0F172A;   /* Slate 900 - Alternate Section BG */
    --purple-color: #1E293B; /* Slate 800 - Card/Surface BG */
    --black-color: #020617;  /* Slate 950 - Main BG */
    --white-color: #F8FAFC;  /* Slate 50 - Text */
    
    --background-color: #020617;
    --surface-color: #0F172A;
    --text-color: #F8FAFC;
    --text-muted: rgba(248, 250, 252, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}