/* Feeksy brand tokens — trimmed to what the landing page uses.
   Fonts (Poppins + Inter) loaded from Google Fonts in index.html. */

:root {
    /* INK */
    --ink-50: #F1F6F8;
    --ink-100: #E1E6E8;
    --ink-200: #C0C7CA;
    --ink-700: #2F3A3F;

    /* GREEN (brand) */
    --green-100: #CAF7E0;
    --green-300: #68DDAA;
    --green-400: #0CCE91;
    --green-500: #00A56E;
    --green-600: #007F4B;
    --green-700: #00572E;

    /* TEAL (primary) */
    --teal-100: #D6EDFA;
    --teal-800: #143545;

    /* BLUEGRAY (neutral) */
    --blueGray-500: #798DA9;
    --blueGray-600: #5E7189;

    /* RED (form error) */
    --red-500: #FE4A49;

    /* FONT FAMILIES */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}