/* ============================================================
   典名词元 主站 Design Tokens v1.0
   与 Design System (07-design-system.md) 配套
   与 main.css 共存，不覆盖现有 .nav / .header 等样式
   ============================================================ */

:root {
  /* ── 品牌色（与 main.css 的 --bs-primary 保持一致 #ff6a00）── */
  --brand-primary: #ff6a00;
  --brand-primary-hover: #ff8a3d;
  --brand-primary-active: #d65800;
  --brand-primary-soft: #fff3eb;

  /* ── 浅蓝辅助（与业务站 hero 渐变同源）── */
  --accent-blue-50: #f0f4ff;
  --accent-blue-100: #e0eaff;
  --accent-blue-300: #93b4ff;
  --accent-blue-500: #2563eb;
  --accent-blue-600: #1d4ed8;

  /* ── 数据色（GEO 关键 — 价格/对比/benchmark） ── */
  --data-green: #10b981;
  --data-amber: #f59e0b;
  --data-red: #ef4444;
  --data-purple: #8b5cf6;

  /* ── 中性色（背景 / 文字 / 边框）── */
  --bg-base: #faf8f1;        /* 全局米黄底 */
  --bg-paper: #ffffff;        /* 卡片白底 */
  --bg-soft: #f5f2e8;         /* 卡片二级底 */
  --bg-hero: linear-gradient(180deg, #f0f4ff 0%, #e0eaff 100%);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #999999;
  --text-disabled: #c8c8c8;
  --border-base: #e8e4d8;
  --border-soft: #f0ede3;

  /* ── 阴影 ── */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 12px 32px rgba(26, 26, 26, 0.08);
  --shadow-glow-orange: 0 8px 24px rgba(255, 106, 0, 0.20);
  --shadow-glow-blue: 0 8px 24px rgba(37, 99, 235, 0.15);

  /* ── 圆角 ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ── 缓动 ── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── 时长 ── */
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --duration-slow: 0.6s;
  --duration-drift: 60s;

  /* ── 字体 ── */
  --font-sans: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;

  /* ── 字阶 ── */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 38px;
  --text-5xl: 52px;
  --text-6xl: 72px;

  /* ── 字重 ── */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* ── 间距（4px 倍数）── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-18: 72px;
  --space-20: 80px;
  --space-24: 96px;

  /* ── 营销品牌色（用于折扣 / 推荐高亮）── */
  --brand-primary-dark: #5b21b6;
  --brand-warm-orange: #ff8a00;
  --brand-warm-red: #ff4d4d;
}

/* ── 全局基底（覆盖 Bootstrap 默认） ── */
body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 数字专用（价格 / benchmark） ── */
.text-numeric {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ── 减弱动画（无障碍兜底） ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 全局：杜绝水平滚动条/左侧白边 ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
