:root {

    /* ==========================
       COLORS
    ========================== */

    --color-background: #090909;
    --color-surface: #141414;
    --color-surface-hover: #1d1d1d;

    --color-primary: #FFD400;
    --color-primary-hover: #ffdf47;

    --color-text: #F5F5F5;
    --color-text-secondary: #A6A6A6;

    --color-border: rgba(255,255,255,.08);

    --color-success: #22C55E;
    --color-danger: #EF4444;


    /* ==========================
       TYPOGRAPHY
    ========================== */

    --font-title: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;


    /* ==========================
       FONT SIZE
    ========================== */

    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;


    /* ==========================
       FONT WEIGHT
    ========================== */

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;


    /* ==========================
       SPACING
    ========================== */

    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;


    /* ==========================
       BORDER RADIUS
    ========================== */

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;


    /* ==========================
       SHADOW
    ========================== */

    --shadow-sm: 0 5px 15px rgba(0,0,0,.15);
    --shadow-md: 0 10px 30px rgba(0,0,0,.25);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.35);


    /* ==========================
       TRANSITIONS
    ========================== */

    --transition: .3s ease;


    /* ==========================
       LAYOUT
    ========================== */

    --container-width: 1280px;
    --header-height: 80px;

}