/* ──────────────────────────────────────────────
   CSS Variables
   ────────────────────────────────────────────── */
:root {
    --accent: #6c63ff;
    --bg: #000000;
    --text: #ffffff;
    --text-muted: rgba(232, 232, 240, 0.6);
}

/* ──────────────────────────────────────────────
   Reset & Base
   ────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}
