/* ==========================================================================
   关于我们 · 仅本页样式（公共变量、背景/顶栏/页脚复用 styles.css）
   风格：孟菲斯撞色波普
   ========================================================================== */

/* 关于页正常滚动：不锁视口（本页无 app.js，不会加 mode-chat，这里再兜底一次） */
body.about-page { height: auto; min-height: 100dvh; overflow-x: hidden; overflow-y: auto; }

.about {
  position: relative; z-index: 1; flex: 1;
  width: 100%; max-width: 860px; margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 32px) 52px;
}

/* -------------------------- 页头 -------------------------- */
.about-hero { text-align: center; padding: clamp(18px, 4vh, 44px) 0 12px; }
.about-badge {
  display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 16px; font-size: 42px;
  background: var(--yellow); border: 3px solid var(--ink); border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink); transform: rotate(-6deg);
}
.about-title { position: relative; display: inline-block; margin: 0 0 10px; font-size: clamp(28px, 5vw, 40px); line-height: 1.15; color: var(--ink); }
.about-title::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: 4px; height: 12px; background: var(--red); transform: skewX(-10deg); z-index: -1; }
.about-lead { margin: 0; color: var(--ink-2); font-weight: 700; }

/* -------------------------- 分节 -------------------------- */
.about-section { margin-top: 36px; }
.about-stitle { position: relative; margin: 0 0 16px; padding-left: 16px; font-size: 19px; line-height: 1.4; color: var(--ink); font-weight: 900; }
.about-stitle::before {
  content: ""; position: absolute; left: 0; top: 0.15em; bottom: 0.15em; width: 8px; border-radius: 2px; background: var(--blue);
}
.about-text { margin: 0 0 12px; color: var(--ink-2); }
.about-text:last-child { margin-bottom: 0; }

/* -------------------------- 能力卡片 -------------------------- */
.about-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.about-card {
  padding: 20px 18px; background: #fff; border: 3px solid var(--ink); border-radius: var(--r-md);
  box-shadow: 5px 5px 0 var(--ink); transition: transform .16s, box-shadow .16s;
}
.about-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--yellow); }
.about-card-icon { display: grid; place-items: center; width: 48px; height: 48px; font-size: 23px; background: #fff; border: 3px solid var(--ink); border-radius: 12px; }
.ac-red .about-card-icon { background: var(--red); } .ac-yellow .about-card-icon { background: var(--yellow); }
.ac-blue .about-card-icon { background: var(--blue); } .ac-ink .about-card-icon { background: var(--ink); }
.about-card h3 { margin: 12px 0 6px; font-size: 15.5px; color: var(--ink); font-family: var(--font-title); font-weight: 900; }
.about-card p { margin: 0; color: var(--ink-2); font-size: 13.5px; }

/* -------------------------- 合规提示 -------------------------- */
.about-notice {
  margin: 0; padding: 18px 20px; background: var(--yellow); border: 3px solid var(--ink); border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink); color: var(--ink); font-size: 13.5px; font-weight: 500;
}
.about-notice strong { color: var(--ink); background: #fff; padding: 0 4px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* -------------------------- 联系方式 -------------------------- */
.about-contact {
  margin: 0; padding: 0; list-style: none; border: 3px solid var(--ink); border-radius: var(--r-md); background: #fff;
  overflow: hidden; box-shadow: 6px 6px 0 var(--ink);
}
.about-citem { display: flex; align-items: baseline; gap: 16px; padding: 14px 20px; }
.about-citem + .about-citem { border-top: 3px dashed var(--ink); }
.about-clabel { flex: none; width: 5.2em; color: var(--ink-3); font-size: 13px; font-weight: 800; }
.about-cvalue { color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
a.about-cvalue { color: var(--blue-deep); font-weight: 700; }
a.about-cvalue:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .about-cards { grid-template-columns: 1fr; }
  .about-citem { flex-direction: column; gap: 3px; padding: 12px 16px; }
  .about-clabel { width: auto; }
}
