/* ============================================================
 * 普问 · 全局品牌样式
 * 包含：导航 logo / 我的账号 / 首屏 / 关于普问 / 模块样式覆盖
 * ============================================================ */

/* ============== 导航 Logo（替代旧版） ============== */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 4px;
  background: transparent !important;
}
.navbar .logo-mark-img {
  width: 38px; height: 38px;
  display: block;
  object-fit: contain;
  background: transparent;
  /* 防止某些浏览器渲染时给图片加默认底色 */
  background-image: none;
  border: none;
}
/* 线稿阴阳鱼 logo（品牌主 logo）*/
.navbar .logo-mark-line {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A2E;
}
/* 顶栏 普问 字体 logo（横排版，替代 .logo-text 文字）*/
.navbar .logo-text-img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
  /* 让字与圆图标基线对齐 */
  margin-bottom: 1px;
}
/* 覆盖老版 .logo-icon 的圆形/方块底色（避免冲突）*/
.navbar .logo .logo-icon {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

/* ============== "我的账号" 按钮（导航右侧） ============== */
.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  color: #1A1A2E;
  cursor: pointer;
  transition: all 0.18s ease;
  font-weight: 500;
}
.nav-account-btn:hover {
  border-color: #1A1A2E;
  background: #1A1A2E;
  color: #fff;
}
.nav-account-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #4A9FE8 0%, #1661AB 100%);
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-account-btn:hover .nav-account-icon {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}
.nav-account-name {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-account-caret {
  font-size: 10px;
  opacity: 0.6;
}

/* ============== 我的账号 · 抽屉 ============== */
.acc-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.acc-drawer-overlay[hidden] { display: none; }
.acc-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.acc-drawer {
  width: 380px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  padding: 26px 22px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.32,.72,.32,1);
  position: relative;
  box-shadow: -8px 0 32px rgba(0,0,0,.05);
}
.acc-drawer-overlay.is-open .acc-drawer {
  transform: translateX(0);
}

.acc-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 30px; height: 30px;
  border: none;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  transition: all .12s;
}
.acc-close:hover { background: rgba(0,0,0,0.1); }

/* v2 简洁风格（朱玉婷 2026-06-28 重设计） */
.acc-head {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.acc-head-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 19px;
  font-weight: 600;
  color: #1A1A2E;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.acc-head-sub {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.acc-empty {
  padding: 28px 16px;
  text-align: center;
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  background: rgba(0,0,0,.02);
  border-radius: 10px;
}

/* 每条档案 = 单行、无外边框、hover/选中才高亮 */
.acc-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .12s;
}
.acc-item:hover { background: rgba(0,0,0,.035); }
.acc-item.is-current { background: rgba(22, 97, 171, 0.06); }

.acc-item-avatar {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: #4A9FE8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
/* 不再用 box-shadow 描边；当前项靠背景区分 */
.acc-item.is-current .acc-item-avatar {
  background: #1661AB;
  box-shadow: none;
}

/* 名字 + 生日单行排（参考 ask 下拉菜单） */
.acc-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  overflow: hidden;
}
.acc-item-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #1A1A2E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  margin: 0;
}
.acc-item-meta {
  font-size: 12.5px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}
.acc-item.is-current .acc-item-meta {
  color: #1661AB;
}
/* "本人" 标签 */
.acc-item-self {
  font-size: 10.5px;
  padding: 2px 8px;
  background: rgba(22, 97, 171, 0.08);
  color: #1661AB;
  border-radius: 6px;
  letter-spacing: 0;
  font-weight: 500;
  flex-shrink: 0;
}

/* 编辑铅笔 / 删除 ×：只在 hover 整行时出现，简约 */
.acc-item-edit,
.acc-item-del {
  width: 26px; height: 26px;
  border: 0;
  background: transparent;
  color: #bbb;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .12s;
  opacity: 0;
  font-size: 16px;
  line-height: 1;
}
.acc-item:hover .acc-item-edit,
.acc-item:hover .acc-item-del,
.acc-item.is-current .acc-item-edit,
.acc-item.is-current .acc-item-del {
  opacity: 1;
}
.acc-item-edit:hover { background: rgba(22, 97, 171, 0.1); color: #1661AB; }
.acc-item-del:hover { background: rgba(200, 71, 58, 0.1); color: #C8473A; }
[data-theme="dark"] .acc-item-edit { color: #80796D; }
[data-theme="dark"] .acc-item-edit:hover { background: rgba(125,183,229,0.12); color: #7DB7E5; }
[data-theme="dark"] .acc-item-del { color: #80796D; }

.acc-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1.5px dashed #C89B40;
  border-radius: 12px;
  font-size: 14px;
  color: #C89B40;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.acc-add-btn:hover {
  background: #C89B40;
  color: #fff;
}
.acc-add-plus {
  font-size: 18px;
  font-weight: 400;
}

.acc-foot {
  margin-top: 16px;
  font-size: 11px;
  color: #aaa;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ============================================================
 * 首屏 · 普问主页（新版 · 大字 + 大背景双球水墨）
 * ============================================================ */
.pw-hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(180deg, #F5EDDF 0%, #EDE3D2 60%, #E8DCC6 100%);
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  overflow: hidden;
}

/* === 背景：双球水墨阴阳 === */
.pw-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pw-hero-bg-yang,
.pw-hero-bg-yin {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* 球的尺寸变量（PC 默认）*/
.pw-hero-bg-yang,
.pw-hero-bg-yin {
  --ball-size: min(52vh, 480px);
  width: var(--ball-size);
  height: var(--ball-size);
}

/* === 阳球（白·珍珠玉质感）=== 右上 */
.pw-hero-bg-yang {
  right: 16%;
  top: 8%;
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 245, 0.6) 18%, transparent 38%),
    radial-gradient(circle at 50% 50%, #F8F4EA 0%, #E8DDC4 55%, #BFAE8C 90%, #968666 100%);
  box-shadow:
    inset -30px -50px 90px rgba(120, 95, 55, 0.32),
    inset 12px 20px 50px rgba(255, 255, 255, 0.55),
    0 30px 60px rgba(120, 95, 55, 0.18);
  animation: pwBallYangFloat 9s ease-in-out infinite;
}
.pw-hero-bg-yang::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 14%; height: 10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(1px);
}

/* === 阴球（黑·哑光大理石质感）=== 右下 */
.pw-hero-bg-yin {
  right: 4%;
  top: 28%;
  background:
    radial-gradient(ellipse at 35% 22%, rgba(160, 140, 110, 0.4) 0%, rgba(110, 90, 65, 0.2) 22%, transparent 45%),
    radial-gradient(circle at 50% 55%, #3A2F22 0%, #221B12 45%, #15100A 75%, #0A0805 100%);
  box-shadow:
    inset -25px -40px 80px rgba(0, 0, 0, 0.55),
    inset 8px 12px 60px rgba(180, 150, 110, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3),
    0 35px 70px rgba(0, 0, 0, 0.32);
  animation: pwBallYinFloat 9s ease-in-out infinite;
}
.pw-hero-bg-yin::after {
  content: '';
  position: absolute;
  top: 24%; left: 26%;
  width: 18%; height: 14%;
  background: radial-gradient(ellipse, rgba(220, 200, 165, 0.45) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(2px);
  animation: pwBallShine 6s ease-in-out infinite;
}

/* === 微动效（"拉远 → 靠近 → 拉远"循环 + 轻微缩放呼吸）===
   阳球在右上、阴球在右下 → 两球的"靠近方向"沿对角线
   阳球向右下走（朝阴球）= +x +y；阴球向左上走（朝阳球）= -x -y
*/
@keyframes pwBallYangFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(calc(var(--ball-size) * 0.06), calc(var(--ball-size) * 0.06)) scale(1.005); }
}
@keyframes pwBallYinFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(calc(var(--ball-size) * -0.06), calc(var(--ball-size) * -0.06)) scale(1.005); }
}
@keyframes pwBallShine {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.7;  transform: scale(1.1); }
}

/* 减少动画偏好兼容 */
@media (prefers-reduced-motion: reduce) {
  .pw-hero-bg-yang,
  .pw-hero-bg-yin,
  .pw-hero-bg-yin::after { animation: none !important; }
}

/* 颗粒纹理 */
.pw-hero-bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.14;
  mix-blend-mode: multiply;
}

/* === 主网格 === */
.pw-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

/* === 左侧：普问 logo 图 + 副标题 + slogan === */
.pw-hero-left { min-width: 0; }
.pw-hero-headline {
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  margin: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* logo 图 + 竖排 slogan 横向排布 */
.pw-hl-mark-row {
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.6vw, 48px);
  margin-bottom: 36px;
  /* 让 logo 笔画外缘和下方"给"字字面左缘视觉对齐：
     "普"字最左笔画前有约 8px 视觉留白，向左推 -10px 抵消 */
  margin-left: -10px;
}

/* 普问 logo 图（替代大字）*/
.pw-hl-mark {
  display: block;
  width: clamp(220px, 23vw, 320px);
  height: auto;
  margin: 0;
  /* 让线稿更清晰锐利 */
  image-rendering: -webkit-optimize-contrast;
}

/* slogan：只问本心（竖排，放在 logo 右侧）*/
.pw-hl-slogan-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  font-size: clamp(18px, 1.9vw, 26px);
  color: #999084;
  font-weight: 400;
  letter-spacing: 14px;
  /* 竖排时的"行距" */
  line-height: 1.05;
  /* 视觉居中对齐 logo 中部 */
  align-self: center;
  /* 抵消 letter-spacing 在最后一字下方多出的空白 */
  padding-top: 7px;
}

