/* ===== CSS 变量与基础重置 ===== */

:root {
  --bg: #f7f5eb;
  --surface: #ffffff;
  --surface-2: #fbfaf2;
  --ink: #111411;
  --muted: #667067;
  --line: #e5dfc8;
  --line-strong: #d3c9a8;
  --brand-yellow: #ffea19;
  --brand-yellow-strong: #ffd600;
  --brand-yellow-soft: #fff8b8;
  --brand-black: #0d100d;
  --brand-black-2: #171b17;
  --teal: #087f78;
  --teal-soft: #e5f4f1;
  --amber: #b66d00;
  --amber-soft: #fff1d7;
  --rose: #b9414b;
  --rose-soft: #ffe4e7;
  --blue: #315f9d;
  --blue-soft: #e8eef8;
  --green: #2f7d42;
  --shadow: 0 18px 42px rgba(17, 20, 17, 0.1);
  --shadow-strong: 0 24px 60px rgba(17, 20, 17, 0.16);
  --radius: 8px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfaf2 0%, var(--bg) 280px, #f3f1e7 100%);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
