/* ==========================================================================
   VPNAK — tutorial.css (使用教程页专属样式)
   只做本页需要的东西:步骤编号头、步骤正文列、步骤动作行、
   下一步卡片网格。全部颜色/圆角/字体引用 base.css 的设计令牌。
   ========================================================================== */

.guide-facts{margin-top:20px}
.guide-ctas{margin-top:26px}

.tut-doc{display:block;min-width:0}
.tut-doc > section{padding-top:40px;padding-bottom:8px}
.tut-doc > section:first-of-type{padding-top:8px}
.tut-doc > section + section{border-top:1px solid var(--border);margin-top:32px}

.step-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}
.step-head h2{margin:0;font-size:clamp(22px,2.6vw,30px);line-height:1.25}
.step-no{
  flex-shrink:0;
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--accent-soft);
  color:var(--accent);
  font-family:var(--font-mono);
  font-size:15px;
  font-weight:700;
  box-shadow:0 8px 18px -12px var(--shadow-tint-strong),inset 0 1px 0 var(--highlight);
}

.step-body{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:860px;
  min-width:0;
}
.step-body p{font-size:14.5px;line-height:1.8;color:var(--text)}
.step-body p strong{font-weight:700}
.step-body code{font-size:.9em}

.step-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px 16px;
  padding-top:4px;
}
.step-hint{font-size:12.5px;color:var(--muted);line-height:1.6}

.next-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.next-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:20px 20px 18px;
  min-width:0;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  box-shadow:0 18px 40px -26px var(--shadow-tint),inset 0 1px 0 var(--highlight);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.next-card:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
  box-shadow:0 24px 48px -24px var(--shadow-tint-strong),inset 0 1px 0 var(--highlight);
}
.next-ic{
  width:40px;height:40px;flex-shrink:0;
  display:grid;place-items:center;
  border-radius:var(--radius-sm);
  background:var(--bg-panel2);
  border:1px solid var(--border);
  color:var(--accent);
}
.next-ic svg{width:21px;height:21px;display:block}
.next-t{font-family:var(--font-display);font-size:16px;font-weight:800;letter-spacing:-.015em}
.next-d{font-size:13px;line-height:1.65;color:var(--muted)}

@media (max-width:900px){
  .next-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .next-grid{grid-template-columns:1fr}
  .step-head{gap:12px}
  .step-no{width:36px;height:36px;font-size:14px}
  .step-body p{font-size:14px}
  .step-actions .btn{width:100%;max-width:340px}
}