.help-hero {
      padding: 34px 0;
      background: #eef3f6;
      border-bottom: 1px solid var(--border);
    }

    .help-hero__inner {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
      align-items: center;
    }

    .help-hero__title {
      margin: 0 0 10px;
      font-size: 34px;
      letter-spacing: -0.03em;
    }

    .help-hero__desc {
      margin: 0 0 16px;
      color: rgba(15, 23, 42, 0.62);
      line-height: 1.65;
      max-width: 70ch;
      font-size: 14px;
    }

    .help-search {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      max-width: 640px;
      margin: 0 0 12px;
    }

    .help-search__input {
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(15, 23, 42, 0.14);
      padding: 0 14px;
      font-size: 14px;
      outline: none;
      background: #fff;
    }

    .help-search__input:focus {
      border-color: rgba(43, 182, 115, 0.65);
      box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.15);
    }

    .help-search__btn {
      height: 44px;
      padding: 0 16px;
      border-radius: 10px;
      background: var(--primary);
      color: #fff;
      font-weight: 800;
      letter-spacing: 0.01em;
      border: 1px solid rgba(0, 0, 0, 0);
      cursor: pointer;
    }

    .help-search__btn:hover {
      background: var(--primary-700);
    }

    .help-topics {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      color: rgba(15, 23, 42, 0.62);
      font-size: 12px;
    }

    .help-topics a {
      color: rgba(43, 125, 179, 0.95);
      font-weight: 800;
    }

    .help-topics a:hover {
      text-decoration: underline;
    }

    .help-illus {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      padding: 14px;
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
      overflow: hidden;
    }

    .help-cats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .help-cat__title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 900;
      margin: 0 0 10px;
      font-size: 14px;
      letter-spacing: -0.01em;
    }

    .help-cat__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .help-cat__list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 10px;
      border-radius: 10px;
      color: rgba(15, 23, 42, 0.78);
      background: rgba(15, 23, 42, 0.02);
      border: 1px solid rgba(15, 23, 42, 0.06);
    }

    .help-cat__list a:hover {
      border-color: rgba(43, 125, 179, 0.35);
      background: rgba(43, 125, 179, 0.04);
      transform: translateX(2px);
      transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
    }

    .help-cat__more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      color: rgba(43, 125, 179, 0.95);
      font-weight: 900;
      font-size: 13px;
    }

    .help-cat__more:hover {
      text-decoration: underline;
    }

    .help-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(15, 23, 42, 0.10);
      padding-bottom: 10px;
      margin-bottom: 14px;
    }

    .help-tab {
      appearance: none;
      border: 1px solid rgba(15, 23, 42, 0.14);
      background: #fff;
      color: rgba(15, 23, 42, 0.75);
      font-weight: 900;
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      cursor: pointer;
    }

    .help-tab[aria-selected="true"] {
      background: rgba(43, 125, 179, 0.12);
      border-color: rgba(43, 125, 179, 0.35);
      color: rgba(43, 125, 179, 0.95);
    }

    .help-tab:focus-visible {
      outline: 3px solid rgba(43, 125, 179, 0.25);
      outline-offset: 2px;
    }

    .help-tabpanel[hidden] {
      display: none;
    }

    .help-callouts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .help-callout {
      padding: 16px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
    }

    .help-callout__title {
      margin: 0 0 6px;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: -0.01em;
    }

    .help-callout__desc {
      margin: 0 0 10px;
      color: rgba(15, 23, 42, 0.62);
      line-height: 1.65;
      font-size: 13px;
    }

    .help-callout__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(43, 125, 179, 0.95);
      font-weight: 900;
      font-size: 13px;
    }

    .help-callout__link:hover {
      text-decoration: underline;
    }

    @media (max-width: 1040px) {
      .help-hero__inner {
        grid-template-columns: 1fr;
      }

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

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

    @media (max-width: 480px) {
      .help-hero__title {
        font-size: 28px;
      }

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

      .help-search__btn {
        width: 100%;
      }
    }

    /* Help Head (news-style) */
    .helphead {
      background: #ffffff;
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .helphead__inner {
      padding: 14px 0 12px;
      display: grid;
      gap: 10px;
    }

    .helphead__copy {
      min-width: 0;
      display: grid;
      gap: 8px;
    }

    .helphead__crumb {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      color: rgba(15, 23, 42, 0.55);
      font-size: 13px;
      font-weight: 800;
    }

    .helphead__crumb a {
      color: rgba(15, 23, 42, 0.6);
    }

    .helphead__crumb a:hover {
      text-decoration: underline;
    }

    .helphead__sep {
      color: rgba(15, 23, 42, 0.28);
      font-weight: 900;
    }

    .helphead__title {
      margin: 0;
      font-size: 32px;
      letter-spacing: -0.03em;
      color: rgba(15, 23, 42, 0.95);
      line-height: 1.15;
    }

    .helphead__desc {
      margin: 0;
      color: rgba(15, 23, 42, 0.62);
      font-size: 14px;
      line-height: 1.7;
      max-width: 90ch;
    }

    .helphead__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: rgba(15, 23, 42, 0.55);
      font-size: 13px;
      font-weight: 800;
      margin-top: 4px;
    }

    .helphead__dot {
      color: rgba(15, 23, 42, 0.28);
      font-weight: 900;
    }

    .help-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.14);
      background: rgba(15, 23, 42, 0.02);
      color: rgba(15, 23, 42, 0.72);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: -0.01em;
    }

    .helphead--article .helphead__title {
      font-size: 36px;
      line-height: 1.1;
    }

    .helphead--list .helphead__title {
      font-size: 32px;
    }

    @media (max-width: 820px) {
      .helphead__title {
        font-size: 28px;
      }
    }

