/**
 * yw052 系设计 token v2 ——「Apple 式克制」· 主站 zyw052.com 与名片站 me.zyw052.com 共用同一份文件
 * 依据：hallmark-design SKILL §48（禁止内联色彩/字体，全部经 var(--token) 引用）、
 *       §23（强调色单屏 ≤5% 面积）、§22（中性色禁零色度）、§7（禁纯 #000/#fff）、
 *       §24（4pt 间距尺度）、§27（reduced-motion 回退）；吸收 Google/Material 网格纪律。
 */
:root {
  /* ---- 色板：近黑近白 + 暖灰阶 + 单一强调色（赭铜，克制暖色） ---- */
  --bg:            #fafafa;   /* 纸面（非纯白） */
  --bg-elev:       #f5f5f6;   /* 弱分层底 */
  --text:          #1d1d1f;   /* 主文（近黑，非纯黑） */
  --text-muted:    #6e6e73;   /* 次文 */
  --text-faint:    #aeaeb2;   /* 弱注记 */
  --border:        #e5e5e7;   /* 1px 描边代替阴影 */
  --accent:        #b4581f;   /* 单一强调色：赭铜（链接/编号/标线） */
  --accent-ink:    #8a4416;   /* 强调色 hover/深 */

  /* ---- 字号阶梯（精准阶梯 + 收紧字距，标题禁斜体） ---- */
  --font-sans: -apple-system, 'SF Pro Text', 'PingFang SC', 'Segoe UI', 'Noto Sans SC', sans-serif;
  --fs-12: 0.75rem; --fs-14: 0.875rem; --fs-16: 1rem; --fs-19: 1.1875rem;
  --fs-23: 1.4375rem; --fs-29: 1.8125rem; --fs-37: 2.3125rem; --fs-48: 3rem;
  --lh-tight: 1.12;  /* 大字 line-height，全大写子标 ≥1.0 均满足 */
  --lh-body: 1.65;
  --tr-tight: -0.022em;  /* 37px+ */
  --tr-tight2: -0.014em; /* 23px 级 */
  --tr-wide: 0.18em;     /* 编号眉标 letterspacing */

  /* ---- 间距（4pt 尺度：8/16/24/32/48/64/96） ---- */
  --s-8: 8px; --s-16: 16px; --s-24: 24px; --s-32: 32px;
  --s-48: 48px; --s-64: 64px; --s-96: 96px;
  --maxw: 68rem;   /* 1088px 载体 */
  --maxw-text: 62ch;

  /* ---- 圆角：克制统一 ---- */
  --r-card: 10px;
  --r-pill: 999px;

  /* ---- 阴影/描边：以 1px 描边为主，阴影仅进场悬起 ---- */
  --shadow-lift: 0 1px 2px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.06);

  /* ---- 动效：顺滑但克制（无弹跳/无过冲，禁 transition:all） ---- */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 480ms;
}

/* reduced-motion 回退（SKILL §27） */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
