/* ============================================
   Hermes Design Tokens v1.0
   逸达安析 · 逸达生物 统一设计语言
   ============================================ */

:root {
  /* ── 背景层级 ── */
  --bg-deep: #0a0e17;
  --bg-dark: #111827;
  --bg-panel: #1a1f2e;
  --bg-hover: #1e2538;
  --bg-glass: rgba(17, 24, 39, 0.6);
  --bg-glass-hover: rgba(26, 31, 46, 0.8);

  /* ── 边框 ── */
  --border-subtle: #2a3040;
  --border-glow: rgba(59, 130, 246, 0.3);
  --border-glass: rgba(59, 130, 246, 0.15);

  /* ── 品牌色 ── */
  --brand: #3b82f6;
  --brand-light: #60a5fa;
  --brand-dark: #2563eb;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --purple: #6366f1;

  /* ── 品牌渐变 ── */
  --gradient-brand: linear-gradient(135deg, #3b82f6, #6366f1);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  --gradient-card-border: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
  --gradient-divider: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);

  /* ── 语义色 ── */
  --danger: #ef4444;       /* 高风险行动信号，点状使用 */
  --warning: #f59e0b;      /* 热搜/潜在风险/关注项 */
  --info-cyan: #06b6d4;    /* 短期关注（非危险），信息性 */
  /* 注：风险数据不使用绿色 */

  /* ── 文本色 ── */
  --text-primary: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;
  --text-disabled: #4b5563;

  /* ── 字体体系 ── */
  --font-display: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Consolas", "Courier New", monospace;

  /* ── 字号 ── */
  --text-hero: clamp(2.25rem, 5vw, 3.5rem);
  --text-h2: clamp(1.75rem, 3.5vw, 2.25rem);
  --text-h3: 1.5rem;
  --text-h4: 1.125rem;
  --text-body: 1rem;
  --text-caption: 0.875rem;
  --text-small: 0.75rem;
  --text-data: clamp(1.5rem, 3vw, 2.25rem);

  /* ── 间距 ── */
  --space-section: clamp(1.5rem, 3vw, 2.5rem);
  --space-block: 1.25rem;
  --space-card: 1.25rem;
  --space-gap: 1rem;

  /* ── 圆角 ── */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── 阴影 ── */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 32px rgba(59, 130, 246, 0.12);
  --shadow-btn: 0 4px 14px rgba(59, 130, 246, 0.25);

  /* ── 动效曲线 ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── 玻璃态 ── */
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-blur: 12px;
  --glass-border: rgba(255, 255, 255, 0.06);
}
