:root {
  --help-ink: #10233f;
  --help-muted: #5f6f82;
  --help-border: #d9e2ec;
  --help-surface: #ffffff;
  --help-soft: #f2f7f5;
  --help-green: #2f7d54;
  --help-green-deep: #205f3e;
  --help-orange: #a65305;
  --help-blue: #2563eb;
  --help-red: #c2413a;
  --help-shadow: 0 20px 55px rgba(15, 35, 63, 0.09);
}

.help-page {
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 125, 84, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(217, 119, 6, 0.1), transparent 22rem),
    #f7faf8;
}

.help-page .site-header {
  position: relative;
}

.help-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--help-ink);
  color: #fff;
  transform: translateY(-150%);
}

.help-skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.help-preview-banner {
  border-bottom: 1px solid #f0c36d;
  background: #fff4d9;
  color: #6f4700;
  font-size: 13px;
}

.help-preview-banner .marketing-shell {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 0;
  text-align: center;
}

.help-main {
  min-height: 62vh;
}

.help-page .footer-brand img {
  height: auto;
}

.help-hero {
  padding: 68px 0 76px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.88), rgba(242, 247, 245, 0.8)),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(47, 125, 84, 0.035) 26px 27px);
}

.help-hero .marketing-shell {
  max-width: 900px;
  text-align: center;
}

.help-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--help-green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.help-eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--help-orange);
  content: "";
}

.help-hero h1,
.help-category-header h1,
.help-article__header h1 {
  color: var(--help-ink);
  letter-spacing: -0.035em;
}

.help-hero h1 {
  max-width: 780px;
  margin: 16px auto 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.02;
}

.help-hero > .marketing-shell > p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--help-muted);
  font-size: 18px;
  line-height: 1.7;
}

.help-search-panel {
  margin: 34px auto 0;
  padding: 20px;
  border: 1px solid rgba(47, 125, 84, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--help-shadow);
  text-align: left;
}

.help-search-label {
  display: block;
  margin: 0 0 9px;
  color: var(--help-ink);
  font-size: 13px;
  font-weight: 700;
}

.help-search-panel .pagefind-ui__search-input {
  height: 56px;
  border: 1px solid var(--help-border);
  border-radius: 12px;
  background: #f9fbfa;
  color: var(--help-ink);
  font-size: 17px;
}

.help-search-panel .pagefind-ui__search-input:focus {
  border-color: var(--help-green);
  box-shadow: 0 0 0 4px rgba(47, 125, 84, 0.12);
  outline: 0;
}

.help-search-panel .pagefind-ui__search-clear {
  color: var(--help-green-deep);
}

.help-search-panel .pagefind-ui__drawer {
  max-height: 470px;
  overflow: auto;
}

.help-search-panel .pagefind-ui__result-link {
  color: var(--help-ink);
}

.help-search-examples {
  margin-top: 12px;
  color: var(--help-muted);
  font-size: 13px;
}

.help-search-examples a {
  font-weight: 700;
}

.help-section {
  padding: 72px 0;
}

.help-section--soft {
  border-block: 1px solid var(--help-border);
  background: rgba(237, 245, 240, 0.7);
}

.help-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 30px;
}

.help-section h2,
.help-popular-grid h2,
.help-support-card h2 {
  margin: 10px 0 0;
  color: var(--help-ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.help-section__heading > p,
.help-popular-grid > div > p,
.help-support-card p {
  margin: 0;
  color: var(--help-muted);
  line-height: 1.7;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-category-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 154px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--help-border);
  border-radius: 18px;
  background: var(--help-surface);
  box-shadow: 0 10px 28px rgba(15, 35, 63, 0.055);
  color: var(--help-ink);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.help-category-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--card-accent, var(--help-green));
  content: "";
}

.help-category-card:hover,
.help-category-card:focus-visible {
  border-color: color-mix(in srgb, var(--card-accent, var(--help-green)) 55%, white);
  box-shadow: var(--help-shadow);
  color: var(--help-ink);
  transform: translateY(-2px);
}

