/* ══════════════════════════════════════════════
   TIXITY — Design Tokens
   Single source of truth for colors, fonts, spacing
   ══════════════════════════════════════════════ */

:root {
    /* Brand colors */
    --navy: #0A1128;
    --navy-light: #1B2B65;
    --coral: #F08B6E;
    --coral-hover: #e07a5c;
    --green: #6BBF7A;
    --pink: #E8A4B8;
    --blue: #1546e5;
    --blue-light: #B5D4E8;

    /* Neutrals */
    --white: #FAFAFA;
    --gray: #8892A0;
    --dark: #060D1F;

    /* Fonts */
    --font-display: 'Comfortaa', cursive;
    --font-body: 'Urbanist', sans-serif;
    --font-mono: 'Space Mono', monospace;
}
