:root {
  color-scheme: dark;
  --help-cyan: #8defff;
  --help-violet: #b062ff;
  --help-ink: #05070a;
  --help-panel: rgba(7, 10, 14, 0.9);
  --help-line: rgba(255, 255, 255, 0.11);
  --help-muted: rgba(255, 255, 255, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--inflict-header-offset, 90px) + 28px);
  background: #000;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 7%, rgba(141, 239, 255, 0.09), transparent 31rem),
    radial-gradient(circle at 88% 16%, rgba(176, 98, 255, 0.1), transparent 34rem),
    linear-gradient(180deg, #000 0, #020305 55%, #000 100%);
  color: rgba(255, 255, 255, 0.84);
  font-family: Archivo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

button,
input {
  font: inherit;
}

a {
  color: var(--help-cyan);
  text-decoration-color: rgba(141, 239, 255, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.help-skip-link {
  position: fixed;
  z-index: 100000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  background: #fff;
  color: #000;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 140ms ease;
}

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

.help-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: calc(var(--inflict-header-offset, 90px) + 42px);
  padding-bottom: 90px;
}

.help-hero {
  position: relative;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(141, 239, 255, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(137deg, rgba(141, 239, 255, 0.075), transparent 48%),
    linear-gradient(315deg, rgba(176, 98, 255, 0.075), transparent 48%),
    rgba(5, 7, 10, 0.92);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
}

.help-hero::before,
.help-hero::after {
  position: absolute;
  width: 190px;
  height: 1px;
  content: "";
}

.help-hero::before {
  top: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, var(--help-violet));
  box-shadow: 0 0 20px rgba(176, 98, 255, 0.85);
}

.help-hero::after {
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--help-cyan), transparent);
  box-shadow: 0 0 20px rgba(141, 239, 255, 0.7);
}

