/* =====================================================================
 * PDFnoted · 全局设计令牌 (Design Tokens)
 * 统一品牌色 / 文字 / 边框 / 圆角 / 阴影 / 间距
 * 所有页面逐步从内联 style 迁移到这些变量 + components.css
 * ===================================================================== */
:root {
  /* 品牌 */
  --brand: #4f46e5;
  --brand-dark: #4338ca;
  --brand-light: #eef2ff;
  --brand-soft: #eef2ff;
  --brand-grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

  /* 文字 */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  /* 边框 / 表面 */
  --border: #e5e7eb;
  --border-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-muted: #f8fafc;

  /* 状态色 */
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 20px 50px rgba(79, 70, 229, .18);

  /* 间距 */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 72px;

  /* 容器 */
  --container: 1200px;
}