/* 副标题：给普通人的 / 人生提问工具 —— 方案 B：现代简洁黑体 */
.pw-hl-tagline {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei',
               -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #1A1714;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.45;
  margin: 0 0 22px;
}
.pw-hl-tagline-strong {
  background: linear-gradient(180deg, transparent 60%, rgba(200, 155, 64, 0.42) 60%);
  padding: 0 4px;
  font-weight: 600;
}

/* 兼容：保留旧 .pw-hl-slogan 样式（避免他处引用断裂）*/
.pw-hl-slogan {
  font-size: clamp(20px, 2.2vw, 30px);
  color: #999084;
  font-weight: 400;
  letter-spacing: 12px;
  line-height: 1;
  text-indent: 12px;
}

/* === 右侧：副文 + CTA === */
.pw-hero-right {
  min-width: 0;
  padding-top: 60px;
}
.pw-hero-eyebrow {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1714;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.pw-hero-desc {
  font-size: 14.5px;
  color: #5C544A;
  line-height: 1.95;
  letter-spacing: 1px;
  margin: 0 0 32px;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}

/* === CTA === */
.pw-hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.pw-btn-primary {
  background: linear-gradient(135deg, #C89B40 0%, #A07725 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(160, 119, 37, 0.3);
}
.pw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(160, 119, 37, 0.42);
  background: linear-gradient(135deg, #D4A84B 0%, #B0852E 100%);
}
.pw-btn-ghost {
  background: transparent;
  color: #1A1714;
  border: 1px solid rgba(26, 23, 20, 0.18);
}
.pw-btn-ghost:hover {
  border-color: #1A1714;
  background: #1A1714;
  color: #fff;
}
.pw-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #5C544A;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.pw-hero-link:hover {
  color: #1A1714;
}
.pw-hero-link svg {
  transition: transform 0.2s;
}
.pw-hero-link:hover svg {
  transform: translateY(2px);
}

.pw-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #8A8278;
  letter-spacing: 1.5px;
  flex-wrap: wrap;
}
.pw-hero-meta .dot { color: #C89B40; }

/* === 左下角小标识 === */
.pw-hero-corner {
  position: absolute;
  left: 56px; bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #5C544A;
  letter-spacing: 3px;
  font-family: 'Noto Serif SC', serif;
  opacity: 0.7;
}
.pw-hero-corner-logo {
  width: 22px; height: 22px;
  object-fit: contain;
  opacity: 0.85;
}

/* === 响应式 === */
@media (max-width: 980px) {
  .pw-hero { min-height: auto; padding: 50px 0 70px; }
  .pw-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 28px;
  }
  .pw-hero-bg-yang,
  .pw-hero-bg-yin {
    --ball-size: 70vw;
    width: var(--ball-size); height: var(--ball-size);
  }
  .pw-hero-bg-yang { right: -10%; top: 0; }
  .pw-hero-bg-yin  { right: -20%; top: 22%; }
  .pw-hero-right { padding-top: 8px; }
  .pw-hero-corner { left: 28px; bottom: 16px; font-size: 11px; }
}
@media (max-width: 560px) {
  .pw-hero { padding: 40px 0 90px; }
  .pw-hero-grid { padding: 0 22px; }
  .pw-hl-mark-row { gap: 22px; margin-bottom: 22px; margin-left: -6px; }
  .pw-hl-mark { width: 180px; }
  .pw-hl-slogan-vertical { font-size: 16px; letter-spacing: 8px; }
  .pw-hl-tagline { font-size: 22px; letter-spacing: 1px; margin-bottom: 14px; }
  .pw-hl-slogan { font-size: 17px; letter-spacing: 8px; text-indent: 8px; }
  .pw-hero-desc { font-size: 13.5px; }
  .pw-hero-cta { gap: 16px; }
  .pw-btn { padding: 12px 24px; font-size: 14px; }
  .pw-hero-bg-yang { --ball-size: 80vw; width: var(--ball-size); height: var(--ball-size); right: -25%; top: 5%; }
  .pw-hero-bg-yin  { --ball-size: 80vw; width: var(--ball-size); height: var(--ball-size); right: -35%; top: 25%; }
}

/* ============================================================
 * 第 1.5 屏 · 普问能做什么
 * ============================================================ */
.pw-skills {
  padding: 100px 24px 90px;
  background: #FAFAF8;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  position: relative;
}
.pw-skills-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pw-skills-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: #5C544A;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.pw-skills-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1A1714;
  letter-spacing: 1px;
  line-height: 1.45;
  margin: 0 0 56px;
  text-align: center;
}
.pw-skills-strike {
  position: relative;
  display: inline-block;
  color: #999084;
}
.pw-skills-strike::before {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  top: 55%;
  height: 3px;
  background: #C8473A;
  transform: rotate(-2deg);
  border-radius: 2px;
}
.pw-skills-hi {
  background: linear-gradient(180deg, transparent 60%, rgba(200,155,64,0.4) 60%);
  padding: 0 4px;
}

.pw-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.pw-skill-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.pw-skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(200, 155, 64, 0.4);
}
.pw-skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, #C89B40 0%, #1661AB 100%);
  transition: width 0.3s;
}
.pw-skill-card:hover::before { width: 100%; }
.pw-skill-num {
  font-family: 'Inter', monospace, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #C89B40;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.pw-skill-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1714;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.pw-skill-desc {
  font-size: 13.5px;
  color: #5C544A;
  line-height: 1.85;
  letter-spacing: 0.5px;
}

.pw-skills-foot {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 32px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pw-skills-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #5C544A;
  letter-spacing: 2px;
  font-family: 'Noto Serif SC', serif;
}
.pw-skills-stat strong {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  color: #1A1714;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0;
}

@media (max-width: 880px) {
  .pw-skills { padding: 70px 22px 60px; }
  .pw-skills-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pw-skills-foot { gap: 32px; }
}
@media (max-width: 560px) {
  .pw-skills-grid { grid-template-columns: 1fr; }
  .pw-skill-card { padding: 22px 20px; }
  .pw-skill-name { font-size: 18px; }
  .pw-skills-stat strong { font-size: 26px; }
}

