.help-hero{
  position:relative;
  max-width:100%;
  overflow-x:clip;
  border-bottom:1px solid var(--color-border);
  background:
    radial-gradient(circle at 78% 28%,var(--color-accent-halo),transparent 34%),
    radial-gradient(circle at 20% 0,var(--color-glow),transparent 58%),
    linear-gradient(180deg,var(--color-glow),var(--color-page));
}
.help-halo{
  position:absolute;
  top:12%;
  right:5%;
  width:min(36vw,480px);
  aspect-ratio:1;
  border:1px dashed var(--color-accent-line);
  border-radius:50%;
  opacity:.48;
  pointer-events:none;
}
.help-halo::before,
.help-halo::after{
  content:"";
  position:absolute;
  border:1px solid var(--color-accent-line);
  border-radius:50%;
}
.help-halo::before{inset:14%}
.help-halo::after{inset:31%;background:var(--color-accent-soft)}
.help-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:clamp(36px,7vw,96px);
  align-items:center;
  padding-top:clamp(64px,8vw,112px);
  padding-bottom:clamp(72px,9vw,124px);
}
.help-hero__copy{min-width:0}
.help-hero__copy h1{
  max-width:760px;
  margin-top:24px;
}
.help-hero__lede{
  max-width:680px;
  margin-top:22px;
  color:var(--color-muted);
  font-size:clamp(17px,2vw,20px);
}
.help-facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.help-facts span{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:6px 12px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-sm);
  background:var(--color-surface);
  color:var(--color-accent-dark);
  font-size:13px;
  font-weight:750;
  box-shadow:var(--shadow-card);
}
.help-ledger{
  position:relative;
  min-width:0;
  padding:12px;
  transform:rotate(-1deg);
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  background:var(--color-surface-alt);
  box-shadow:var(--shadow-frame);
}
.help-ledger__head{
  display:flex;
  min-height:58px;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 12px 14px;
  border-bottom:1px dashed var(--color-border);
  color:var(--color-muted);
  font-size:11px;
  letter-spacing:.08em;
}
.help-ledger__seal{
  display:grid;
  width:44px;
  height:44px;
  flex:none;
  place-items:center;
  border:2px solid var(--color-white);
  border-radius:50%;
  background:linear-gradient(135deg,var(--color-accent),var(--color-accent-end));
  color:var(--color-white);
  box-shadow:var(--shadow-float);
}
.help-ledger__list{
  display:grid;
  gap:8px;
  margin:0;
  padding:12px 0 0;
  list-style:none;
  counter-reset:help-check;
}
.help-ledger__list li{
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:2px 12px;
  align-items:center;
  padding:14px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-sm);
  background:var(--color-surface);
  box-shadow:var(--shadow-card);
  counter-increment:help-check;
}
.help-ledger__list li::before{
  content:counter(help-check);
  display:grid;
  width:30px;
  height:30px;
  grid-row:1/3;
  place-items:center;
  border-radius:var(--radius-xs);
  background:var(--color-accent-soft);
  color:var(--color-accent-dark);
  font:750 12px/1 var(--font-mono);
}
.help-ledger__list b{font-size:14px}
.help-ledger__list span{
  color:var(--color-muted);
  font-size:12px;
}
.support-document{
  padding-bottom:var(--section-space);
}
.support-document > .toc-tabs{
  margin-top:32px;
}
.help-category{
  max-width:980px;
  margin-inline:auto;
  padding-top:clamp(54px,7vw,88px);
}
.help-category + .help-category{
  margin-top:clamp(24px,4vw,52px);
  border-top:1px dashed var(--color-border);
}
.help-category__intro{
  display:grid;
  grid-template-columns:112px minmax(0,1fr);
  gap:24px;
  align-items:start;
  margin-bottom:28px;
}
.help-category__code{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border:1px solid var(--color-accent-line);
  border-radius:var(--radius-xs);
  background:var(--color-accent-soft);
  color:var(--color-accent-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
}
.help-category__intro h2{
  margin-bottom:8px;
  font-size:clamp(30px,4vw,44px);
}
.help-category__intro p{
  max-width:720px;
  margin:0;
  color:var(--color-muted);
}
.help-category .faq-list{gap:12px}
.help-category .faq-item summary{
  padding-top:20px;
  padding-bottom:20px;
  font-size:17px;
}
.help-category .faq-answer{
  max-width:850px;
  padding-right:clamp(20px,5vw,56px);
  line-height:1.85;
}
.help-category .faq-answer p:last-child{margin-bottom:0}
.help-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  margin-top:24px;
}
.help-links a{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  color:var(--color-accent-dark);
  font-weight:750;
}
.help-links a:hover{text-decoration:underline;text-underline-offset:4px}
.help-action{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;
  align-items:center;
  margin-top:40px;
  border-color:var(--color-accent-line);
  background:linear-gradient(135deg,var(--color-surface-alt),var(--color-surface));
  box-shadow:var(--shadow-float);
}
.help-action h3{
  margin-bottom:8px;
  font-size:clamp(22px,3vw,29px);
}
.help-action p{
  max-width:680px;
  margin:0;
  color:var(--color-muted);
}
.help-action .button-row{justify-content:flex-end}

@media (max-width:900px){
  .help-hero__grid{grid-template-columns:1fr}
  .help-ledger{
    width:100%;
    max-width:680px;
    transform:none;
  }
  .help-halo{
    right:-18%;
    width:70vw;
  }
  .help-action{grid-template-columns:1fr}
  .help-action .button-row{justify-content:flex-start}
}
@media (max-width:640px){
  .help-halo{display:none}
  .help-hero__grid{
    padding-top:48px;
    padding-bottom:64px;
  }
  .help-facts{
    display:grid;
    grid-template-columns:1fr;
  }
  .help-facts span{justify-content:center}
  .help-category__intro{
    grid-template-columns:1fr;
    gap:14px;
  }
  .help-category__code{
    width:max-content;
    max-width:100%;
  }
  .help-category .faq-item summary{
    padding-right:48px;
    font-size:16px;
  }
  .help-action .button-row{width:100%}
}