.help-category-card--orange { --card-accent: var(--help-orange); }
.help-category-card--blue { --card-accent: var(--help-blue); }
.help-category-card--red { --card-accent: var(--help-red); }
.help-category-card--gold { --card-accent: #b7791f; }
.help-category-card--teal { --card-accent: #087479; }
.help-category-card--navy { --card-accent: #294c74; }

.help-category-card__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-accent, var(--help-green)) 12%, white);
  color: var(--card-accent, var(--help-green));
  font-size: 13px;
  font-weight: 700;
}

.help-category-card h3 {
  margin: 0 0 7px;
  color: var(--help-ink);
  font-size: 19px;
}

.help-category-card p {
  margin: 0;
  color: var(--help-muted);
  font-size: 14px;
  line-height: 1.55;
}

.help-category-card__count {
  align-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2f5f7;
  color: var(--help-muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.help-popular-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}

.help-popular-grid > div > p {
  margin-top: 16px;
}

.help-popular-list {
  overflow: hidden;
  border: 1px solid var(--help-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 35, 63, 0.06);
}

.help-popular-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--help-border);
  color: var(--help-ink);
  font-weight: 700;
}

.help-popular-list a:last-child { border-bottom: 0; }
.help-popular-list a:hover { background: #f5faf7; color: var(--help-green-deep); }

.help-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border: 1px solid rgba(47, 125, 84, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 239, 0.92));
  box-shadow: var(--help-shadow);
}

.help-support-card h2 { font-size: clamp(25px, 3vw, 34px); }
.help-support-card p { margin-top: 10px; }

.help-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 26px 0;
  color: var(--help-muted);
  font-size: 13px;
}

.help-breadcrumbs a { color: var(--help-green-deep); font-weight: 700; }

.help-category-page,
.help-article-shell {
  padding-bottom: 74px;
}

.help-category-header {
  position: relative;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--help-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--help-shadow);
}

.help-category-header::after {
  position: absolute;
  top: -80px;
  right: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(47, 125, 84, 0.1);
  content: "";
}

.help-category-header--orange::after { background: rgba(217, 119, 6, 0.11); }
.help-category-header--blue::after { background: rgba(37, 99, 235, 0.1); }
.help-category-header--red::after { background: rgba(194, 65, 58, 0.1); }

.help-category-header h1 {
  margin: 12px 0 10px;
  font-size: clamp(35px, 5vw, 54px);
}

.help-category-header p {
  max-width: 700px;
  margin: 0;
  color: var(--help-muted);
  font-size: 17px;
  line-height: 1.7;
}

.help-category-header__count {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf5f0;
  color: var(--help-green-deep);
  font-size: 12px;
  font-weight: 700;
}

.help-category-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.help-sidebar {
  position: sticky;
  top: 20px;
  padding: 18px;
  border: 1px solid var(--help-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.help-sidebar__title,
.help-toc__title {
  margin-bottom: 10px;
  color: var(--help-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.help-sidebar nav {
  display: grid;
  gap: 4px;
}

.help-sidebar nav a {
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--help-ink);
  font-size: 13px;
  font-weight: 500;
}

.help-sidebar nav a:hover,
.help-sidebar nav a[aria-current="page"] {
  background: #eaf4ee;
  color: var(--help-green-deep);
}

.help-sidebar__support {
  margin-top: 18px;
  padding: 15px;
  border-radius: 12px;
  background: #f6f8fa;
}

.help-sidebar__support strong { color: var(--help-ink); font-size: 13px; }
.help-sidebar__support p { margin: 6px 0 8px; color: var(--help-muted); font-size: 12px; line-height: 1.5; }
.help-sidebar__support a { font-size: 12px; font-weight: 700; }

.help-topic-list {
  overflow: hidden;
  border: 1px solid var(--help-border);
  border-radius: 18px;
  background: #fff;
}

.help-topic-list__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--help-border);
  background: #f7faf8;
}

.help-topic-list__heading h2 { margin: 0; color: var(--help-ink); font-size: 20px; }
.help-topic-list__heading span { color: var(--help-muted); font-size: 12px; font-weight: 700; }

.help-topic-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--help-border);
  color: var(--help-ink);
}

