/* ── Trdx UI v2 fonts ───────────────────────────────────────────────────────
 * The same TTFs are bundled under composeApp/src/commonMain/composeResources/font/
 * so Compose canvas can resolve them; these @font-face declarations cover the
 * DOM-rendered fallback (loading spinner, browser-default text before the
 * canvas mounts). Variable-axis TTFs cover all weights from a single file. */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('SpaceGrotesk.ttf') format('truetype-variations');
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
    src: url('JetBrainsMono.ttf') format('truetype-variations');
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Space Grotesk', 'Helvetica Neue', sans-serif;
    background: #020817; /* slate-950 — avoid white flash before canvas mounts */
    color: #f1f5f9; /* slate-100 */
}