/* 深色模式 */
[data-theme="dark"] .pw-skills { background: #14110C; }
[data-theme="dark"] .pw-skills-eyebrow { color: #B5AFA0; }
[data-theme="dark"] .pw-skills-title { color: #EDE8DC; }
[data-theme="dark"] .pw-skills-strike { color: #6E6759; }
[data-theme="dark"] .pw-skill-card { background: #1B1F26; border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pw-skill-card:hover { border-color: rgba(200, 155, 64, 0.5); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
[data-theme="dark"] .pw-skill-name { color: #EDE8DC; }
[data-theme="dark"] .pw-skill-desc { color: #B5AFA0; }
[data-theme="dark"] .pw-skill-num { color: #E5C16A; }
[data-theme="dark"] .pw-skills-foot { border-top-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pw-skills-stat { color: #B5AFA0; }
[data-theme="dark"] .pw-skills-stat strong { color: #EDE8DC; }

/* ============================================================
 * 第二屏 · 关于普问（杂志双栏 · 瑞士国际主义 × 东方衬线）
 * ============================================================ */
.pw-about {
  padding: 120px 48px 140px;
  background: #FAF7EF;          /* 米白底，比纯白更有纸感 */
  position: relative;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  overflow: hidden;
}
/* 右上角极淡的"问"字水印（呼应主题） */
.pw-about::before {
  content: '问';
  position: absolute;
  top: -60px;
  right: -40px;
  font-family: 'Noto Serif SC', serif;
  font-size: 480px;
  font-weight: 900;
  color: rgba(200, 155, 64, 0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -20px;
}

.pw-about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ===== 左栏：章节标识 ===== */
.pw-about-side {
  position: sticky;
  top: 120px;
}
.pw-about-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #C89B40;
  font-weight: 600;
  margin-bottom: 28px;
}
.pw-about-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #8A8278;
  margin-bottom: 12px;
  font-weight: 600;
}
.pw-about-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 64px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 12px;
  line-height: 1.15;
  margin: 0 0 36px;
  text-indent: 4px;
}
.pw-about-vline {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, #C89B40 0%, rgba(200,155,64,0) 100%);
  margin-bottom: 28px;
}
.pw-about-en {
  font-family: 'Cormorant Garamond', 'Source Serif Pro', 'Georgia', serif;
  font-size: 17px;
  line-height: 1.7;
  color: #8A8278;
  font-style: normal;
  letter-spacing: 0.3px;
}
.pw-about-en em {
  color: #C89B40;
  font-style: italic;
  font-weight: 500;
}

/* ===== 右栏：正文 ===== */
.pw-about-main {
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}
.pw-about-lead {
  font-size: 22px;
  line-height: 1.85;
  color: #1A1A2E;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 0 36px;
}
.pw-about-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #C89B40 0%, rgba(200,155,64,0) 80%);
  margin: 0 0 36px;
  width: 80px;
}
.pw-about-body {
  font-size: 17px;
  line-height: 2.2;
  color: #3A3A3A;
  letter-spacing: 0.8px;
  margin: 0 0 28px;
}
.pw-about-coda {
  font-family: 'Noto Serif SC', serif;
  font-size: 19px;
  line-height: 1.9;
  font-weight: 600;
  color: #1A1A2E;
  letter-spacing: 1.5px;
  margin: 36px 0 0;
  padding-left: 20px;
  border-left: 2px solid #C89B40;
}

/* 关键句：用底部金色横线代替蓝色 strong（更克制、更有杂志感） */
.pw-about-main mark {
  background: linear-gradient(to bottom, transparent 60%, rgba(200,155,64,0.32) 60%, rgba(200,155,64,0.32) 90%, transparent 90%);
  color: inherit;
  padding: 0 2px;
  font-weight: 600;
}

/* ===== 满版大字 motto（无框 · 仅靠两根金线收口） ===== */
.pw-about-motto {
  margin-top: 88px;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}
.pw-about-motto-rule {
  height: 1px;
  background: #1A1A2E;
  width: 100%;
  opacity: 0.85;
}
.pw-about-motto-line {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 8px;
  line-height: 1.4;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pw-about-motto-line .m-a,
.pw-about-motto-line .m-b {
  display: inline-block;
}
.pw-about-motto-line .m-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C89B40;
  font-size: 0;          /* 隐藏原 · 字符 */
  flex-shrink: 0;
}
.pw-about-motto-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 5px;
  color: #C89B40;
  font-weight: 700;
  margin-top: 16px;
}

/* ===== 响应式：≤960 单列 ===== */
@media (max-width: 960px) {
  .pw-about { padding: 72px 24px 88px; }
  .pw-about::before { font-size: 320px; top: -40px; right: -30px; }
  .pw-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pw-about-side { position: static; }
  .pw-about-title { font-size: 44px; letter-spacing: 8px; }
  .pw-about-lead { font-size: 19px; }
  .pw-about-body { font-size: 16px; line-height: 2.1; }
  .pw-about-motto { margin-top: 56px; }
  .pw-about-motto-line { font-size: 26px; letter-spacing: 5px; }
}
@media (max-width: 600px) {
  .pw-about-title { font-size: 36px; letter-spacing: 6px; }
  .pw-about-motto-line { font-size: 22px; letter-spacing: 4px; gap: 10px; }
  .pw-about-coda { font-size: 17px; }
}

/* ============================================================
 * 三大模块改名 · 问日柱 / 问全盘 / 问师傅
 * ============================================================ */
.pw-modules-section {
  padding: 88px 24px;
  background: #FAFCFE;
}
.pw-modules-section .section-title,
.pw-modules-section .section-subtitle {
  text-align: center;
  font-family: 'Noto Serif SC', serif;
}
.pw-modules-section .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #1A1A2E;
  margin: 0 0 12px;
}
.pw-modules-section .section-subtitle {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  margin: 0 0 50px;
}

.pw-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
/* 平板 → 2x2 */
@media (max-width: 1024px) and (min-width: 881px) {
  .pw-modules { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 720px; }
}
.pw-module-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.pw-module-card:hover {
  border-color: #1A1A2E;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 46, 0.12);
}
.pw-module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1661AB 0%, #C89B40 100%);
  opacity: 0;
  transition: opacity 0.22s;
}
.pw-module-card:hover::before { opacity: 1; }

.pw-module-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  color: #C89B40;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 700;
}
.pw-module-icon {
  width: 52px; height: 52px;
  background: #1A1A2E;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.pw-module-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: 4px;
  margin: 0 0 10px;
}
.pw-module-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 20px;
  flex: 1;
}
.pw-module-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1661AB;
  letter-spacing: 1px;
  margin-top: auto;
}
.pw-module-card:hover .pw-module-cta { color: #1A1A2E; }
.pw-module-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(200, 155, 64, 0.12);
  color: #C89B40;
  border-radius: 999px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================================
 * 移动端适配
 * ============================================================ */
@media (max-width: 880px) {
  .navbar .logo-mark-img { width: 32px; height: 32px; }
  .navbar .logo-mark-line { width: 32px; height: 32px; }
  .navbar .logo-text { font-size: 18px; letter-spacing: 3px; }
  .navbar .logo-text-img { height: 22px; }
  .nav-account-name { display: none; }
  .nav-account-btn { padding: 4px; }

  .pw-about { padding: 64px 22px; }
  .pw-about-title { font-size: 28px; letter-spacing: 5px; margin-bottom: 36px; }
  .pw-about-text { font-size: 14.5px; line-height: 2; }
  .pw-about-motto { padding: 24px 18px; }
  .pw-about-motto-line { font-size: 17px; letter-spacing: 3px; }

  .pw-modules-section { padding: 60px 18px; }
  .pw-modules-section .section-title { font-size: 24px; letter-spacing: 3px; }
  .pw-modules-section .section-subtitle { font-size: 12.5px; margin-bottom: 32px; }
  .pw-modules { grid-template-columns: 1fr; gap: 14px; }
  .pw-module-card { padding: 26px 22px 22px; }
  .pw-module-title { font-size: 19px; letter-spacing: 3px; }

  .acc-drawer { width: 320px; padding: 26px 18px; }
}

@media (max-width: 560px) {
  .pw-about-title { font-size: 24px; letter-spacing: 4px; }
}

/* ============== 语言切换 ============== */
.nav-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
  margin-right: 6px;
}
.nav-lang:hover {
  background: rgba(0,0,0,0.04);
  color: #1A1A2E;
}
.nav-lang-icon {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
}
.nav-lang-current {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
}
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.18s;
  z-index: 100;
}
.nav-lang.is-open .nav-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-lang-menu button {
  display: block;
  width: 100%;
  padding: 9px 14px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 13px;
  color: #2A2A2A;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.12s;
}
.nav-lang-menu button:hover {
  background: rgba(22, 97, 171, 0.06);
  color: #1661AB;
}
.nav-lang-menu button.active {
  background: rgba(22, 97, 171, 0.08);
  color: #1661AB;
  font-weight: 600;
}

@media (max-width: 880px) {
  .nav-lang { padding: 4px 8px; }
  .nav-lang-current { display: none; }
}

/* ============== 主题切换按钮（导航）============== */
.nav-theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
  margin-right: 4px;
}
.nav-theme-btn:hover {
  background: rgba(0,0,0,0.05);
  color: #1A1A2E;
}
.nav-theme-btn svg { display: block; }
/* 默认浅色：显示太阳图标 · 切到深色显示月亮 */
.nav-theme-btn .nav-theme-icon-light { display: inline-block; }
.nav-theme-btn .nav-theme-icon-dark { display: none; }
[data-theme="dark"] .nav-theme-btn .nav-theme-icon-light { display: none; }
[data-theme="dark"] .nav-theme-btn .nav-theme-icon-dark { display: inline-block; }

