/* Global Variables & Resets */

:root {
    /* Colors */
    --clr-bg: #050505;
    --clr-bg-surface: #111111;
    --clr-primary: #0B3CFF;
    --clr-primary-glow: rgba(11, 60, 255, 0.4);
    --clr-text-main: #FFFFFF;
    --clr-text-muted: #A0A0A0;
    --clr-border: #222222;

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --nav-height: 80px;
    --section-gap: 5rem;
    --container-width: 1200px;
    
    /* Layout */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight {
    color: var(--clr-primary);
}

::-moz-selection {
    background: var(--clr-primary);
    color: #fff;
}
::selection {
    background: var(--clr-primary);
    color: #fff;
}
