/* CSS Variables - 设计系统变量 */
:root {
  /* 颜色系统 */
  --primary: #b985e8;
  --secondary: #d7a7f4;
  --accent: #f1e6ff;
  --bg-light: #fdfaff;
  --bg-card: #ffffff;
  --text-main: #2d2d2d;
  --text-muted: #817489;
  
  /* 阴影 */
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.12);
  
  /* 圆角 */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* 过渡 */
  --transition: 0.3s;
  --transition-slow: 0.5s;
  
  /* 布局 */
  --container-max: 1200px;
  --nav-height: 64px;

  /* 编辑排版：墨色 / 纸面 / 分隔线（内容档案语言的淡紫中性色） */
  --ink: #352b42;
  --ink-soft: #7d7288;
  --paper: #f8f6fc;
  --paper-deep: #f1eafb;
  --line: rgba(120, 90, 150, 0.10);

  /* 眉题 / 徽标品牌紫 */
  --eyebrow: #935bbe;

  /* 演唱会主题色（原 main.css :root，集中到此） */
  --concert-accent: #b985e8;

  /* 字级（流式） */
  --text-xs: 0.78rem;
  --text-sm: 0.88rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: clamp(1.8rem, 3.4vw, 2.4rem);
  --text-3xl: clamp(3.3rem, 6.8vw, 5.6rem);

  /* 字距 */
  --tracking-eyebrow: 0.18em;
  --tracking-title: 0.04em;

  /* 区块节奏 */
  --space-section: clamp(64px, 9vw, 112px);
  --space-block: clamp(40px, 6vw, 72px);
}