/* ============== 首页深色模式 ============== */
[data-theme="dark"] body { background: #0F1115; color: #EDE8DC; }
[data-theme="dark"] .navbar { background: rgba(15,17,21,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
[data-theme="dark"] .navbar .logo-text { color: #EDE8DC; }
[data-theme="dark"] .navbar .logo-mark-img { filter: invert(1); }
[data-theme="dark"] .navbar .logo-text-img { filter: invert(1); }
/* 深色模式下：线稿 logo 反转成白线 */
[data-theme="dark"] .navbar .logo-mark-line { filter: invert(1); }
[data-theme="dark"] .nav-menu a { color: #B5AFA0; }
[data-theme="dark"] .nav-menu a:hover { color: #EDE8DC; }
[data-theme="dark"] .nav-menu a:hover .nav-sub { color: #B5AFA0; opacity: 1; }
[data-theme="dark"] .nav-menu .nav-sub { color: #6E6759; }
/* 深色 active：白主字 + 金色下划线（保留浅色版的金色一致性） */
[data-theme="dark"] .nav-menu a.active { color: #EDE8DC; }
[data-theme="dark"] .nav-menu a.active .nav-sub { color: #E5C77A; opacity: 1; }
[data-theme="dark"] .nav-menu a.active::after { background: #E5C77A; }
[data-theme="dark"] .nav-account-btn { background: rgba(255,255,255,0.05); color: #EDE8DC; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .nav-account-btn:hover { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .nav-theme-btn { color: #B5AFA0; }
[data-theme="dark"] .nav-theme-btn:hover { background: rgba(255,255,255,0.08); color: #EDE8DC; }
[data-theme="dark"] .nav-lang { color: #B5AFA0; }
[data-theme="dark"] .nav-lang:hover { background: rgba(255,255,255,0.08); color: #EDE8DC; }
[data-theme="dark"] .nav-lang-menu { background: #1B1F26; border: 1px solid rgba(255,255,255,0.1); }
[data-theme="dark"] .nav-lang-menu button { color: #EDE8DC; }
[data-theme="dark"] .nav-lang-menu button:hover { background: rgba(125,183,229,0.1); color: #7DB7E5; }
[data-theme="dark"] .nav-lang-menu button.active { background: rgba(125,183,229,0.15); color: #7DB7E5; }
[data-theme="dark"] .demo-banner { background: #1B1F26; color: #B5AFA0; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* Hero 深色模式：保留双球水墨视觉，调整底色 */
[data-theme="dark"] .pw-hero { background: linear-gradient(180deg, #14110C 0%, #1A1610 60%, #1F1A12 100%); }
[data-theme="dark"] .pw-hl-mark { filter: invert(1); }
[data-theme="dark"] .pw-hl-tagline { color: #EDE8DC; }
[data-theme="dark"] .pw-hl-tagline-strong { background: linear-gradient(180deg, transparent 60%, rgba(229, 193, 106, 0.3) 60%); }
[data-theme="dark"] .pw-hl-slogan { color: #6E6759; }
[data-theme="dark"] .pw-hl-slogan-vertical { color: #6E6759; }
[data-theme="dark"] .pw-hero-eyebrow { color: #EDE8DC; }
[data-theme="dark"] .pw-hero-desc { color: #B5AFA0; }
[data-theme="dark"] .pw-hero-meta { color: #6E6759; }
[data-theme="dark"] .pw-hero-link { color: #B5AFA0; }
[data-theme="dark"] .pw-hero-link:hover { color: #EDE8DC; }
[data-theme="dark"] .pw-btn-ghost { color: #EDE8DC; border-color: rgba(255,255,255,0.18); }
[data-theme="dark"] .pw-btn-ghost:hover { background: #EDE8DC; color: #0F1115; }
[data-theme="dark"] .pw-hero-corner { color: #B5AFA0; }
[data-theme="dark"] .pw-hero-corner-logo { filter: invert(1); }
/* 深色模式：两球颜色深化 */
[data-theme="dark"] .pw-hero-bg-yang {
  background:
    radial-gradient(ellipse at 35% 25%, rgba(220, 200, 165, 0.35) 0%, transparent 38%),
    radial-gradient(circle at 50% 50%, #5A4F3D 0%, #3A2F22 55%, #221A0F 90%, #15100A 100%);
  box-shadow:
    inset -30px -50px 90px rgba(0, 0, 0, 0.55),
    inset 12px 20px 50px rgba(220, 195, 145, 0.18),
    0 30px 60px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .pw-hero-bg-yin {
  background:
    radial-gradient(ellipse at 35% 22%, rgba(80, 65, 45, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 50% 55%, #1F1810 0%, #100B05 50%, #050300 100%);
  box-shadow:
    inset -25px -40px 80px rgba(0, 0, 0, 0.7),
    inset 8px 12px 60px rgba(120, 95, 65, 0.12),
    inset 0 0 0 1px rgba(229, 193, 106, 0.18),
    0 35px 70px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .pw-hero-bg-grain { opacity: 0.25; mix-blend-mode: screen; }

/* 关于普问 · 深色（杂志双栏版） */
[data-theme="dark"] .pw-about { background: #14110C; }
[data-theme="dark"] .pw-about::before { color: rgba(200,155,64,0.04); }
[data-theme="dark"] .pw-about-num { color: #C89B40; }
[data-theme="dark"] .pw-about-eyebrow { color: #8A8278; }
[data-theme="dark"] .pw-about-title { color: #EDE8DC; }
[data-theme="dark"] .pw-about-en { color: #8A8278; }
[data-theme="dark"] .pw-about-en em { color: #E5C77A; }
[data-theme="dark"] .pw-about-lead { color: #EDE8DC; }
[data-theme="dark"] .pw-about-body { color: #C5BFB0; }
[data-theme="dark"] .pw-about-coda { color: #EDE8DC; border-left-color: #C89B40; }
[data-theme="dark"] .pw-about-main mark {
  background: linear-gradient(to bottom, transparent 60%, rgba(229,199,122,0.30) 60%, rgba(229,199,122,0.30) 90%, transparent 90%);
  color: #EDE8DC;
}
[data-theme="dark"] .pw-about-motto-rule { background: #EDE8DC; opacity: 0.7; }
[data-theme="dark"] .pw-about-motto-line { color: #EDE8DC; }
[data-theme="dark"] .pw-about-motto-line .m-dot { background: #C89B40; }
[data-theme="dark"] .pw-about-motto-sub { color: #C89B40; }

[data-theme="dark"] .pw-modules-section { background: #0F1115; }
[data-theme="dark"] .pw-modules-section .section-title { color: #EDE8DC; }
[data-theme="dark"] .pw-modules-section .section-subtitle { color: #B5AFA0; }
[data-theme="dark"] .pw-module-card { background: #1B1F26; border-color: rgba(255,255,255,0.08); color: #EDE8DC; }
[data-theme="dark"] .pw-module-card:hover { border-color: #7DB7E5; box-shadow: 0 12px 32px rgba(0,0,0,0.45); }
[data-theme="dark"] .pw-module-tag { background: rgba(125,183,229,0.12); color: #7DB7E5; }
[data-theme="dark"] .pw-module-num { color: #6E6759; }
[data-theme="dark"] .pw-module-title { color: #EDE8DC; }
[data-theme="dark"] .pw-module-desc { color: #B5AFA0; }
[data-theme="dark"] .pw-module-cta { color: #7DB7E5; }

/* === Footer brand：线稿 logo + 字体 logo（与顶栏等比对齐）=== */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-mark-img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  /* footer 默认深色背景，线稿黑色 logo 反转成白 */
  filter: invert(1);
}
.footer-wordmark {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
  /* "普问"字体 logo 同样反白 */
  filter: invert(1);
}
.footer-brand-sub {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Footer 深色 */
[data-theme="dark"] .footer { background: #0A0C10; color: #B5AFA0; border-top: 1px solid rgba(255,255,255,0.06); }
[data-theme="dark"] .footer h4 { color: #EDE8DC; }
[data-theme="dark"] .footer a { color: #B5AFA0; }
[data-theme="dark"] .footer a:hover { color: #7DB7E5; }
[data-theme="dark"] .footer img { opacity: 0.85; }
/* footer 深浅色背景都是深色，brand 图始终保持 invert(1)（黑线→白线）即可，
   不需要在深色模式再次反转 */
[data-theme="dark"] .footer-mark-img,
[data-theme="dark"] .footer-wordmark { opacity: 0.95; }
[data-theme="dark"] .footer-disclaimer { color: #6E6759; border-top: 1px solid rgba(255,255,255,0.06); }
[data-theme="dark"] .footer-disclaimer strong { color: #EDE8DC; }

/* 账号抽屉 深色 */
[data-theme="dark"] .acc-drawer-overlay { background: rgba(0,0,0,0.55); }
[data-theme="dark"] .acc-drawer { background: #1B1F26; color: #EDE8DC; }
[data-theme="dark"] .acc-drawer .acc-head-title { color: #EDE8DC; }
[data-theme="dark"] .acc-drawer .acc-head-sub { color: #B5AFA0; }
[data-theme="dark"] .acc-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); color: #EDE8DC; }
[data-theme="dark"] .acc-item:hover { background: rgba(255,255,255,0.07); }
[data-theme="dark"] .acc-item.is-current { background: rgba(125,183,229,0.12); border-color: rgba(125,183,229,0.3); }
[data-theme="dark"] .acc-item-name { color: #EDE8DC; }
[data-theme="dark"] .acc-item-meta { color: #B5AFA0; }
[data-theme="dark"] .acc-add-btn { background: transparent; border-color: rgba(255,255,255,0.15); color: #7DB7E5; }
[data-theme="dark"] .acc-add-btn:hover { background: rgba(125,183,229,0.08); }
[data-theme="dark"] .acc-foot { color: #6E6759; }
[data-theme="dark"] .acc-close { color: #B5AFA0; }
[data-theme="dark"] .acc-close:hover { background: rgba(255,255,255,0.08); color: #EDE8DC; }

/* ============================================================
 * 专属日历区（杂志双栏 · 编号要点列表 + 仿翻页卡）
 * ============================================================ */
.pw-cal-section {
  padding: 72px 48px 80px;
  background: #F2EBD8;   /* 旧版"高粟"暖米色，比纯白更有质感 + 拉开和上下区块对比 */
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  position: relative;
  overflow: hidden;
}
/* 右上角"日"字水印（呼应"问"/"宝"水印体系） */
.pw-cal-section::before {
  content: '日';
  position: absolute;
  top: -60px;
  right: -30px;
  font-family: 'Noto Serif SC', serif;
  font-size: 360px;
  font-weight: 900;
  color: rgba(22,97,171,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -10px;
}
.pw-cal-section .container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== 标题区：杂志双栏（左大字、右副文+CTA） ===== */
.pw-cal-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.pw-cal-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #C89B40;
  font-weight: 700;
  margin-bottom: 18px;
}
.pw-cal-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  color: #1A1714;
  letter-spacing: 12px;
  line-height: 1.1;
  margin: 0 0 16px;
  text-indent: 6px;
}
.pw-cal-sub {
  font-size: 14.5px;
  color: #8A8278;
  letter-spacing: 2px;
  margin: 0;
}
.pw-cal-desc {
  font-size: 18px;
  line-height: 1.85;
  color: #3A3A3A;
  letter-spacing: 0.6px;
  margin: 0 0 22px;
}
.pw-cal-desc mark {
  color: inherit;
  background: linear-gradient(to bottom, transparent 60%, rgba(200,155,64,0.30) 60%, rgba(200,155,64,0.30) 90%, transparent 90%);
  padding: 0 4px;
  font-weight: 600;
}
.pw-cal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1A1A2E;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid #1A1A2E;
  transition: all .25s;
}
.pw-cal-cta:hover {
  color: #C89B40;
  border-bottom-color: #C89B40;
  gap: 14px;
}

/* ===== 主体：左 3 项要点 + 右今日卡 ===== */
.pw-cal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  border-top: 1px solid rgba(26,23,20,0.10);
  padding-top: 32px;
}

/* 左：3 项要点（杂志条目式编号列表） */
.pw-cal-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pw-cal-feat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  align-items: start;
  transition: background .3s;
}
.pw-cal-feat:last-child { border-bottom: none; }
.pw-cal-feat:hover .pw-cal-feat-num { color: #C89B40; }
.pw-cal-feat-num {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1714;
  letter-spacing: 1px;
  line-height: 1;
  padding-top: 3px;
  transition: color .3s;
}
.pw-cal-feat-h {
  font-family: 'Noto Serif SC', serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #1A1714;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.pw-cal-feat-p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #8A8278;
  letter-spacing: 0.4px;
}

/* 右：今日卡容器 */
.pw-cal-today-wrap {
  position: relative;
}
.pw-cal-today-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #C89B40;
  font-weight: 700;
  margin-bottom: 10px;
}
/* 给今日卡套一层杂志精装感：上金线 + 大圆角 */
.pw-cal-today-card.pw-cal-today-card {
  background: #FAF7EF;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow:
    0 1px 0 rgba(200,155,64,0.35),
    0 20px 40px -22px rgba(26,23,20,0.16);
  border: none;
  position: relative;
}
/* 顶部金色细线（仿日历翻页感） */
.pw-cal-today-card.pw-cal-today-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, #C89B40 0%, transparent 100%);
  border-radius: 0 0 2px 2px;
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .pw-cal-section { padding: 80px 24px 96px; }
  .pw-cal-section::before { font-size: 300px; }
  .pw-cal-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
    align-items: start;
  }
  .pw-cal-body {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .pw-cal-section { padding: 56px 16px 72px; }
  .pw-cal-feat { padding: 20px 0; }
  .pw-cal-feat-h { font-size: 17px; }
  .pw-cal-today-card.pw-cal-today-card { padding: 24px 20px; }
}

/* ===== 深色模式 ===== */
[data-theme="dark"] .pw-cal-section { background: #0F1115; }
[data-theme="dark"] .pw-cal-section::before { color: rgba(22,97,171,0.06); }
[data-theme="dark"] .pw-cal-title { color: #EDE8DC; }
[data-theme="dark"] .pw-cal-sub { color: #8A8278; }
[data-theme="dark"] .pw-cal-desc { color: #C5BFB0; }
[data-theme="dark"] .pw-cal-desc mark {
  color: #EDE8DC;
  background: linear-gradient(to bottom, transparent 60%, rgba(229,199,122,0.28) 60%, rgba(229,199,122,0.28) 90%, transparent 90%);
}
[data-theme="dark"] .pw-cal-cta { color: #EDE8DC; border-bottom-color: #EDE8DC; }
[data-theme="dark"] .pw-cal-cta:hover { color: #E5C77A; border-bottom-color: #E5C77A; }
[data-theme="dark"] .pw-cal-body { border-top-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pw-cal-feat { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pw-cal-feat-num,
[data-theme="dark"] .pw-cal-feat-h { color: #EDE8DC; }
[data-theme="dark"] .pw-cal-feat-p { color: #8A8278; }
[data-theme="dark"] .pw-cal-today-card.pw-cal-today-card {
  background: #14110C;
  box-shadow:
    0 1px 0 rgba(229,199,122,0.35),
    0 28px 56px -28px rgba(0,0,0,0.55);
}


/* ============================================================
 * 五行小宝展示区（5 只代表小宝 · 站一排）
 * ============================================================ */
.pw-mascots-section {
  padding: 120px 48px 130px;
  background: #FAF7EF;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  position: relative;
  overflow: hidden;
}
/* 右下角"宝"字水印（呼应主题、和"关于普问"的"问"字水印对位） */
.pw-mascots-section::before {
  content: '宝';
  position: absolute;
  bottom: -80px;
  left: -30px;
  font-family: 'Noto Serif SC', serif;
  font-size: 440px;
  font-weight: 900;
  color: rgba(120,146,98,0.05);   /* 木青色淡水印，呼应"小宝家族" */
  line-height: 1;
  pointer-events: none;
  letter-spacing: -10px;
}
.pw-mascots-section .container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== 标题区：杂志双栏 ===== */
.pw-mascots-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.pw-mascots-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #C89B40;
  font-weight: 700;
  margin-bottom: 18px;
}
.pw-mascots-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 800;
  color: #1A1714;
  letter-spacing: 14px;
  line-height: 1.1;
  margin: 0 0 22px;
  text-indent: 8px;
}
.pw-mascots-sub {
  font-size: 14.5px;
  color: #8A8278;
  letter-spacing: 2px;
  margin: 0;
}
.pw-mascots-desc {
  font-size: 16px;
  line-height: 2;
  color: #3A3A3A;
  letter-spacing: 0.6px;
  margin: 0 0 28px;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}
.pw-mascots-desc strong {
  color: #1A1714;
  font-weight: 700;
  background: linear-gradient(to bottom, transparent 60%, rgba(200,155,64,0.30) 60%, rgba(200,155,64,0.30) 90%, transparent 90%);
  padding: 0 2px;
}
.pw-mascots-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1A1A2E;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid #1A1A2E;
  transition: all .25s;
}
.pw-mascots-cta:hover {
  color: #C89B40;
  border-bottom-color: #C89B40;
  gap: 14px;
}

/* ===== 5 只小宝站一排 ===== */
.pw-mascots-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(26,23,20,0.10);
  padding-top: 48px;
}
.pw-mascot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 8px;
  transition: transform .35s cubic-bezier(.4,1.4,.5,1);
  cursor: pointer;
}
.pw-mascots-row:hover .pw-mascot-card { opacity: 0.45; }
.pw-mascots-row .pw-mascot-card:hover {
  transform: translateY(-8px);
  opacity: 1;
}
/* 5 只小宝图（透明底、保持原图比例 · 不裁切） */
.pw-mascot-img {
  width: 200px;
  height: 220px;     /* 比宽高一些，给"顶部装饰（草/莲花）"留空间 */
  margin-bottom: 14px;
  /* 清除 .xb-mascot 全局圆形 + 五行 tint 底色 + 太极 LOGO 占位 */
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: none;              /* 真图加载前不要闪 logo 占位（与 inline 兼容，不加 !important） */
  background-repeat: no-repeat !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  transition: filter .35s, transform .35s cubic-bezier(.4,1.4,.5,1);
}
/* mascots.js 会按 .xb-no-crop 走 contain + center 加载，5 只用同一规格 */
.pw-mascot-card:hover .pw-mascot-img {
  filter: drop-shadow(0 16px 26px rgba(26,23,20,0.20));
  transform: translateY(-6px);
}
.pw-mascot-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  margin-bottom: 14px;
  text-indent: 4px;   /* 视觉补偿字距 */
}
.pw-mascot-card[data-wx="wood"]  .pw-mascot-tag { background: #789262; }   /* 木 · 竹青 */
.pw-mascot-card[data-wx="fire"]  .pw-mascot-tag { background: #C8473A; }   /* 火 · 朱砂 */
.pw-mascot-card[data-wx="earth"] .pw-mascot-tag { background: #A0612E; }   /* 土 · 赭石褐 */
.pw-mascot-card[data-wx="metal"] .pw-mascot-tag { background: #D4A017; }   /* 金 · 亮金 */
.pw-mascot-card[data-wx="water"] .pw-mascot-tag { background: #1661AB; }   /* 水 · 靛青 */
.pw-mascot-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1A1714;
  margin-bottom: 8px;
}
.pw-mascot-trait {
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: #8A8278;
  line-height: 1.7;
  text-align: center;
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .pw-mascots-section { padding: 80px 24px 96px; }
  .pw-mascots-section::before { font-size: 280px; }
  .pw-mascots-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
    align-items: start;
  }
  .pw-mascots-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
  }
  .pw-mascot-img { width: 140px; height: 160px; }
}
@media (max-width: 560px) {
  .pw-mascots-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pw-mascot-img { width: 130px; height: 150px; margin-bottom: 10px; }
  .pw-mascot-name { font-size: 14.5px; }
  .pw-mascot-trait { font-size: 11.5px; }
}

/* ===== 深色模式 ===== */
[data-theme="dark"] .pw-mascots-section { background: #14110C; }
[data-theme="dark"] .pw-mascots-section::before { color: rgba(120,146,98,0.04); }
[data-theme="dark"] .pw-mascots-title { color: #EDE8DC; }
[data-theme="dark"] .pw-mascots-sub { color: #8A8278; }
[data-theme="dark"] .pw-mascots-desc { color: #C5BFB0; }
[data-theme="dark"] .pw-mascots-desc strong {
  color: #EDE8DC;
  background: linear-gradient(to bottom, transparent 60%, rgba(229,199,122,0.28) 60%, rgba(229,199,122,0.28) 90%, transparent 90%);
}
[data-theme="dark"] .pw-mascots-cta { color: #EDE8DC; border-bottom-color: #EDE8DC; }
[data-theme="dark"] .pw-mascots-cta:hover { color: #E5C77A; border-bottom-color: #E5C77A; }
[data-theme="dark"] .pw-mascots-row { border-top-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pw-mascot-name { color: #EDE8DC; }
[data-theme="dark"] .pw-mascot-trait { color: #8A8278; }


/* ============== 最终 CTA · 5 入口（杂志栏目版式 · 极简） ============== */
.pw-final-cta {
  padding: 96px 48px 120px;
  background: #FAF7EF;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  position: relative;
  overflow: hidden;
}
/* 顶部 hairline + 底部 hairline，框出杂志栏目感 */
.pw-final-cta .container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* 标题区：左对齐 */
.pw-final-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.pw-final-eyebrow {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #C89B40;
  font-weight: 700;
  margin-bottom: 14px;
}
.pw-final-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #1A1714;
  letter-spacing: 3px;
  line-height: 1.3;
  margin: 0;
  max-width: 720px;
}
.pw-final-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8A8278;
  letter-spacing: 3px;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ===== 5 个入口 · 杂志栏目连排 ===== */
.pw-final-entries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26,23,20,0.12);
}
.pw-final-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 36px 28px 32px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(26,23,20,0.08);
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: background .35s ease;
  cursor: pointer;
  overflow: hidden;
}
.pw-final-entry:last-child { border-right: none; }
.pw-final-entry:hover {
  background: rgba(200,155,64,0.04);
}

/* 编号 · 顶部 */
.pwe-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #C89B40;
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* 超大汉字 · 主角 */
.pwe-glyph {
  font-family: 'Noto Serif SC', serif;
  font-size: 88px;
  font-weight: 800;
  color: #1A1714;
  line-height: 0.95;
  margin: 0 0 36px;
  letter-spacing: 0;
  transition: transform .35s cubic-bezier(.4,1.4,.5,1), color .35s;
}
.pw-final-entry:hover .pwe-glyph {
  transform: translateY(-6px);
  color: #C89B40;
}

/* 名字 + 一行 tag */
.pwe-meta { min-height: 56px; }
.pwe-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #1A1714;
  margin-bottom: 8px;
}
.pwe-tag {
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: #8A8278;
  line-height: 1.5;
}

/* 底部金色滚动线（hover 时从左划到右） */
.pwe-rule {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #C89B40;
  transition: width .45s cubic-bezier(.4,1.4,.5,1);
}
.pw-final-entry:hover .pwe-rule { width: 100%; }

/* 整组底部 hairline */
.pw-final-entries::after {
  content: '';
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(26,23,20,0.12);
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .pw-final-cta { padding: 72px 24px 88px; }
  .pw-final-head {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .pw-final-sub { white-space: normal; }
  .pw-final-entries {
    grid-template-columns: repeat(2, 1fr);
  }
  .pw-final-entry {
    border-right: 1px solid rgba(26,23,20,0.08);
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .pw-final-entry:nth-child(2n) { border-right: none; }
  .pw-final-entry:nth-last-child(-n+1) { border-bottom: none; }
  .pwe-glyph { font-size: 64px; margin-bottom: 28px; }
  .pwe-num { margin-bottom: 20px; }
}
@media (max-width: 560px) {
  .pw-final-cta { padding: 56px 16px 72px; }
  .pw-final-entries { grid-template-columns: 1fr; }
  .pw-final-entry {
    flex-direction: row;
    align-items: center;
    padding: 24px 16px;
    gap: 24px;
    border-right: none;
  }
  .pwe-num { margin-bottom: 0; width: 28px; flex-shrink: 0; }
  .pwe-glyph { font-size: 48px; margin: 0; flex-shrink: 0; }
  .pwe-meta { flex: 1; min-height: 0; }
}

/* ===== 深色模式 ===== */
[data-theme="dark"] .pw-final-cta { background: #14110C; }
[data-theme="dark"] .pw-final-title { color: #EDE8DC; }
[data-theme="dark"] .pw-final-sub { color: #8A8278; }
[data-theme="dark"] .pw-final-entries { border-top-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pw-final-entry { border-right-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pw-final-entry:hover { background: rgba(200,155,64,0.06); }
[data-theme="dark"] .pwe-glyph { color: #EDE8DC; }
[data-theme="dark"] .pw-final-entry:hover .pwe-glyph { color: #E5C77A; }
[data-theme="dark"] .pwe-name { color: #EDE8DC; }
[data-theme="dark"] .pwe-tag { color: #8A8278; }
[data-theme="dark"] .pw-final-entries::after { background: rgba(255,255,255,0.08); }

.pw-btn-large { padding: 16px 38px; font-size: 16px; }

/* ============================================================
 * "为什么用普问" · 差异化对比区
 * v=20260621c
 * ============================================================ */
.pw-why-section {
  padding: 96px 24px;
  background: linear-gradient(180deg, #F8F9FB 0%, #F1F3F8 100%);
  position: relative;
  overflow: hidden;
}
.pw-why-section::before {
  content: '';
  position: absolute;
  top: 50px; right: 8%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,155,64,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pw-why-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.pw-why-eyebrow {
  text-align: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  color: #C89B40;
  letter-spacing: 6px;
  margin-bottom: 10px;
  font-weight: 700;
}
.pw-why-title {
  text-align: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 34px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 3px;
  margin: 0 0 14px;
  line-height: 1.4;
}
.pw-why-sub {
  text-align: center;
  font-size: 14px;
  color: #6B7280;
  letter-spacing: 1.5px;
  margin: 0 0 48px;
}

/* 用户提问气泡 */
.pw-why-question {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-right: 8px;
}
.pw-why-question-bubble {
  max-width: 580px;
  padding: 14px 20px;
  background: #1A1A2E;
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(26,26,46,0.18);
  position: relative;
}

/* 双栏对比 */
.pw-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
.pw-why-col {
  background: #fff;
  border-radius: 18px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pw-why-col-bad { border-top: 3px solid #D87474; }
.pw-why-col-good {
  border-top: 3px solid #1661AB;
  box-shadow: 0 8px 32px rgba(22,97,171,0.10);
}
.pw-why-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.pw-why-col-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 700;
  color: #888;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: #F3F4F6;
  border-radius: 6px;
}
.pw-why-col-tag-good {
  color: #1661AB;
  background: rgba(22,97,171,0.08);
}
.pw-why-col-score {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 800;
  color: #D87474;
  letter-spacing: 1px;
}
.pw-why-col-score-good { color: #1661AB; }
.pw-why-col-body {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 16px;
}
.pw-why-col-body p { margin: 0 0 10px; }
.pw-why-col-body p:last-child { margin-bottom: 0; }
.pw-why-col-good .pw-why-col-body p strong {
  color: #1A1A2E;
  font-weight: 700;
}
.pw-why-err {
  color: #D87474;
  text-decoration: line-through;
  text-decoration-color: rgba(216,116,116,0.5);
}
.pw-why-err + sup {
  font-size: 9px;
  color: #D87474;
  margin-left: 2px;
  letter-spacing: 0;
}
.pw-why-aha {
  margin-top: 14px !important;
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(200,155,64,0.10) 0%, rgba(22,97,171,0.05) 100%);
  border-left: 3px solid #C89B40;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: 1px;
  border-radius: 0 6px 6px 0;
}
.pw-why-col-issues {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-why-issue {
  font-size: 12.5px;
  color: #888;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.pw-why-issue-good { color: #1A1A2E; }

/* 护城河 4 块 */
.pw-why-h3 {
  text-align: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: 3px;
  margin: 0 0 10px;
}
.pw-why-h3-sub {
  text-align: center;
  font-size: 13.5px;
  color: #6B7280;
  letter-spacing: 1px;
  margin: 0 0 40px;
}
.pw-why-moats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.pw-why-moat {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.22s;
}
.pw-why-moat:hover {
  transform: translateY(-3px);
  border-color: #1A1A2E;
  box-shadow: 0 12px 32px rgba(26,26,46,0.10);
}
.pw-why-moat-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 800;
  color: #C89B40;
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1;
}
.pw-why-moat-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.pw-why-moat-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: #555;
  margin: 0;
}
.pw-why-moat-desc strong {
  color: #1A1A2E;
  font-weight: 700;
}

/* 收口金句 */
.pw-why-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #1A1A2E;
  border-radius: 16px;
  text-align: center;
  position: relative;
  color: #EDE8DC;
}
.pw-why-quote::before {
  content: '"';
  position: absolute;
  top: -16px; left: 24px;
  font-family: 'Noto Serif SC', serif;
  font-size: 72px;
  color: #C89B40;
  line-height: 1;
  opacity: 0.6;
}
.pw-why-quote p {
  margin: 0 0 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #C5BFB0;
}
.pw-why-quote p:last-child { margin-bottom: 0; }
.pw-why-quote-strong {
  margin-top: 16px !important;
  font-size: 18px !important;
  font-weight: 700;
  color: #C89B40 !important;
  letter-spacing: 3px !important;
}

/* 移动端 */
@media (max-width: 880px) {
  .pw-why-section { padding: 60px 16px; }
  .pw-why-title { font-size: 24px; letter-spacing: 2px; }
  .pw-why-sub { font-size: 12.5px; margin-bottom: 32px; }
  .pw-why-question { padding-right: 0; }
  .pw-why-question-bubble { font-size: 13px; padding: 12px 16px; }
  .pw-why-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .pw-why-col { padding: 20px 18px 16px; }
  .pw-why-col-body { font-size: 13px; }
  .pw-why-h3 { font-size: 21px; letter-spacing: 2px; }
  .pw-why-h3-sub { font-size: 12.5px; margin-bottom: 28px; }
  .pw-why-moats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 44px; }
  .pw-why-moat { padding: 22px 16px 18px; }
  .pw-why-moat-num { font-size: 22px; }
  .pw-why-moat-title { font-size: 14.5px; letter-spacing: 1.5px; }
  .pw-why-moat-desc { font-size: 12px; line-height: 1.8; }
  .pw-why-quote { padding: 26px 22px; }
  .pw-why-quote p { font-size: 13.5px; letter-spacing: 1px; }
  .pw-why-quote-strong { font-size: 16px !important; letter-spacing: 2px !important; }
}

/* 暗色主题 */
[data-theme="dark"] .pw-why-section {
  background: linear-gradient(180deg, #0F1115 0%, #14171D 100%);
}
[data-theme="dark"] .pw-why-title { color: #EDE8DC; }
[data-theme="dark"] .pw-why-sub { color: #8E8676; }
[data-theme="dark"] .pw-why-question-bubble { background: #2A2D38; }
[data-theme="dark"] .pw-why-col {
  background: #1A1D24;
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .pw-why-col-body { color: #C5BFB0; }
[data-theme="dark"] .pw-why-col-good .pw-why-col-body p strong { color: #EDE8DC; }
[data-theme="dark"] .pw-why-col-tag { background: rgba(255,255,255,0.06); color: #8E8676; }
[data-theme="dark"] .pw-why-col-tag-good { background: rgba(22,97,171,0.16); color: #6BA3D6; }
[data-theme="dark"] .pw-why-issue { color: #8E8676; }
[data-theme="dark"] .pw-why-issue-good { color: #C5BFB0; }
[data-theme="dark"] .pw-why-h3 { color: #EDE8DC; }
[data-theme="dark"] .pw-why-h3-sub { color: #8E8676; }
[data-theme="dark"] .pw-why-moat {
  background: #1A1D24;
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .pw-why-moat-title { color: #EDE8DC; }
[data-theme="dark"] .pw-why-moat-desc { color: #B5AFA0; }
[data-theme="dark"] .pw-why-moat-desc strong { color: #EDE8DC; }
[data-theme="dark"] .pw-why-quote {
  background: #14110C;
  border: 1px solid rgba(200,155,64,0.18);
}

/* ============================================================
 * 五种问法 · 创意展示卡 v=20260626f
 * ============================================================ */
.pw-modules-five {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
/* 第 1 张（问合盘）横跨 2 列 + 2 行 → hero */
.pw-modules-five .pw-module-card-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #fff 0%, #FAF6EE 100%);
  border: 1px solid rgba(200,155,64,0.18);
  position: relative;
  overflow: hidden;
}
.pw-modules-five .pw-module-card-hero::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(200,155,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pw-modules-five .pw-module-card-hero .pw-module-title {
  font-size: 32px;
}
.pw-modules-five .pw-module-card-hero .pw-module-icon {
  width: 56px; height: 56px; font-size: 26px;
}
.pw-modules-five .pw-module-card-hero .pw-module-saying {
  font-size: 16px; line-height: 1.9;
}

/* 其他 4 张普通卡 */
.pw-modules-five .pw-module-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 28px 22px 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.24s;
  position: relative;
}
.pw-modules-five .pw-module-card:hover {
  transform: translateY(-4px);
  border-color: #C89B40;
  box-shadow: 0 16px 36px rgba(26,26,46,0.10);
}
.pw-modules-five .pw-module-card-hero:hover {
  box-shadow: 0 20px 48px rgba(200,155,64,0.20);
}

/* 卡片通用：标签 / 序号 / 图标 */
.pw-modules-five .pw-module-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: #9CA3AF;
  background: rgba(0,0,0,0.04);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.pw-modules-five .pw-module-tag-hot {
  color: #fff;
  background: linear-gradient(90deg, #C89B40 0%, #D4A85B 100%);
  font-weight: 700;
}
.pw-modules-five .pw-module-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #C89B40;
  opacity: 0.6;
  margin-bottom: 10px;
}
.pw-modules-five .pw-module-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A2E;
  color: #EDE8DC;
  border-radius: 50%;
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.pw-modules-five .pw-module-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 6px;
  color: #1A1A2E;
  margin: 0 0 10px;
}
.pw-modules-five .pw-module-saying {
  font-family: 'Noto Serif SC', serif;
  font-size: 13.5px;
  line-height: 1.95;
  color: #6B7280;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
  flex-shrink: 0;
}

/* ⭐ 预览区（每种问法独特样式） */
.pw-module-preview {
  flex: 1;
  background: #FAFBFC;
  border: 1px dashed rgba(26,26,46,0.10);
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 问合盘 → 三行合适度结果 */
.pw-mp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
}
.pw-mp-q {
  font-family: 'Noto Serif SC', serif;
  color: #1A1A2E;
  letter-spacing: 1px;
}
.pw-mp-a {
  font-weight: 700;
  color: #C89B40;
  font-size: 13.5px;
  letter-spacing: 1px;
}

/* 问师傅 → 聊天气泡 */
.pw-mp-chat {
  font-size: 12.5px;
  line-height: 1.7;
  padding: 8px 12px;
  background: #fff;
  border-radius: 12px 12px 12px 4px;
  color: #1A1A2E;
  max-width: 88%;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0,0,0,0.04);
}
.pw-mp-chat-r {
  align-self: flex-end;
  background: #1A1A2E;
  color: #EDE8DC;
  border-radius: 12px 12px 4px 12px;
  border-color: transparent;
}

/* 问全盘 → 目录章节列表 */
.pw-module-preview-book { gap: 4px; }
.pw-mp-chapter {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  color: #6B7280;
  letter-spacing: 1px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.pw-mp-chapter:last-child { border-bottom: 0; }
.pw-mp-more {
  color: #C89B40;
  text-align: right;
  font-style: italic;
}

/* 问日子 → 日历样式 */
.pw-module-preview-cal {
  align-items: flex-start;
  padding: 12px 14px 14px;
}
.pw-mp-day-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pw-mp-day-line {
  font-size: 12px;
  color: #1A1A2E;
  letter-spacing: 1px;
  line-height: 1.7;
}
.pw-mp-yi {
  display: inline-block;
  background: #1661AB;
  color: #fff;
  font-weight: 700;
  width: 18px; height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 4px;
  font-size: 11px;
  margin-right: 6px;
}
.pw-mp-ji {
  display: inline-block;
  background: #D87474;
  color: #fff;
  font-weight: 700;
  width: 18px; height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 4px;
  font-size: 11px;
  margin-right: 6px;
}

/* 问日柱 → 日柱卡 */
.pw-module-preview-pillar {
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #F5F7F0 0%, #E8F0E0 100%);
  border: 1px solid rgba(106,143,76,0.18);
}
.pw-mp-pillar-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 800;
  color: #5C7F3F;
  letter-spacing: 4px;
}
.pw-mp-pillar-line {
  font-size: 11.5px;
  color: #5C7F3F;
  line-height: 1.7;
  opacity: 0.8;
  letter-spacing: 0.5px;
}
.pw-mp-pillar-more {
  font-size: 10.5px;
  color: #8E8676;
  letter-spacing: 1px;
  margin-top: 4px;
  font-style: italic;
}

/* CTA */
.pw-modules-five .pw-module-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1A1A2E;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: auto;
}
.pw-modules-five .pw-module-card-hero .pw-module-cta {
  background: #1A1A2E;
  color: #EDE8DC;
  padding: 10px 18px;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 4px;
}

/* 平板：变成 2 列、hero 也是 2 列 */
@media (max-width: 1024px) and (min-width: 769px) {
  .pw-modules-five { grid-template-columns: repeat(2, 1fr); }
  .pw-modules-five .pw-module-card-hero { grid-column: span 2; grid-row: auto; }
}

/* 移动端：单列 */
@media (max-width: 768px) {
  .pw-modules-five { grid-template-columns: 1fr; gap: 14px; }
  .pw-modules-five .pw-module-card-hero { grid-column: auto; grid-row: auto; }
  .pw-modules-five .pw-module-card-hero .pw-module-title { font-size: 26px; }
  .pw-modules-five .pw-module-card-hero .pw-module-saying { font-size: 14px; }
  .pw-modules-five .pw-module-title { font-size: 19px; letter-spacing: 4px; }
}

/* 暗色 */
[data-theme="dark"] .pw-modules-five .pw-module-card {
  background: #1A1D24;
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .pw-modules-five .pw-module-card-hero {
  background: linear-gradient(135deg, #1A1D24 0%, #1F1A12 100%);
  border-color: rgba(200,155,64,0.28);
}
[data-theme="dark"] .pw-modules-five .pw-module-title { color: #EDE8DC; }
[data-theme="dark"] .pw-modules-five .pw-module-saying { color: #B5AFA0; }
[data-theme="dark"] .pw-module-preview {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .pw-mp-row { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .pw-mp-q { color: #EDE8DC; }
[data-theme="dark"] .pw-mp-chat { background: rgba(255,255,255,0.05); color: #EDE8DC; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pw-mp-chapter { color: #B5AFA0; border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pw-mp-day-num { color: #EDE8DC; }
[data-theme="dark"] .pw-mp-day-line { color: #B5AFA0; }
[data-theme="dark"] .pw-module-preview-pillar { background: rgba(92,127,63,0.10); border-color: rgba(92,127,63,0.30); }
[data-theme="dark"] .pw-mp-pillar-tag { color: #94B374; }
[data-theme="dark"] .pw-mp-pillar-line { color: #94B374; }
[data-theme="dark"] .pw-modules-five .pw-module-cta { color: #EDE8DC; }
[data-theme="dark"] .pw-modules-five .pw-module-card-hero .pw-module-cta { background: #C89B40; color: #1A1A2E; }

/* ============================================================
 * 五种问法 · 分屏展示
 * ============================================================ */
.pw-slides-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gaosu) 0%, var(--bg) 100%);
}
.pw-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  margin: 40px -24px 0;
  padding: 0 24px;
  scrollbar-width: none;
}
.pw-slides::-webkit-scrollbar { display: none; }

.pw-slide {
  flex: 0 0 92%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 24px;
  margin-right: 16px;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 480px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 20px 60px rgba(26,26,46,0.06);
  position: relative;
  overflow: hidden;
}
.pw-slide:last-child { margin-right: 24px; }
.pw-slide-match { background: linear-gradient(135deg, #FFFCF6 0%, #FAF1DC 100%); border-color: rgba(200,155,64,0.20); }
.pw-slide-ask { background: linear-gradient(135deg, #FFFFFF 0%, #F5F4F8 100%); }
.pw-slide-report { background: linear-gradient(135deg, #F4F8FC 0%, #E5EEF7 100%); border-color: rgba(22,97,171,0.18); }
.pw-slide-cal { background: linear-gradient(135deg, #FFFFFF 0%, #FAF7F1 100%); }
.pw-slide-test { background: linear-gradient(135deg, #F5F9EE 0%, #E8F0E0 100%); border-color: rgba(92,127,63,0.18); }
.pw-slide-side { display: flex; flex-direction: column; gap: 14px; }
.pw-slide-num { font-family: 'Noto Serif SC', serif; font-size: 56px; font-weight: 800; color: rgba(200,155,64,0.30); letter-spacing: 2px; line-height: 1; margin-bottom: -10px; }
.pw-slide-h { font-family: 'Noto Serif SC', serif; font-size: 44px; font-weight: 800; color: #1A1A2E; letter-spacing: 10px; margin: 0; }
.pw-slide-tag { display: inline-flex; align-self: flex-start; background: rgba(200,155,64,0.12); color: #C89B40; font-size: 12px; letter-spacing: 1.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin: 0; }
.pw-slide-claim { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 600; color: #C89B40; letter-spacing: 3px; margin: 8px 0 4px; line-height: 1.5; }
.pw-slide-body { font-size: 14.5px; color: #4B5563; line-height: 2; letter-spacing: 1px; margin: 0; }
.pw-slide-cta { display: inline-flex; align-self: flex-start; align-items: center; background: #1A1A2E; color: #EDE8DC; padding: 14px 26px; border-radius: 999px; text-decoration: none; font-family: 'Noto Serif SC', serif; font-weight: 700; font-size: 14px; letter-spacing: 3px; margin-top: 14px; transition: all 0.22s; }
.pw-slide-cta:hover { background: #C89B40; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,155,64,0.30); }
.pw-slide-show { display: flex; align-items: center; justify-content: center; }
.pw-slide-show-card { background: #fff; padding: 36px 32px; border-radius: 18px; box-shadow: 0 16px 40px rgba(26,26,46,0.10); width: 100%; max-width: 320px; text-align: center; }
.pw-slide-show-pair { font-family: 'Noto Serif SC', serif; font-weight: 700; font-size: 18px; color: #1A1A2E; letter-spacing: 2px; margin-bottom: 12px; }
.pw-slide-show-pair .pw-x { color: #C89B40; margin: 0 10px; font-weight: 300; font-size: 22px; }
.pw-slide-show-score { font-family: 'Noto Serif SC', serif; font-size: 90px; font-weight: 900; color: #1A1A2E; line-height: 1; }
.pw-slide-show-level { background: linear-gradient(90deg, #C89B40, #D4A85B); color: #fff; display: inline-block; padding: 6px 22px; border-radius: 999px; font-weight: 700; font-size: 16px; letter-spacing: 2px; margin: 14px 0 18px; }
.pw-slide-show-line { font-size: 13px; color: #6B7280; line-height: 1.85; letter-spacing: 1px; }
.pw-slide-show-chat-wrap { display: flex; flex-direction: column; gap: 16px; max-width: 360px; width: 100%; }
.pw-slide-show-chat-q { align-self: flex-start; background: #fff; padding: 14px 18px; border-radius: 16px 16px 16px 4px; font-family: 'Noto Serif SC', serif; font-size: 15px; color: #1A1A2E; letter-spacing: 1px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); }
.pw-slide-show-chat-a { align-self: flex-end; background: #1A1A2E; color: #EDE8DC; padding: 16px 20px; border-radius: 16px 16px 4px 16px; font-family: 'Noto Serif SC', serif; font-size: 14.5px; line-height: 1.85; letter-spacing: 1px; box-shadow: 0 8px 20px rgba(26,26,46,0.18); max-width: 280px; }
.pw-slide-show-book { perspective: 1000px; }
.pw-slide-show-book-cover { width: 240px; height: 320px; background: linear-gradient(135deg, #1661AB 0%, #0F4880 100%); border-radius: 6px 12px 12px 6px; padding: 38px 28px; color: #fff; text-align: center; display: flex; flex-direction: column; justify-content: center; box-shadow: -4px 0 0 #0A3057, 8px 12px 32px rgba(0,0,0,0.30); transform: rotateY(-12deg); transition: transform 0.4s; position: relative; }
.pw-slide-show-book-cover::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: rgba(0,0,0,0.20); border-radius: 6px 0 0 6px; }
.pw-slide-show-book:hover .pw-slide-show-book-cover { transform: rotateY(-6deg); }
.pw-slide-show-book-eyebrow { font-size: 10px; letter-spacing: 4px; opacity: 0.7; margin-bottom: 16px; }
.pw-slide-show-book-title { font-family: 'Noto Serif SC', serif; font-size: 24px; font-weight: 800; letter-spacing: 4px; line-height: 1.5; margin-bottom: 24px; }
.pw-slide-show-book-by { font-size: 12px; letter-spacing: 4px; color: #C89B40; margin-top: 18px; }
.pw-slide-show-cal { background: #fff; padding: 28px 32px; border-radius: 18px; box-shadow: 0 16px 40px rgba(26,26,46,0.10); text-align: center; max-width: 280px; width: 100%; }
.pw-slide-show-cal-date { font-family: 'Noto Serif SC', serif; font-size: 48px; font-weight: 900; color: #1A1A2E; letter-spacing: 4px; line-height: 1; }
.pw-slide-show-cal-day { font-size: 13px; color: #6B7280; letter-spacing: 2px; margin: 8px 0 6px; }
.pw-slide-show-cal-pro { font-size: 11.5px; color: #C89B40; letter-spacing: 1.5px; margin-bottom: 16px; font-weight: 600; }
.pw-slide-show-cal-divide { height: 1px; background: rgba(200,155,64,0.30); margin: 0 20px 18px; }
.pw-slide-show-cal-line { font-size: 13.5px; color: #1A1A2E; line-height: 2; letter-spacing: 1px; text-align: left; }
.pw-slide-show-cal-line .pw-yi { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: #1661AB; color: #fff; border-radius: 4px; font-size: 12px; font-weight: 700; margin-right: 8px; vertical-align: middle; }
.pw-slide-show-cal-line .pw-ji { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: #D87474; color: #fff; border-radius: 4px; font-size: 12px; font-weight: 700; margin-right: 8px; vertical-align: middle; }
.pw-slide-show-pillar { background: #fff; padding: 36px 32px; border-radius: 18px; box-shadow: 0 16px 40px rgba(92,127,63,0.18); text-align: center; border: 2px solid rgba(92,127,63,0.15); width: 100%; max-width: 280px; }
.pw-slide-show-pillar-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* 加载前 fallback：用 emoji 占位（mascots.js 加载完会自动覆盖） */
  font-size: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 加载完成后清除占位字 + 加柔和投影 */
  transition: filter .3s;
}
.pw-slide-show-pillar-img.xb-mascot-loaded {
  font-size: 0;  /* 隐藏占位字 */
  filter: drop-shadow(0 8px 18px rgba(92,127,63,0.20));
}
.pw-slide-show-pillar-name { font-family: 'Noto Serif SC', serif; font-size: 30px; font-weight: 800; color: #5C7F3F; letter-spacing: 6px; margin-bottom: 16px; }
.pw-slide-show-pillar-desc { font-size: 14px; color: #5C7F3F; line-height: 1.85; letter-spacing: 1px; opacity: 0.85; }
.pw-slides-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.pw-slides-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,26,46,0.15); cursor: pointer; transition: all 0.22s; }
.pw-slides-dot.is-active { width: 24px; border-radius: 4px; background: #C89B40; }
@media (max-width: 768px) {
  .pw-slides-section { padding: 60px 0; }
  .pw-slide { grid-template-columns: 1fr; padding: 36px 28px; gap: 30px; min-height: auto; }
  .pw-slide-h { font-size: 30px; letter-spacing: 6px; }
  .pw-slide-claim { font-size: 17px; }
  .pw-slide-body { font-size: 13.5px; }
  .pw-slide-num { font-size: 38px; }
  .pw-slide-show-score { font-size: 70px; }
  .pw-slide-show-book-cover { width: 180px; height: 240px; padding: 28px 22px; }
  .pw-slide-show-book-title { font-size: 18px; }
}
[data-theme="dark"] .pw-slide { background: #1A1D24; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pw-slide-h { color: #EDE8DC; }
[data-theme="dark"] .pw-slide-body { color: #B5AFA0; }
[data-theme="dark"] .pw-slide-show-card { background: #14171D; }
[data-theme="dark"] .pw-slide-show-score { color: #EDE8DC; }
[data-theme="dark"] .pw-slide-show-pair { color: #EDE8DC; }
[data-theme="dark"] .pw-slide-show-cal { background: #14171D; }
[data-theme="dark"] .pw-slide-show-cal-date { color: #EDE8DC; }
[data-theme="dark"] .pw-slide-show-cal-pro { color: #D4A858; }
[data-theme="dark"] .pw-slide-show-cal-line { color: #B5AFA0; }
[data-theme="dark"] .pw-slide-show-pillar { background: #14171D; }
[data-theme="dark"] .pw-slide-show-chat-q { background: rgba(255,255,255,0.06); color: #EDE8DC; border: 0; }