.help-eyebrow {
  margin: 0;
  color: rgba(141, 239, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.help-hero h1 {
  max-width: 860px;
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 840;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.help-lede {
  max-width: 850px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  line-height: 1.58;
}

.help-search {
  max-width: 900px;
  margin-top: 38px;
}

.help-search > label {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
}

.help-search__field {
  display: grid;
  min-height: 64px;
  align-items: center;
  border: 1px solid rgba(141, 239, 255, 0.5);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.68);
  box-shadow: 0 0 0 0 rgba(141, 239, 255, 0);
  grid-template-columns: 54px minmax(0, 1fr) auto;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.help-search__field:focus-within {
  border-color: var(--help-cyan);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 0 4px rgba(141, 239, 255, 0.1), 0 12px 34px rgba(0, 0, 0, 0.38);
}

.help-search__field svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: var(--help-cyan);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.help-search__field input {
  width: 100%;
  height: 62px;
  min-width: 0;
  padding: 0 10px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
}

.help-search__field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.help-search__field input::-webkit-search-cancel-button {
  appearance: none;
}

.help-search__clear {
  min-height: 38px;
  margin-right: 11px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
}

.help-search__clear:hover {
  border-color: #fff;
  color: #fff;
}

.help-search__hint {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.help-search__hint kbd {
  display: inline-block;
  min-width: 21px;
  margin: 0 2px;
  padding: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: center;
}

.help-suggestions {
  display: flex;
  max-width: 900px;
  margin-top: 16px;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.help-suggestions span {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.help-suggestions button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(176, 98, 255, 0.28);
  border-radius: 999px;
  background: rgba(176, 98, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 0.7rem;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.help-suggestions button:hover {
  border-color: var(--help-violet);
  background: rgba(176, 98, 255, 0.15);
  color: #fff;
}

.help-directory,
.help-library {
  margin-top: clamp(62px, 9vw, 108px);
}

.help-directory__disclosure {
  margin: 0;
}

.help-directory__summary {
  display: flex;
  min-height: 78px;
  padding: 13px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(141, 239, 255, 0.16);
  border-radius: 13px;
  background:
    linear-gradient(120deg, rgba(141, 239, 255, 0.045), transparent 48%),
    rgba(5, 7, 10, 0.68);
  color: inherit;
  cursor: pointer;
  gap: 24px;
  list-style: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.help-directory__summary::-webkit-details-marker {
  display: none;
}

.help-directory__summary:hover {
  border-color: rgba(141, 239, 255, 0.48);
  background:
    linear-gradient(120deg, rgba(141, 239, 255, 0.08), transparent 50%),
    rgba(7, 10, 14, 0.9);
}

.help-directory__summary .help-section-heading {
  display: block;
  min-width: 0;
}

.help-directory__title {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.help-directory__toggle {
  display: inline-flex;
  min-width: 126px;
  min-height: 42px;
  padding: 8px 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 98, 255, 0.35);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 750;
  gap: 10px;
}

.help-directory__toggle i {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 150ms ease;
}

.help-directory__disclosure[open] .help-directory__toggle i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.help-directory__toggle-label--hide,
.help-directory__disclosure[open] .help-directory__toggle-label--show {
  display: none;
}

.help-directory__disclosure[open] .help-directory__toggle-label--hide {
  display: inline;
}

.help-directory:has(.help-directory__disclosure:not([open])) {
  margin-top: 34px;
}

.help-directory__disclosure:not([open]) .help-directory__summary {
  min-height: 64px;
  padding-block: 10px;
}

.help-directory__disclosure:not([open]) .help-directory__summary .help-eyebrow {
  display: none;
}

.help-directory__disclosure:not([open]) .help-directory__title {
  margin-top: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.help-directory:has(.help-directory__disclosure:not([open])) + .help-library {
  margin-top: 26px;
}

.help-section-heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

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

.help-category-card {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 21px;
  align-items: start;
  border: 1px solid var(--help-line);
  border-radius: 13px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(141, 239, 255, 0.04), transparent 48%),
    var(--help-panel);
  color: inherit;
  cursor: pointer;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.help-category-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 98, 255, 0.72));
  content: "";
}

.help-category-card:hover,
.help-category-card[aria-pressed="true"] {
  border-color: rgba(141, 239, 255, 0.56);
  background:
    linear-gradient(135deg, rgba(141, 239, 255, 0.09), transparent 52%),
    rgba(8, 12, 17, 0.97);
  transform: translateY(-2px);
}

.help-category-card[aria-pressed="true"] {
  box-shadow: inset 3px 0 var(--help-cyan), 0 16px 40px rgba(0, 0, 0, 0.28);
}

.help-category-card__number {
  padding-top: 1px;
  color: rgba(141, 239, 255, 0.64);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.help-category-card__copy {
  display: block;
}

.help-category-card__copy strong,
.help-category-card__copy small {
  display: block;
}

.help-category-card__copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.help-category-card__copy small {
  max-width: 360px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.52;
}

.help-category-card__count {
  display: inline-flex;
  min-width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 98, 255, 0.3);
  border-radius: 999px;
  color: rgba(215, 175, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
}

.help-library__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.help-all-topics {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(141, 239, 255, 0.35);
  border-radius: 8px;
  background: rgba(141, 239, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 750;
}

.help-all-topics:hover,
.help-all-topics[aria-pressed="true"] {
  border-color: var(--help-cyan);
  background: var(--help-cyan);
  color: #000;
}

.help-result-status {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.help-groups {
  margin-top: 30px;
}

.help-group {
  padding: 42px 0 58px;
  border-top: 1px solid var(--help-line);
}

.help-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.help-group__header {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
}

.help-group__header > span {
  color: rgba(141, 239, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.help-group__header h2 {
  margin: -5px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.help-group__header p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.78rem;
}

.help-article {
  margin-left: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  scroll-margin-top: calc(var(--inflict-header-offset, 90px) + 28px);
}

.help-article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.help-article[open],
.help-article:target {
  border-color: rgba(141, 239, 255, 0.26);
  background: linear-gradient(90deg, rgba(141, 239, 255, 0.045), transparent 68%);
}

.help-article:target {
  box-shadow: inset 2px 0 var(--help-violet);
}

.help-article summary {
  display: grid;
  min-height: 68px;
  padding: 17px 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  grid-template-columns: minmax(0, 1fr) 24px;
  list-style: none;
  transition: color 140ms ease, background 140ms ease;
}

.help-article summary::-webkit-details-marker {
  display: none;
}

.help-article summary:hover {
  color: var(--help-cyan);
  background: rgba(255, 255, 255, 0.02);
}

.help-article summary i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.help-article summary i::before,
.help-article summary i::after {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 150ms ease;
}

.help-article summary i::after {
  transform: rotate(90deg);
}

.help-article[open] summary i::after {
  transform: rotate(0);
}

.help-article__body {
  max-width: 840px;
  padding: 0 56px 24px 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
  line-height: 1.72;
}

.help-article__body p,
.help-article__body ul,
.help-article__body ol {
  margin-top: 0;
  margin-bottom: 13px;
}

.help-article__body p:last-child,
.help-article__body ul:last-child,
.help-article__body ol:last-child {
  margin-bottom: 0;
}

.help-article__body ul,
.help-article__body ol {
  padding-left: 1.25rem;
}

.help-article__body li {
  padding-left: 0.2rem;
}

.help-article__body li + li {
  margin-top: 6px;
}

.help-article__body strong {
  color: rgba(255, 255, 255, 0.92);
}

.help-empty {
  margin-top: 28px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(176, 98, 255, 0.25);
  border-radius: 15px;
  background: rgba(176, 98, 255, 0.045);
  text-align: center;
}

.help-empty h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.help-empty p:not(.help-eyebrow) {
  margin: 10px 0 20px;
  color: var(--help-muted);
}

.help-empty > a {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  border-radius: 8px;
  background: var(--help-cyan);
  color: #000;
  font-weight: 800;
  text-decoration: none;
}

.help-empty > a:hover {
  background: #fff;
  color: #000;
}

.help-contact {
  display: grid;
  margin-top: 40px;
  padding: clamp(30px, 5vw, 52px);
  align-items: center;
  border: 1px solid rgba(141, 239, 255, 0.24);
  border-radius: 17px;
  background:
    linear-gradient(125deg, rgba(141, 239, 255, 0.07), transparent 48%),
    linear-gradient(305deg, rgba(176, 98, 255, 0.08), transparent 52%),
    var(--help-panel);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
}

.help-contact h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.help-contact p:not(.help-eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--help-muted);
  font-size: 0.86rem;
}

.help-contact > a {
  display: flex;
  min-width: 250px;
  min-height: 78px;
  padding: 14px 19px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--help-cyan);
  border-radius: 10px;
  background: var(--help-cyan);
  color: #000;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.help-contact > a:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.help-contact > a span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-contact > a strong {
  margin-top: 3px;
  font-size: 0.95rem;
}

.help-updated {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  text-align: center;
}

@media (max-width: 820px) {
  .help-page {
    width: min(100% - 28px, 1200px);
    padding-top: calc(var(--inflict-header-offset, 82px) + 28px);
  }

  .help-hero {
    border-radius: 16px;
  }

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

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

  .help-contact > a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .help-page {
    width: min(100% - 20px, 1200px);
    padding-bottom: 58px;
  }

  .help-hero {
    padding: 27px 18px;
  }

  .help-search {
    margin-top: 30px;
  }

  .help-search__field {
    min-height: 56px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .help-search__field input {
    height: 54px;
    font-size: 0.88rem;
  }

  .help-search__field svg {
    width: 19px;
    height: 19px;
  }

  .help-search__clear {
    min-height: 34px;
    margin-right: 8px;
    padding: 5px 8px;
  }

  .help-search__hint {
    display: none;
  }

  .help-suggestions {
    margin-top: 13px;
  }

  .help-suggestions span {
    width: 100%;
  }

  .help-directory,
  .help-library {
    margin-top: 62px;
  }

  .help-directory__summary {
    min-height: 72px;
    padding: 12px 13px;
    gap: 12px;
  }

  .help-directory__title {
    font-size: 1.55rem;
  }

  .help-directory__toggle {
    min-width: 42px;
    width: 42px;
    padding: 8px;
  }

  .help-directory__toggle-label {
    display: none !important;
  }

  .help-category-card {
    min-height: 116px;
    padding: 18px 15px;
    grid-template-columns: 31px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .help-library__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .help-all-topics {
    width: 100%;
  }

  .help-group {
    padding: 34px 0 46px;
  }

  .help-group__header {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .help-article {
    margin-left: 0;
  }

  .help-article summary {
    min-height: 64px;
    padding: 15px 11px;
    font-size: 0.84rem;
  }

  .help-article__body {
    padding: 0 34px 22px 11px;
    font-size: 0.81rem;
  }

  .help-contact {
    padding: 27px 19px;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .help-skip-link,
  .help-category-card,
  .help-contact > a,
  .help-article summary i::before,
  .help-article summary i::after {
    transition: none;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  [data-inflict-site-shell],
  .help-skip-link,
  .help-search,
  .help-suggestions,
  .help-category-grid,
  .help-all-topics,
  .help-contact {
    display: none !important;
  }

  .help-page {
    width: 100%;
    padding: 0;
  }

  .help-hero {
    padding: 0 0 24px;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .help-hero h1,
  .help-section-heading h2,
  .help-group__header h2,
  .help-article summary,
  .help-article__body strong {
    color: #000;
  }

  .help-lede,
  .help-group__header p,
  .help-article__body,
  .help-updated {
    color: #222;
  }

  .help-directory {
    display: none;
  }

  .help-library {
    margin-top: 24px;
  }

  .help-group {
    break-before: page;
    border-color: #bbb;
  }

  .help-group:first-child {
    break-before: auto;
  }

  .help-article {
    margin-left: 0;
    border-color: #ccc;
    break-inside: avoid;
  }

  .help-article__body {
    display: block !important;
  }

  .help-article summary i {
    display: none;
  }
}
