/*
 * HoganAgent Design System — Token Layer
 * Extracted from Content Calendar (gold standard) + sweep findings
 * Prefix: ha- (HoganAgent)
 */

:root {
    /* ===== COLORS — Primitive ===== */
    --ha-white: #ffffff;
    --ha-black: #000000;
    --ha-gray-50: #f9fafb;
    --ha-gray-100: #f3f4f6;
    --ha-gray-200: #e5e7eb;
    --ha-gray-300: #d1d5db;
    --ha-gray-400: #9ca3af;
    --ha-gray-500: #6b7280;
    --ha-gray-600: #4b5563;
    --ha-gray-700: #374151;
    --ha-gray-800: #1f2937;
    --ha-gray-900: #111827;
    --ha-gray-950: #0a0f1a;

    /* Brand */
    --ha-primary: #0b0ffe;
    --ha-primary-hover: #0909d4;
    --ha-primary-light: #e8e8ff;
    --ha-primary-dark: #0808b0;

    /* Semantic */
    --ha-success: #10b981;
    --ha-success-light: #d1fae5;
    --ha-warning: #f59e0b;
    --ha-warning-light: #fef3c7;
    --ha-danger: #ef4444;
    --ha-danger-light: #fee2e2;
    --ha-info: #3b82f6;
    --ha-info-light: #dbeafe;

    /* Approval statuses (from Content Calendar) */
    --ha-status-pending: #f59e0b;
    --ha-status-approved: #10b981;
    --ha-status-rejected: #ef4444;
    --ha-status-revision: #8b5cf6;
    --ha-status-draft: #6b7280;

    /* Platform colors */
    --ha-platform-facebook: #1877f2;
    --ha-platform-instagram: #e4405f;
    --ha-platform-linkedin: #0a66c2;
    --ha-platform-twitter: #1da1f2;
    --ha-platform-youtube: #ff0000;
    --ha-platform-tiktok: #010101;
    --ha-platform-google: #4285f4;
    --ha-platform-pinterest: #e60023;
    --ha-platform-email: #ea4335;
    --ha-platform-sms: #25d366;

    /* Agent persona colors */
    --ha-persona-botson: #d4a017;
    --ha-persona-twinson: #5b21b6;
    --ha-persona-dev: #2563eb;
    --ha-persona-reviewer: #6b7280;
    --ha-persona-qa: #059669;
    --ha-persona-media: #0d9488;
    --ha-persona-marketing: #f87171;
    --ha-persona-sales: #d97706;
    --ha-persona-research: #7c3aed;

    /* ===== COLORS — Semantic (Light Theme) ===== */
    --ha-bg: var(--ha-white);
    --ha-bg-secondary: var(--ha-gray-50);
    --ha-bg-tertiary: var(--ha-gray-100);
    --ha-bg-elevated: var(--ha-white);
    --ha-surface: var(--ha-white);
    --ha-surface-hover: var(--ha-gray-50);
    --ha-border: var(--ha-gray-200);
    --ha-border-light: var(--ha-gray-100);
    --ha-text: var(--ha-gray-900);
    --ha-text-secondary: var(--ha-gray-600);
    --ha-text-tertiary: var(--ha-gray-400);
    --ha-text-inverse: var(--ha-white);
    --ha-sidebar-bg: var(--ha-gray-900);
    --ha-sidebar-text: var(--ha-gray-300);
    --ha-sidebar-active: var(--ha-primary);

    /* ===== TYPOGRAPHY ===== */
    --ha-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ha-font-display: 'Space Grotesk', var(--ha-font-body);
    --ha-font-code: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

    --ha-text-xs: 0.75rem;      /* 12px */
    --ha-text-sm: 0.875rem;     /* 14px */
    --ha-text-base: 1rem;       /* 16px */
    --ha-text-lg: 1.125rem;     /* 18px */
    --ha-text-xl: 1.25rem;      /* 20px */
    --ha-text-2xl: 1.5rem;      /* 24px */
    --ha-text-3xl: 1.875rem;    /* 30px */
    --ha-text-4xl: 2.25rem;     /* 36px */

    --ha-leading-tight: 1.25;
    --ha-leading-normal: 1.5;
    --ha-leading-relaxed: 1.75;

    --ha-weight-light: 300;
    --ha-weight-normal: 400;
    --ha-weight-medium: 500;
    --ha-weight-semibold: 600;
    --ha-weight-bold: 700;
    --ha-weight-extrabold: 800;

    /* ===== SPACING ===== */
    --ha-space-1: 0.25rem;   /* 4px */
    --ha-space-2: 0.5rem;    /* 8px */
    --ha-space-3: 0.75rem;   /* 12px */
    --ha-space-4: 1rem;      /* 16px */
    --ha-space-5: 1.25rem;   /* 20px */
    --ha-space-6: 1.5rem;    /* 24px */
    --ha-space-8: 2rem;      /* 32px */
    --ha-space-10: 2.5rem;   /* 40px */
    --ha-space-12: 3rem;     /* 48px */
    --ha-space-16: 4rem;     /* 64px */

    /* ===== BORDERS ===== */
    --ha-radius-sm: 8px;
    --ha-radius-md: 12px;
    --ha-radius-lg: 16px;
    --ha-radius-full: 9999px;

    /* ===== SHADOWS ===== */
    --ha-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ha-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --ha-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

    /* ===== TRANSITIONS ===== */
    --ha-transition-fast: 0.15s ease;
    --ha-transition-base: 0.25s ease;
    --ha-transition-slow: 0.35s ease;

    /* ===== LAYOUT ===== */
    --ha-sidebar-width: 260px;
    --ha-sidebar-collapsed: 72px;
    --ha-topbar-height: 56px;
    --ha-max-content: 1280px;
    --ha-z-sidebar: 100;
    --ha-z-topbar: 200;
    --ha-z-modal: 1000;
    --ha-z-toast: 1100;
    --ha-z-tooltip: 1200;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
    --ha-bg: var(--ha-gray-950);
    --ha-bg-secondary: var(--ha-gray-900);
    --ha-bg-tertiary: var(--ha-gray-800);
    --ha-bg-elevated: var(--ha-gray-800);
    --ha-surface: var(--ha-gray-900);
    --ha-surface-hover: var(--ha-gray-800);
    --ha-border: var(--ha-gray-700);
    --ha-border-light: var(--ha-gray-800);
    --ha-text: var(--ha-gray-100);
    --ha-text-secondary: var(--ha-gray-400);
    --ha-text-tertiary: var(--ha-gray-500);
    --ha-sidebar-bg: var(--ha-black);
    --ha-sidebar-text: var(--ha-gray-400);

    --ha-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --ha-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --ha-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}
