/* ==========================================================================
   VPNAW — tutorial.css（使用教程页专属）
   页头氛围 / 步骤块 / 步骤序号 / 客户端小节 / 继续深入清单
   仅本页使用；颜色、字体、圆角一律引用 :root 设计令牌
   ========================================================================== */

/* ---------- 页头氛围层（承接首屏的冰蓝渐变，但更轻） ---------- */
.page-head{
  position:relative;
  overflow-x:clip;
  max-width:100%;
  background:linear-gradient(180deg,var(--bg-hero-top) 0%,var(--bg) 100%);
  padding-top:44px;
  padding-bottom:38px;
}
.halo-soft{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(40% 66% at 76% 6%,rgba(var(--accent-rgb),.08),rgba(var(--accent-rgb),0) 72%);
}
.page-head .wrap{position:relative;z-index:1}
.page-head .eyebrow{margin-bottom:14px}
.page-head h1{margin-bottom:16px}
.page-head .lede{max-width:760px;margin-bottom:24px}

/* ---------- 正文主列 ---------- */
.tutorial{
  max-width:900px;
  margin-inline:auto;
}
.tutorial > .callout{margin-top:0}

/* ---------- 步骤块 ---------- */
.step-block{
  padding-top:46px;
  padding-bottom:46px;
  border-top:1px solid var(--border);
}
.tutorial > .step-block:first-of-type{
  border-top:0;
  padding-top:16px;
}
.step-block h2{margin-bottom:0}
.step-block > p{margin-top:14px}
.step-block > pre{margin-top:16px}

.step-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.step-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:50%;
  background:rgba(var(--accent-rgb),.12);
  box-shadow:inset 0 0 0 1px rgba(var(--accent-rgb),.24);
  color:var(--accent-dark);
  font-family:var(--font-mono);
  font-size:15px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
.step-cta{margin-top:22px}

/* ---------- 客户端小节（Windows / macOS / Android / iOS） ---------- */
.client-block{
  margin-top:20px;
  padding:20px 22px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--r-card);
  box-shadow:inset 0 1px 0 var(--white),0 18px 40px -32px rgba(var(--text-rgb),.45);
}
.client-block h3{
  font-size:19px;
  margin-bottom:10px;
}
.client-block h3::before{
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  margin-right:10px;
  vertical-align:middle;
}
.client-block p{font-size:15px}
.client-block p+p{margin-top:12px}

/* ---------- 继续深入清单 ---------- */
.next-list{
  display:flex;
  flex-direction:column;
  margin-top:18px;
}
.next-list li{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:16px 0;
  border-top:1px solid var(--border);
}
.next-list li:last-child{border-bottom:1px solid var(--border)}
.next-list p{font-size:14px;line-height:1.7}

/* ---------- 响应式 ---------- */
@media (max-width:900px){
  .tutorial{max-width:100%}
}
@media (max-width:640px){
  .page-head{padding-top:28px;padding-bottom:28px}
  .step-block{padding-top:32px;padding-bottom:32px}
  .tutorial > .step-block:first-of-type{padding-top:12px}
  .step-head{gap:11px;margin-bottom:12px}
  .step-no{
    width:30px;
    height:30px;
    flex-basis:30px;
    font-size:13px;
  }
  .client-block{padding:18px 16px}
  .client-block h3{font-size:17px}
}