/* ==========================================================================
   VPNAW — help.css
   帮助中心页专属：页头氛围、分类标题、下一步链接区
   （共享样式一律引用 base.css / components.css 的令牌与组件，不重复定义）
   ========================================================================== */

/* ---------- 页头：冰蓝纸面上的偏心淡光晕（不居中，避免模板脸） ---------- */
.help-hero{
  position:relative;
  overflow-x:clip;
  max-width:100%;
  padding-top:56px;
  padding-bottom:28px;
  background:linear-gradient(180deg,var(--bg-hero-top) 0%,var(--bg) 100%);
}
.help-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(40% 68% at 20% 6%,rgba(var(--accent-rgb),.09),rgba(var(--accent-rgb),0) 72%);
}
.help-hero .wrap{position:relative;z-index:1}
.help-hero h1{margin-bottom:16px}
.help-hero .lede{max-width:68ch}
.help-hero .chip-row{margin-top:22px}

/* ---------- 正文主列：目录条与全部分类同属一个容器，sticky 才有行程 ---------- */
.help-doc{
  max-width:920px;
  margin-inline:auto;
  padding-bottom:var(--sec-y);
}

/* ---------- 分类标题 ---------- */
.cat-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}
.cat-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  flex:0 0 40px;
  border-radius:12px;
  background:rgba(var(--accent-rgb),.1);
  border:1px solid rgba(var(--accent-rgb),.26);
  color:var(--accent-dark);
}
.cat-ico svg{width:19px;height:19px;display:block}
.cat-title{font-size:clamp(22px,2.6vw,28px)}
.cat-sub{
  font-size:14px;
  line-height:22px;
  color:var(--muted);
  margin-top:5px;
}

/* ---------- 下一步链接区 ---------- */
.help-next{
  margin-top:8px;
  padding:26px 26px 22px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--r-panel);
  box-shadow:inset 0 1px 0 var(--white),0 22px 50px -34px rgba(var(--accent-rgb),.34);
}
.help-next h2{font-size:clamp(20px,2.2vw,24px);margin-bottom:10px}
.help-next p{font-size:15px}
.next-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:18px 0 14px;
}
.next-links li{font-size:15px;line-height:1.6}
.next-note{font-size:13px;color:var(--muted)}

@media (max-width:768px){
  .help-hero{padding-top:38px;padding-bottom:22px}
}
@media (max-width:640px){
  .cat-ico{width:34px;height:34px;flex:0 0 34px;border-radius:10px}
  .help-next{padding:20px 18px 18px}
}