/* Explain: Color palette, typography, and design tokens. - */
:root {
    --primary-color: #111111;
    --primary-hover: #1a1a1a;
    --secondary-color: #2a2a2a;
    --accent-color: #76b900;
    --background-color: #ffffff;
    --surface-color: #f4f5f6;
    --surface-warm: #e9ecef;
    --text-color: #111111;
    --text-muted: #555555;
    --border-color: #dddddd;
    --white-color: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius-large: 0px;
    --radius-medium: 0px;
    --radius-small: 0px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}