/* 花型工作台 · 图像优先的浅色创作界面。 */
:root {
  color-scheme: light;
  --bg: #f1f3f2;
  --surface: #ffffff;
  --surface-2: #f7f8f7;
  --canvas-bg: #e7ebe9;
  --line: #e0e5e2;
  --line-strong: #cbd3ce;
  --text: #202725;
  --text-2: #59645f;
  --text-3: #7b8580;
  --accent: #dc6149;
  --accent-weak: #fff0eb;
  --accent-strong: #bf4e39;
  --danger: #c94f4f;
  --ok: #168267;
  --warn: #a96720;
  --nav: #151a18;
  --nav-raised: #222927;
  --nav-line: #303835;
  --nav-text: #edf1ef;
  --nav-muted: #98a29d;
  --radius: 8px;
  --radius-s: 6px;
  --shadow: 0 1px 2px rgba(21, 31, 27, .05), 0 5px 14px rgba(21, 31, 27, .035);
  --shadow-lg: 0 18px 42px rgba(21, 31, 27, .16);
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --mono: "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 14px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; }
button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
::selection { background: #ffd8cd; color: #4b1d14; }
