/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400&family=Roboto:wght@300;400;500&display=swap');

/* VARIABLES - Based on Corp Identity Manual */
:root {
    --color-bg-primary: #0A192F;      /* Abyssal Navy - Stability */
    --color-action: #00B4D8;          /* Kinetic Blue - Innovation */
    --color-surface: #1F2937;         /* Titanium Slate - Precision */
    --color-success: #10B981;         /* Neo-Emerald - Growth */
    --color-text-main: #F9FAFB;       /* Logic White - Readability */
    --color-text-muted: #D1D5DB;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-logo {
    width: 200px;
}