.help-topic-card:last-child { border-bottom: 0; }
a.help-topic-card:hover { background: #f5faf7; color: var(--help-green-deep); }
.help-topic-card h3 { margin: 4px 0 0; font-size: 15px; }
.help-topic-card__id { color: var(--help-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; }
.help-topic-card__arrow { color: var(--help-green); font-weight: 700; }
.help-topic-card__status { padding: 5px 8px; border-radius: 999px; background: #f1f4f6; color: #526274; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.help-topic-card--planned { background: #fbfcfc; color: #667687; }

.help-article-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 180px;
  gap: 30px;
  align-items: start;
}

.help-article {
  overflow: hidden;
  border: 1px solid var(--help-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 35, 63, 0.06);
}

.help-article__header {
  padding: 40px 42px 32px;
  border-bottom: 1px solid var(--help-border);
  background:
    linear-gradient(135deg, rgba(242, 248, 244, 0.95), rgba(255, 255, 255, 0.98));
}

.help-article__category {
  color: var(--help-green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-article__header h1 {
  margin: 12px 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
}

.help-article__description {
  margin: 0;
  color: var(--help-muted);
  font-size: 17px;
  line-height: 1.7;
}

.help-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: var(--help-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.help-article__content {
  padding: 34px 42px 44px;
  color: #26384d;
  font-size: 16px;
  line-height: 1.75;
}

.help-article__content > :first-child { margin-top: 0; }
.help-article__content h2 { margin: 38px 0 12px; color: var(--help-ink); font-size: 25px; line-height: 1.25; scroll-margin-top: 20px; }
.help-article__content h3 { margin: 28px 0 10px; color: var(--help-ink); font-size: 19px; scroll-margin-top: 20px; }
.help-article__content p { margin: 0 0 17px; }
.help-article__content ul,
.help-article__content ol { margin: 0 0 20px; padding-left: 24px; }
.help-article__content li { margin: 8px 0; }
.help-article__content strong { color: var(--help-ink); }
.help-article__content a { color: var(--help-green-deep); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(47, 125, 84, 0.35); text-underline-offset: 3px; }
.help-article__content code { padding: 2px 5px; border-radius: 5px; background: #eef3f0; color: #1d5338; font-size: 0.92em; }
.help-article__content table { width: 100%; margin: 22px 0; border-collapse: collapse; font-size: 14px; }
.help-article__content th,
.help-article__content td { padding: 12px 13px; border: 1px solid var(--help-border); text-align: left; vertical-align: top; }
.help-article__content th { background: #eff6f2; color: var(--help-ink); }

.help-toc {
  position: sticky;
  top: 20px;
  padding-top: 6px;
}

.help-toc nav {
  display: grid;
  gap: 2px;
  border-left: 1px solid var(--help-border);
}

.help-toc a {
  padding: 7px 0 7px 13px;
  color: var(--help-muted);
  font-size: 12px;
  line-height: 1.4;
}

.help-toc a:hover { color: var(--help-green-deep); }
.help-toc a[data-level="3"] { padding-left: 24px; font-size: 11px; }

.help-feedback {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  margin: 0 42px 42px;
  padding: 22px;
  border: 1px solid var(--help-border);
  border-radius: 14px;
  background: #f6f9f7;
}

.help-feedback h2 { margin: 0; color: var(--help-ink); font-size: 17px; }
.help-feedback p { margin: 5px 0 0; color: var(--help-muted); font-size: 13px; }
.help-feedback__actions { display: flex; gap: 8px; }
.help-feedback__actions button { min-width: 74px; padding: 9px 12px; border: 1px solid var(--help-border); border-radius: 9px; background: #fff; color: var(--help-ink); cursor: pointer; font-weight: 700; }
.help-feedback__actions button:hover,
.help-feedback__actions button[aria-pressed="true"] { border-color: var(--help-green); background: #eaf4ee; color: var(--help-green-deep); }
.help-feedback__message { grid-column: 1 / -1; min-height: 18px; margin: 0 !important; }

.help-page a:focus-visible,
.help-page button:focus-visible,
.help-page input:focus-visible {
  outline: 3px solid rgba(47, 125, 84, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .help-page *,
  .help-page *::before,
  .help-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .help-page .site-header__row { grid-template-columns: auto 1fr; }
  .help-page .site-actions { justify-self: end; }
  .help-page .site-nav { grid-column: 1 / -1; grid-row: 2; padding-bottom: 14px; }
  .help-article-grid { grid-template-columns: 205px minmax(0, 1fr); }
  .help-toc { display: none; }
}

@media (max-width: 760px) {
  .help-preview-banner .marketing-shell { display: grid; gap: 2px; }
  .help-hero { padding: 48px 0 54px; }
  .help-hero h1 { font-size: 39px; }
  .help-hero > .marketing-shell > p { font-size: 16px; }
  .help-search-panel { padding: 14px; border-radius: 15px; }
  .help-section { padding: 50px 0; }
  .help-section__heading,
  .help-popular-grid { grid-template-columns: 1fr; gap: 22px; }
  .help-category-grid { grid-template-columns: 1fr; }
  .help-category-card { grid-template-columns: auto 1fr; min-height: 140px; padding: 20px; }
  .help-category-card__count { grid-column: 2; justify-self: start; }
  .help-support-card { align-items: flex-start; flex-direction: column; }
  .help-category-header { padding: 30px 24px; border-radius: 18px; }
  .help-category-layout,
  .help-article-grid { grid-template-columns: 1fr; }
  .help-sidebar { position: static; }
  .help-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-sidebar nav a { display: flex; align-items: center; min-height: 44px; }
  .help-article__header,
  .help-article__content { padding-inline: 24px; }
  .help-article__content table { display: block; overflow-x: auto; }
  .help-feedback { grid-template-columns: 1fr; margin-inline: 24px; }
}

@media (max-width: 520px) {
  .help-page .site-header__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding-inline: 10px;
  }
  .help-page .site-brand img { width: 156px; }
  .help-page .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    flex-wrap: nowrap;
    padding: 0 0 12px;
  }
  .help-page .site-nav a { white-space: nowrap; }
  .help-page .site-actions { min-width: 0; justify-self: end; }
  .help-page .site-actions .button { min-height: 38px; padding-inline: 13px; }
  .help-preview-banner { overflow: hidden; }
  .help-preview-banner .marketing-shell {
    width: 100%;
    min-width: 0;
    padding: 9px 16px;
    overflow-wrap: anywhere;
  }
  .help-hero .marketing-shell,
  .help-section .marketing-shell,
  .help-category-page,
  .help-article-shell { width: 100%; }
  .help-hero .marketing-shell,
  .help-section .marketing-shell { padding-inline: 16px; }
  .help-category-page,
  .help-article-shell { padding-inline: 0; }
  .help-breadcrumbs { padding-inline: 16px; }
  .help-breadcrumbs > * { min-width: 0; overflow-wrap: anywhere; }
  .help-category-header,
  .help-topic-list,
  .help-sidebar,
  .help-article { border-right: 0; border-left: 0; border-radius: 0; }
  .help-category-layout { gap: 16px; }
  .help-sidebar nav { grid-template-columns: 1fr 1fr; }
  .help-sidebar nav a { font-size: 12px; }
  .help-topic-card { padding-inline: 16px; }
  .help-topic-card h3 { font-size: 14px; }
  .help-article__header { padding: 32px 20px 26px; }
  .help-article__header h1 { font-size: 34px; }
  .help-article__header h1,
  .help-category-header h1,
  .help-section h2 { overflow-wrap: anywhere; }
  .help-article__content { padding: 28px 20px 34px; }
  .help-feedback { margin: 0 16px 32px; }
}
