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

:root {
    --bg: #070910;
    --surface: #0c1521;
    --border: #182538;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --text-pri: #e2eaf5;
    --text-sec: #3d5a78;
    --text-muted: #1a2d42;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    font-family: var(--font);
    color: var(--text-pri);
}

[x-cloak] { display: none !important; }
