/* ============================================================
   TIANNA.SSO 设计令牌（Design Tokens）
   ------------------------------------------------------------
   全项目共享的颜色 / 间距 / 字号 / 圆角 / 阴影 / 层级基准。
   由 Areas/profile/Views/Shared/_Layout.cshtml 抽取而来，
   值与原内联定义逐字一致，未做任何修改。
   所有页面应通过 <link> 引入本文件，避免重复定义 :root。
   ============================================================ */

:root {
    /* === Primary Colors === */
    --primary-50: #e6eef8;
    --primary-100: #c5d9ed;
    --primary-200: #a3c3e2;
    --primary-300: #81add7;
    --primary-400: #5f97cc;
    --primary-500: #004098;
    --primary-600: #00367d;
    --primary-700: #002c62;
    --primary-800: #002247;
    --primary-900: #00182c;

    /* === Semantic Colors === */
    --primary-color: var(--primary-500);
    --primary-light: var(--primary-50);
    --primary-accent: #0052cc;   /* 渐变强调蓝（按钮渐变等） */
    --primary-link: #0066CC;     /* 交互/链接蓝（等待状态等） */
    --text-color: #1a202c;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --light-gray: #f7fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --success-light: #d1fae5;
    --warning-color: #f59e0b;
    --warning-light: #fef3c7;
    --danger-color: #ef4444;
    --danger-light: #fee2e2;
    --info-color: #3b82f6;
    --info-light: #dbeafe;

    /* === Spacing Scale (8pt grid) === */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

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

    /* === Border Radius === */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* === Shadows === */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* === Z-Index Scale === */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
