/* =====================================================
   聚银 GS PACK 设计系统
   Design tokens · 颜色/字体/间距/组件基础
   ===================================================== */

/* --- 颜色 --- */
:root {
  --color-primary: #0057b3;         /* 品牌蓝 - 品牌主色 */
  --color-primary-dark: #003d7a;
  --color-primary-light: #4a90d9;
  --color-accent: #00b4d8;          /* 科技青 */
  --color-dark: #1a1a2e;
  --color-dark-2: #16213e;
  --color-light: #f8f9fa;
  --color-light-2: #e9ecef;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #dee2e6;
  --color-success: #28a745;
  --color-warning: #ffc107;

  /* 品牌渐变 */
  --gradient-primary: linear-gradient(135deg, #0057b3 0%, #00b4d8 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* --- 字体 --- */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.25rem;
  --line-height: 1.6;
  --line-height-heading: 1.2;
}

/* --- 间距 --- */
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --container-max: 1200px;
  --container-narrow: 800px;
}

/* --- 圆角 --- */
:root {
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* --- 阴影 --- */
:root {
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,87,179,0.15);
}

/* --- 过渡 --- */
:root {
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* --- 断点 (参考) --- */
/* 手机:  < 576px    */
/* 平板:  576-991px  */
/* 桌面:  ≥ 992px    */
