/* SunCRM design tokens — single source of truth (spec §Design).
   Consumed by the CRM UI, landing pages, and email BUTTON styles only —
   email bodies use light backgrounds (deliverability); dark theme is web-only. */

:root {
    /* Surfaces */
    --bg: #0A0A0A;
    --surface: #141414;
    --border: #262626;

    /* Gold */
    --gold: #C9A227;
    --gold-hover: #E3C158;
    --gold-muted: #8A6D1F;

    /* Text */
    --text: #F5F2E9;
    --text-secondary: #9C978A;

    /* Status (desaturated — gold stays dominant) */
    --green: #4C9A6A;
    --red: #B5484D;

    /* Type */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

    /* Rhythm */
    --radius: 8px;
    --radius-sm: 5px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 40px;
}
