/* ============================================================
 * 《密封线》 surface.css — 表面阶段皮肤
 * 米白纸张 + 深蓝印章 + 衬线体：真实测评机构官网质感。
 * 只覆盖 CSS 变量，组件样式来自 global.css。
 * ============================================================ */
html[data-phase="surface"]{
  --bg:#F5F2EC; --bg-soft:#FBFAF6; --ink:#1E2430; --ink-soft:#4A5260;
  --accent:#1F4E79; --accent-soft:rgba(31,78,121,.10);
  --seal:#A82828; --seal-soft:rgba(168,40,40,.08);
  --line:#D8D2C4; --line-strong:#B9B1A0;
  --kw-color:#1F4E79;
  --shadow:0 2px 14px rgba(30,36,48,.06);
}
/* 表面阶段专属氛围 */
html[data-phase="surface"] .scanlines{opacity:.05}
html[data-phase="surface"] .vignette{opacity:0}
/* 官网质感细节 */
html[data-phase="surface"] .site-head{background:rgba(255,255,255,.92);backdrop-filter:blur(4px)}
/* 顶部细条 */
html[data-phase="surface"] body::before{
  content:"";display:block;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--seal),var(--accent));
}
/* 纸张纹理 */
html[data-phase="surface"] .panel{
  background:linear-gradient(180deg,#FDFCF8,#F7F4EC);
  box-shadow:0 1px 3px rgba(60,50,30,.07),0 4px 18px rgba(60,50,30,.05);
}
/* 楷体点缀 */
html[data-phase="surface"] .page-title{font-family:var(--font-body)}
html[data-phase="surface"] blockquote{
  border-left:3px solid var(--line-strong);margin:var(--space-4) 0;padding:8px 18px;
  font-size:14px;color:var(--ink-soft);background:var(--bg-soft);
}