/* ==========================================================================
   主题色 / 设计令牌（Design Tokens）
   企业 SaaS 质感：暗色侧栏 + 浅色主区，纯净的蓝青色调
   ========================================================================== */
:root {
  /* 主色 — 蓝青 */
  --c-primary-50:  #f0f9ff;
  --c-primary-100: #e0f2fe;
  --c-primary-200: #bae6fd;
  --c-primary-300: #7dd3fc;
  --c-primary-400: #38bdf8;
  --c-primary-500: #0ea5e9;
  --c-primary-600: #0284c7;
  --c-primary-700: #0369a1;
  --c-primary-800: #075985;
  --c-primary-900: #0c4a6e;

  /* 灰色阶 */
  --c-gray-50:  #f8fafc;
  --c-gray-100: #f1f5f9;
  --c-gray-200: #e2e8f0;
  --c-gray-300: #cbd5e1;
  --c-gray-400: #94a3b8;
  --c-gray-500: #64748b;
  --c-gray-600: #475569;
  --c-gray-700: #334155;
  --c-gray-800: #1e293b;
  --c-gray-900: #0f172a;
  --c-gray-950: #020617;

  /* 状态色 */
  --c-success:  #10b981;
  --c-success-bg: #d1fae5;
  --c-success-fg: #047857;
  --c-warning:  #f59e0b;
  --c-warning-bg: #fef3c7;
  --c-warning-fg: #b45309;
  --c-danger:   #ef4444;
  --c-danger-bg: #fee2e2;
  --c-danger-fg: #b91c1c;
  --c-info:     #6366f1;
  --c-info-bg:  #e0e7ff;
  --c-info-fg:  #4338ca;

  /* 文本色 */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-tertiary:  #94a3b8;
  --text-inverse:   #f8fafc;

  /* 背景 */
  --bg-app:    #f1f5f9;
  --bg-card:   #ffffff;
  --bg-hover:  #f8fafc;
  --bg-input:  #ffffff;
  --bg-disabled: #f1f5f9;

  /* 边框 */
  --border-light:  #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark:   #94a3b8;

  /* 阴影 */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.05);

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;

  /* 间距 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  /* 字体 */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica,
               Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;

  --text-xs:   12px;
  --text-sm:   13px;
  --text-base: 14px;
  --text-md:   15px;
  --text-lg:   16px;
  --text-xl:   18px;
  --text-2xl:  22px;
  --text-3xl:  28px;
  --text-4xl:  34px;

  /* 布局尺寸 */
  --sidebar-width: 232px;
  --sidebar-collapsed-width: 64px;
  --topbar-height: 60px;

  /* 动画 */
  --t-fast: 120ms ease;
  --t-base: 200ms ease;
  --t-slow: 320ms cubic-bezier(0.16, 1, 0.3, 1);
}