.help-hero{
  padding-top:72px;
  padding-bottom:72px;
  border-bottom:1px solid var(--color-border);
  background:radial-gradient(circle at 84% 20%,var(--color-mark),transparent 30%),var(--color-page);
}
.help-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
  align-items:center;
  gap:64px;
}
.help-intro{
  display:grid;
  justify-items:start;
  gap:20px;
  min-width:0;
}
.help-intro h1{
  max-width:840px;
}
.help-intro .lead{
  max-width:760px;
}
.help-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.help-summary{
  display:grid;
  gap:18px;
  min-width:0;
  padding:30px;
  border:1px solid var(--color-dark-line);
  border-radius:var(--radius-medium);
  box-shadow:var(--shadow-card);
}
.help-summary .eyebrow{
  color:var(--color-accent);
}
.help-summary h2{
  font-size:30px;
}
.help-summary > p{
  color:var(--color-dark-muted);
}
.help-facts{
  display:grid;
  gap:10px;
  list-style:none;
}
.help-facts li{
  display:grid;
  gap:2px;
  padding-top:12px;
  border-top:1px solid var(--color-dark-line);
}
.help-facts strong{
  color:var(--color-dark-text);
  font-family:var(--font-mono);
  font-size:13px;
}
.help-facts span{
  color:var(--color-dark-muted);
  font-size:13px;
}
.help-flow{
  position:relative;
  padding-top:28px;
  padding-bottom:var(--section-space);
}
.help-toc{
  top:12px;
}
.help-category{
  display:grid;
  grid-template-columns:minmax(220px,.38fr) minmax(0,1fr);
  gap:56px;
  border-bottom:1px solid var(--color-border);
}
.help-category-head{
  display:grid;
  align-content:start;
  gap:18px;
  min-width:0;
}
.help-category-head > div{
  display:grid;
  gap:10px;
}
.help-category-head h2{
  font-size:clamp(30px,3.4vw,44px);
}
.help-category-head > p{
  color:var(--color-muted);
}
.help-category > .faq-list{
  min-width:0;
}
.help-category > .help-callout,
.help-category > .help-link-row{
  grid-column:2;
}
.help-callout{
  margin-top:24px;
}
.help-link-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px 28px;
  margin-top:24px;
}
.help-link-row a{
  min-height:32px;
}
.help-next{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:36px;
  margin-top:var(--section-space);
  padding:38px;
  border-radius:var(--radius-medium);
  color:var(--color-dark-text);
  background-color:var(--color-forest);
  background-image:linear-gradient(var(--color-grid) 1px,transparent 1px),linear-gradient(90deg,var(--color-grid) 1px,transparent 1px);
  background-size:26px 26px;
}
.help-next > div:first-child{
  display:grid;
  gap:12px;
  max-width:760px;
}
.help-next .eyebrow{
  color:var(--color-accent);
}
.help-next h2{
  font-size:34px;
}
.help-next p{
  color:var(--color-dark-muted);
}
.help-next-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
}
.help-next .btn-secondary{
  color:var(--color-dark-text);
  background:transparent;
  border-color:var(--color-dark-line);
}
.help-next .btn-secondary:hover{
  color:var(--color-surface);
  border-color:var(--color-accent);
}

@media (max-width:960px){
  .help-hero-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .help-summary{
    max-width:720px;
  }
  .help-category{
    grid-template-columns:1fr;
    gap:28px;
  }
  .help-category-head{
    max-width:760px;
  }
  .help-category > .help-callout,
  .help-category > .help-link-row{
    grid-column:1;
  }
}
@media (max-width:768px){
  .help-hero{
    padding-top:52px;
    padding-bottom:56px;
  }
  .help-flow{
    padding-top:18px;
  }
  .help-toc{
    top:8px;
  }
  .help-category{
    gap:22px;
  }
  .help-next{
    grid-template-columns:1fr;
    padding:28px;
  }
  .help-next-actions{
    justify-content:flex-start;
  }
}
@media (max-width:480px){
  .help-hero-actions,
  .help-next-actions{
    width:100%;
  }
  .help-hero-actions .btn,
  .help-next-actions .btn{
    width:100%;
  }
  .help-summary{
    padding:22px;
  }
  .help-next{
    padding:22px;
  }
}