.help-hero{
  position:relative;
  overflow-x:clip;
  max-width:100%;
  padding-top:clamp(64px,8vw,104px);
  padding-bottom:clamp(58px,7vw,88px);
}
.help-hero::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:100%;
  background:
    radial-gradient(circle at 16% 10%,var(--color-wash-orange),transparent 42%),
    radial-gradient(circle at 82% 4%,var(--color-wash-violet),transparent 43%),
    linear-gradient(180deg,var(--color-wash-blue),transparent 76%);
  pointer-events:none;
}
.help-hero-inner{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.help-hero h1{
  max-width:930px;
  margin-top:18px;
  margin-bottom:0;
}
.help-hero .hero-sub{
  max-width:790px;
}
.help-content{
  position:relative;
}
.help-overview{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(28px,5vw,72px);
  align-items:end;
  margin-bottom:42px;
  padding:30px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-panel);
  box-shadow:var(--shadow-panel);
}
.help-overview h2{
  margin-bottom:0;
  font-size:clamp(30px,3.4vw,44px);
}
.help-overview p{
  margin-bottom:0;
}
.help-prose{
  min-width:0;
}
.help-prose .toc-tabs{
  top:12px;
}
.help-category{
  padding-top:58px;
  padding-bottom:58px;
  border-bottom:1px solid var(--color-border);
}
.help-category:first-of-type{
  padding-top:24px;
}
.help-category:last-of-type{
  border-bottom:0;
}
.help-category-head{
  display:grid;
  grid-template-columns:minmax(112px,.28fr) minmax(0,1fr);
  gap:28px;
  align-items:start;
  margin-bottom:30px;
}
.help-category-index{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-pill);
  background:var(--gradient-violet);
  color:var(--color-accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
}
.help-category h2{
  margin-bottom:10px;
  font-size:clamp(31px,3.5vw,46px);
}
.help-category-head p{
  max-width:790px;
  margin-bottom:0;
  color:var(--color-muted);
}
.help-category .faq-list{
  max-width:920px;
  margin-left:auto;
}
.help-category .faq-item{
  overflow:clip;
}
.help-category .faq-answer{
  line-height:1.85;
}
.help-category .callout{
  max-width:920px;
  margin-right:0;
  margin-left:auto;
}
.help-prose .end-promo{
  margin-bottom:0;
}
@media (max-width:840px){
  .help-overview{
    grid-template-columns:1fr;
    align-items:start;
  }
  .help-category-head{
    grid-template-columns:1fr;
    gap:14px;
  }
  .help-category-index{
    width:max-content;
    max-width:100%;
  }
  .help-category .faq-list,
  .help-category .callout{
    max-width:100%;
    margin-left:0;
  }
}
@media (max-width:768px){
  .help-hero{
    padding-top:56px;
    padding-bottom:56px;
  }
  .help-overview{
    padding:24px;
  }
  .help-prose .toc-tabs{
    top:8px;
  }
  .help-category{
    padding-top:48px;
    padding-bottom:48px;
  }
  .help-category:first-of-type{
    padding-top:18px;
  }
}
@media (max-width:640px){
  .help-hero .hero-trust{
    justify-content:flex-start;
    width:100%;
    text-align:left;
  }
  .help-overview{
    padding:21px;
  }
  .help-category-head{
    margin-bottom:24px;
  }
  .help-category .callout{
    padding:20px 20px 20px 24px;
  }
}