.help-hero {
  position: relative;
  overflow-x: clip;
  padding-top: 84px;
  padding-bottom: 90px;
}

.help-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, rgb(var(--rgb-accent) / .09), rgb(var(--rgb-accent) / 0));
  pointer-events: none;
}

.help-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: center;
}

.help-hero-copy {
  min-width: 0;
}

.help-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 19px;
}

.help-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 10px;
}

.help-fact {
  min-width: 0;
  padding: 22px;
}

.help-fact:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}

.help-fact:nth-child(-n+2) {
  border-bottom: 1px solid var(--color-border);
}

.help-fact span,
.help-fact strong {
  display: block;
}

.help-fact span {
  margin-bottom: 8px;
  color: var(--color-muted);
  font: 650 12px/1.4 var(--font-mono);
  letter-spacing: .04em;
}

.help-fact strong {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.45;
}

.help-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.help-check {
  min-width: 0;
  padding: 25px;
}

.help-check + .help-check {
  border-left: 1px solid var(--color-border);
}

.help-check-mark {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-small);
  background: var(--color-accent);
  color: var(--color-white);
  font: 800 13px/1 var(--font-mono);
  box-shadow: 0 0 0 4px rgb(var(--rgb-accent) / .1);
}

.help-check h3 {
  font-size: 19px;
}

.help-check p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.help-document {
  position: relative;
}

.help-category {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
  gap: 52px;
  padding-top: 54px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--color-border);
}

.help-category:first-of-type {
  padding-top: 30px;
}

.help-category-head {
  min-width: 0;
}

.help-category-head h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 40px);
}

.help-category-head p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.help-category-code {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--color-accent);
  font: 700 12px/1 var(--font-mono);
  letter-spacing: .08em;
}

.help-category .faq-list {
  min-width: 0;
}

.help-category .faq-item {
  box-shadow: 0 1px 2px rgb(var(--rgb-text) / .04);
}

.help-category .faq-item[open] {
  box-shadow: var(--shadow-menu);
}

.help-category .faq-answer {
  padding-right: 58px;
  line-height: 1.78;
}

.help-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 72px;
}

.help-support h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.help-support p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .help-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .help-facts {
    max-width: 720px;
  }

  .help-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-check + .help-check {
    border-left: 0;
  }

  .help-check:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .help-check:nth-child(n+3) {
    border-top: 1px solid var(--color-border);
  }

  .help-category {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .help-category-head {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .help-hero {
    padding-top: 50px;
    padding-bottom: 68px;
  }

  .help-hero::after {
    display: none;
  }

  .help-lede {
    font-size: 17px;
  }

  .help-category {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .help-category .faq-answer {
    padding-right: 18px;
  }

  .help-support {
    grid-template-columns: 1fr;
  }

  .help-support .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .help-facts,
  .help-check-grid {
    grid-template-columns: 1fr;
  }

  .help-fact:nth-child(odd) {
    border-right: 0;
  }

  .help-fact:nth-child(-n+3) {
    border-bottom: 1px solid var(--color-border);
  }

  .help-check:nth-child(even) {
    border-left: 0;
  }

  .help-check:nth-child(n+2) {
    border-top: 1px solid var(--color-border);
  }

  .help-category .faq-item summary {
    align-items: flex-start;
  }
}