.help-page {
  padding: 30px 0 48px;
}

.help-wrap {
  max-width: 1000px;
}

.help-site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.help-site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(58, 78, 124, .56);
  background: rgba(18, 33, 69, .56);
}

.help-site-nav a:hover {
  color: var(--text);
  background: rgba(25, 44, 89, .78);
}

.help-content {
  font-size: 17px;
  line-height: 1.68;
}

.help-content > * + * {
  margin-top: 18px;
}

.help-hero,
.help-card,
.help-callout,
.help-link-card {
  border: 1px solid rgba(58, 78, 124, .58);
  border-radius: var(--radius);
  background: rgba(16, 29, 59, .54);
  box-shadow: var(--shadow);
}

.help-hero {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background:
    radial-gradient(420px 180px at 20% 0%, rgba(233, 211, 173, .12), transparent 70%),
    rgba(16, 29, 59, .56);
}

.help-hero img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(215, 222, 234, .30);
  background: rgba(6, 13, 34, .70);
  flex: 0 0 auto;
}

.help-hero h1 {
  margin: 6px 0 8px;
}

.help-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(58, 78, 124, .58);
  background: rgba(18, 33, 69, .58);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.help-subtitle,
.help-muted,
.help-content p,
.help-content li,
.help-content dd,
.help-content td {
  color: var(--muted);
}

.help-content p,
.help-content li,
.help-content dd,
.help-content td,
.help-content th {
  line-height: 1.68;
}

.help-content strong,
.help-content th,
.help-content dt {
  color: var(--text);
}

.help-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(58, 78, 124, .50);
  line-height: 1.3;
}

.help-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.help-content ul,
.help-content ol {
  padding-left: 22px;
}

.help-content li + li {
  margin-top: 8px;
}

.help-card,
.help-callout {
  padding: 16px 18px;
}

.help-callout {
  background:
    linear-gradient(135deg, rgba(233, 211, 173, .14), transparent 42%),
    rgba(16, 29, 59, .54);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.help-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.help-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 211, 173, .50);
  background: rgba(20, 36, 72, .72);
}

.help-link-card-copy {
  padding: 16px 18px 18px;
}

.help-link-card h3 {
  margin-top: 6px;
}

.help-content a:not(.help-link-card) {
  color: var(--accent2);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.3px;
}

.help-content code {
  font-family: var(--mono);
  font-size: .92em;
  color: var(--text);
  background: rgba(2, 6, 23, .34);
  border: 1px solid rgba(58, 78, 124, .48);
  border-radius: 7px;
  padding: 1px 5px;
}

.help-content pre {
  overflow: auto;
  border-radius: var(--radius2);
  border: 1px solid rgba(58, 78, 124, .56);
  background: rgba(2, 6, 23, .35);
  padding: 14px 16px;
}

.help-content pre code {
  border: 0;
  background: transparent;
  padding: 0;
}

.help-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 12px 0 20px;
  border: 1px solid rgba(58, 78, 124, .58);
  border-radius: var(--radius2);
  background: rgba(16, 29, 59, .46);
}

.help-content th,
.help-content td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(58, 78, 124, .42);
}

.help-content tr:last-child td {
  border-bottom: 0;
}

.help-content th {
  background: rgba(18, 33, 69, .68);
  font-weight: 800;
}

.help-content dl {
  display: grid;
  gap: 12px;
}

.help-content dt {
  font-weight: 800;
}

.help-content dd {
  margin: 4px 0 0;
}

@media (prefers-color-scheme: light) {
  .help-site-nav a,
  .help-eyebrow {
    border-color: rgba(72, 93, 142, .62);
    background: rgba(19, 35, 73, .68);
  }

  .help-hero,
  .help-card,
  .help-callout,
  .help-link-card,
  .help-content table {
    border-color: rgba(72, 93, 142, .62);
    background: rgba(20, 35, 73, .62);
  }

  .help-content code,
  .help-content pre {
    border-color: rgba(72, 93, 142, .62);
    background: rgba(11, 20, 46, .72);
  }
}

@media (max-width: 760px) {
  .help-page {
    padding-top: 22px;
  }

  .help-site-nav {
    gap: 8px;
  }

  .help-site-nav a {
    font-size: 14px;
  }

  .help-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-hero img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .help-card,
  .help-callout,
  .help-link-card-copy {
    padding: 14px;
  }
}

.help-content h1 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.help-hero-text {
  display: block;
}

.help-hero-text .help-subtitle {
  max-width: 70ch;
}
