/* Hahu Skill — design tokens */
:root {
    --color-primary: #1f4e79;
    --color-primary-dark: #153955;
    --color-primary-light: #e8f1f8;

    --color-secondary: #d4a017;
    --color-secondary-dark: #9b7310;
    --color-secondary-light: #fff5d6;

    --color-accent: #2e7d32;
    --color-accent-dark: #1f5a23;
    --color-accent-light: #e9f5ea;

    --color-purple: #6f42c1;
    --color-purple-light: #f0eafa;
    --color-pink: #c44569;
    --color-pink-light: #faeaf0;
    --color-orange: #c96d19;
    --color-orange-light: #fff0e2;

    --color-page: #f7f5ef;
    --color-surface: #ffffff;
    --color-surface-soft: #fbfaf7;
    --color-text: #263238;
    --color-text-muted: #66737b;
    --color-heading: #172b3a;
    --color-border: #d9e0e5;
    --color-border-dark: #bbc7cf;

    --color-success: #1f7a3f;
    --color-success-bg: #eaf7ef;
    --color-success-border: #9ed7ae;
    --color-error: #a52a2a;
    --color-error-bg: #fff0f0;
    --color-error-border: #e5aaaa;
    --color-warning: #8a5a00;
    --color-warning-bg: #fff8e6;
    --color-warning-border: #f0c66d;
    --color-info: #155f87;
    --color-info-bg: #eaf5fb;
    --color-info-border: #a6d4e8;

    --font-body: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
    --font-ethiopic: "Noto Sans Ethiopic", "Nyala", "Abyssinica SIL", sans-serif;

    --container-width: 1180px;
    --content-width: 850px;

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 22px;
    --radius-pill: 999px;

    --shadow-small: 0 3px 12px rgba(31, 78, 121, 0.08);
    --shadow-medium: 0 10px 30px rgba(31, 78, 121, 0.12);
    --shadow-large: 0 20px 55px rgba(31, 78, 121, 0.16);

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 56px;
    --space-10: 72px;

    --transition-fast: 160ms ease;
    --transition-normal: 240ms ease;
}
