/* ============================================================
   VPNFP tutorial.css — page-specific styles for tutorial.html
   ============================================================ */

/* page head band */
.tut-head{
  padding-top:56px;
  padding-bottom:8px;
}
.tut-head h1{
  margin-bottom:16px;
}
.tut-lede{
  font-size:16px;
  color:var(--text-muted);
  line-height:1.8;
  max-width:72ch;
  margin-bottom:22px;
}
.tut-lede a{
  color:var(--accent);
}

/* platform anchor chips inside step 4 */
.tut-jump{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:6px 0 26px;
}
.tut-jump a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:6px 16px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.04em;
  color:var(--text-muted);
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--r-pill);
  transition:color .15s ease,border-color .15s ease;
}
.tut-jump a:hover{
  color:var(--accent);
  border-color:var(--accent-dark);
}

/* step sections: light separation between the five steps */
.prose section[id^="step-"]{
  padding-top:8px;
  margin-bottom:28px;
}
.prose section[id^="step-"] + section[id^="step-"]{
  border-top:1px solid var(--line-faint);
  padding-top:36px;
}

/* in-prose buttons keep a little air around them */
.prose .btn{
  margin:6px 0 18px;
}

@media (max-width:960px){
  .tut-head{padding-top:40px}
  .prose section[id^="step-"] + section[id^="step-"]{padding-top:28px}
}