/* ============================================================
   VPNYS · tutorial.css
   新手指引页:页头清单 / 步骤编号排版 / 平台小标题 / 延伸阅读卡
   ============================================================ */

/* ---------- 页头 ---------- */
.page-head{
  padding-top:64px;
  padding-bottom:48px;
  border-bottom:1px solid var(--border);
}
.page-head__in{max-width:880px}
.page-head__title{
  margin-top:14px;
  font-size:clamp(32px,4.6vw,50px);
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.14;
  text-wrap:balance;
}
.page-head__desc{
  margin-top:14px;
  max-width:680px;
  font-size:16.5px;
  line-height:1.65;
  color:var(--text-muted);
}
.page-head__meta{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.page-head__steps{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.page-head__steps .chip svg{color:var(--success);flex-shrink:0}

/* ---------- 正文主列 ---------- */
.guide{max-width:880px;margin:0 auto}
.guide__callout{margin-top:28px}
.guide__prep{
  margin-top:24px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-muted);
}
.guide__prep b{color:var(--text)}

/* ---------- 步骤块(通行清单式编号) ---------- */
.step{
  padding-top:44px;
  padding-bottom:44px;
  border-bottom:1px solid var(--border);
}
.step:last-of-type{border-bottom:0}
.step__head{
  display:flex;
  align-items:center;
  gap:14px;
}
.step__num{
  flex:none;
  width:30px;
  height:30px;
  border-radius:var(--r-pill);
  background:var(--accent);
  color:var(--bg-panel);
  display:grid;
  place-items:center;
  font:700 14px/1 var(--font-mono);
}
.step__num--ok{background:var(--success)}
.step__head h2{
  font-size:24px;
  font-weight:800;
  letter-spacing:-.01em;
}
.step__body{
  margin-top:16px;
  padding-left:44px;
}
.step__body p{
  font-size:15.5px;
  line-height:1.78;
  color:var(--text);
}
.step__body p + p{margin-top:12px}
.step__body code{
  background:var(--bg-panel-2);
  border-radius:var(--r-sm);
  padding:2px 6px;
  font-size:.92em;
}

/* ---------- 平台小标题(内联图标,不破坏标题流) ---------- */
.step__body h3{
  margin-top:24px;
  font-size:17px;
  font-weight:800;
}
.step__body h3 + p{margin-top:8px}
.step__body h3 svg{
  width:18px;
  height:18px;
  color:var(--text);
  display:inline-block;
  vertical-align:-3px;
  margin-right:8px;
}

/* ---------- 步骤 CTA ---------- */
.step__cta{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.step__hint{
  font-size:13.5px;
  font-weight:600;
  color:var(--text-muted);
}

/* ---------- 延伸阅读卡 ---------- */
.guide-more{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.guide-more__item{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:20px;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow-card);
}
.guide-more__item b{font-size:15px;font-weight:800}
.guide-more__item span{
  flex:1;
  font-size:13.5px;
  line-height:1.6;
  color:var(--text-muted);
}
.guide-more__item a{
  margin-top:10px;
  font-size:13.5px;
  font-weight:700;
  color:var(--accent);
}

/* ---------- 响应式 ---------- */
@media (max-width:768px){
  .page-head{padding-top:44px;padding-bottom:36px}
  .page-head__title{font-size:32px}
  .step{padding-top:36px;padding-bottom:36px}
  .step__head h2{font-size:21px}
  .step__body{margin-top:14px;padding-left:0}
  .guide-more{grid-template-columns:1fr}
}