/* Help List */
.help-listhead__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.help-search-mini {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: min(460px, 100%);
}

.help-search-mini__input {
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 0 12px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.help-search-mini__input:focus {
  border-color: rgba(43, 125, 179, 0.55);
  box-shadow: 0 0 0 4px rgba(43, 125, 179, 0.14);
}

.help-search-mini__btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.help-search-mini__btn:hover {
  background: var(--accent-blue-700);
}

.help-list-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 12px;
}

.help-list-panel__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.help-article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.help-article-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.help-article-item:hover {
  background: rgba(15, 23, 42, 0.02);
}

.help-article-item__main {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 6px;
}

.help-article-item__title {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.help-article-item__desc {
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.help-article-item__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.help-article-item__chev {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.5);
  background: transparent;
  font-size: 16px;
}

.help-article-item:hover .help-article-item__chev {
  border-color: rgba(43, 125, 179, 0.28);
  color: rgba(43, 125, 179, 0.95);
}

.help-side {
  display: grid;
  gap: 14px;
}

.help-side__title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.help-side__desc {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.6;
  font-size: 13px;
}

.help-side__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.help-side__btn:hover {
  background: var(--primary-700);
}

@media (max-width: 820px) {
  .help-listhead__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-search-mini {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .help-search-mini {
    grid-template-columns: 1fr;
  }

  .help-search-mini__btn {
    width: 100%;
  }
}

/* Help Article */
.help-article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.help-article-meta__dot {
  color: rgba(15, 23, 42, 0.3);
}

.help-prose [id] {
  scroll-margin-top: 96px;
}

.help-prose h2 {
  margin: 22px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.help-prose h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.help-prose p,
.help-prose ul,
.help-prose ol {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.72);
}

.help-prose a {
  color: rgba(43, 125, 179, 0.95);
  font-weight: 800;
}

.help-prose a:hover {
  text-decoration: underline;
}

.help-prose li {
  margin: 6px 0;
}

.help-prose pre {
  margin: 12px 0;
  padding: 14px;
  border-radius: 12px;
  background: #0b1220;
  color: #e5e7eb;
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  line-height: 1.6;
}

.help-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.help-prose :not(pre) > code {
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  color: rgba(15, 23, 42, 0.85);
}

.help-callout-box {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
}

.help-callout-box--info {
  border-color: rgba(56, 189, 248, 0.25);
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
}

.help-callout-box--warn {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
}

.help-callout-box__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
}

.help-callout-box__text {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.68);
  line-height: 1.6;
}

.help-toc {
  padding: 14px;
}

.help-toc__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.help-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.help-toc__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.help-toc__list a:hover {
  border-color: rgba(43, 125, 179, 0.35);
  background: rgba(43, 125, 179, 0.04);
}

.help-toc__hash {
  color: rgba(15, 23, 42, 0.35);
  font-weight: 900;
}
