/*
=========================================
MrSciFiAI Design System
=========================================
*/

:root {

    /* Brand */
    --color-primary: #6C63FF;
    --color-primary-light: #8B84FF;
    --color-secondary: #00D4FF;

    /* Background */
    --color-bg: #0B1020;
    --color-surface: #131A2E;
    --color-surface-light: #1C2541;

    /* Text */
    --color-text: #FFFFFF;
    --color-text-muted: #A8B2D1;

    /* Border */
    --color-border: #2A3657;

    /* Layout */
    --container-width: 1300px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transition */
    --transition: .3s ease;
}

/*
=========================================
Global Reset
=========================================
*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}