:root {
  --help-ink: #17232b;
  --help-muted: #5c6b73;
  --help-line: #dce3e6;
  --help-soft-line: #edf1f2;
  --help-canvas: #fbfcfa;
  --help-surface: #ffffff;
  --help-tint: #fff3ef;
  --help-tint-strong: #ffded6;
  --help-accent: #ff7f6a;
  --help-accent-dark: #8f2f22;
  --help-teal: #237f7a;
  --help-teal-soft: #e7f5f3;
  --help-yellow: #fff7d6;
  --help-yellow-line: #e5c55a;
  --help-red-soft: #fff0ed;
  --help-red-line: #db6957;
  --help-blue-soft: #edf5ff;
  --help-blue-line: #78a8dd;
  --help-shadow: 0 18px 60px rgba(23, 35, 43, 0.08);
  --help-radius: 18px;
  --help-radius-sm: 11px;
  --help-content: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.help-body {
  margin: 0;
  color: var(--help-ink);
  background: var(--help-canvas);
  font-family: "Figtree", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.help-body a {
  color: inherit;
}

.help-body img,
.help-body svg {
  display: block;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.help-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e86551;
  background: rgba(255, 127, 106, 0.97);
  backdrop-filter: blur(18px);
}

.help-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(320px, 560px) minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
  width: min(1480px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
}

.help-brand {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
  min-width: 0;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.help-brand img {
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.help-brand__name {
  padding-right: 11px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.help-brand__context {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.help-header__actions {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
}

.help-header__back,
.help-header__back:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.help-header__back:hover {
  color: #fff !important;
  opacity: 0.78;
}

.help-header__back svg {
  color: #fff;
  stroke: currentColor;
}

.help-header__back svg,
.help-menu-button svg {
  width: 18px;
  height: 18px;
}

.help-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
}

.search-shell {
  position: relative;
  width: 100%;
}

.search-shell__field {
  position: relative;
  display: flex;
  align-items: center;
}

.search-shell__icon {
  position: absolute;
  left: 16px;
  width: 19px;
  height: 19px;
  color: #728087;
  pointer-events: none;
}

.help-search-input {
  width: 100%;
  min-height: 46px;
  padding: 11px 54px 11px 45px;
  color: var(--help-ink);
  background: #f5f7f6;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  font: inherit;
  line-height: 1.3;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.help-search-input::placeholder {
  color: #728087;
}

.help-search-input:focus {
  background: #fff;
  border-color: var(--help-accent);
  box-shadow: 0 0 0 4px rgba(232, 95, 73, 0.12);
}

.search-shell__key {
  position: absolute;
  right: 10px;
  padding: 3px 7px;
  color: #728087;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 400;
  overflow: hidden;
  max-height: min(336px, calc(100vh - 110px));
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 15px;
  box-shadow: var(--help-shadow);
}

.search-results[hidden] {
  display: none;
}

.search-result {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-height: 112px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--help-soft-line);
  text-decoration: none;
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover,
.search-result.is-active {
  background: var(--help-tint);
}

.search-result__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--help-accent-dark);
  background: var(--help-tint-strong);
  border-radius: 10px;
}

.search-result__icon svg {
  width: 18px;
  height: 18px;
}

.search-result__title,
.search-result__excerpt,
.search-result__meta {
  display: block;
}

.search-result__title {
  color: var(--help-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.search-result__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 3px;
  color: var(--help-muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-result__meta {
  margin-top: 6px;
  color: #7b898f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.search-result mark {
  color: inherit;
  background: #ffe7a8;
  border-radius: 2px;
}

.search-results__empty {
  padding: 28px 22px;
  text-align: center;
}

.search-results__empty strong,
.search-results__empty span {
  display: block;
}

.search-results__empty span {
  margin-top: 4px;
  color: var(--help-muted);
  font-size: 14px;
}

.help-hero {
  position: relative;
  z-index: 20;
  overflow: visible;
  padding: 88px 24px 92px;
  background: linear-gradient(135deg, #ff7f6a 0%, #ff9c88 52%, #ffd4ca 100%);
  border-bottom: 1px solid #ee9a89;
}

.help-hero::before,
.help-hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  opacity: 0.5;
}

.help-hero::before {
  top: -210px;
  left: -80px;
  background: rgba(255, 255, 255, 0.6);
}

.help-hero::after {
  right: -110px;
  bottom: 0;
  background: rgba(231, 245, 243, 0.7);
}

.help-hero__inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--help-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--help-accent);
  border-radius: 50%;
  content: "";
}

.help-hero h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--help-ink);
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.help-hero p {
  max-width: 610px;
  margin: 20px auto 30px;
  color: #52362f;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.help-hero .search-shell {
  width: min(680px, 100%);
  margin: 0 auto;
  text-align: left;
}

.help-hero .help-search-input {
  min-height: 62px;
  padding-left: 52px;
  background: #fff;
  border-color: rgba(220, 227, 230, 0.9);
  border-radius: 15px;
  box-shadow: 0 14px 40px rgba(79, 45, 36, 0.1);
  font-size: 17px;
}

.help-hero .search-shell__icon {
  left: 19px;
  width: 21px;
  height: 21px;
}

.hero-search-hint {
  margin-top: 14px;
  color: #57362f;
  font-size: 13px;
  font-weight: 650;
}

.help-home-main {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 90px;
}

.home-section + .home-section {
  margin-top: 80px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-heading p {
  max-width: 500px;
  margin: 8px 0 0;
  color: var(--help-muted);
}

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

.start-card,
.category-card,
.popular-card {
  position: relative;
  display: block;
  color: var(--help-ink);
  background: #fff;
  border: 1px solid var(--help-line);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.start-card:hover,
.category-card:hover,
.popular-card:hover {
  border-color: #f0ae9f;
  box-shadow: 0 14px 35px rgba(23, 35, 43, 0.08);
  transform: translateY(-3px);
}

.start-card {
  min-height: 210px;
  padding: 26px;
  border-radius: var(--help-radius);
}

.start-card:first-child {
  background: linear-gradient(145deg, #ffded6, #fff4f0);
  border-color: #ed9b8a;
}

.start-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  color: var(--help-accent-dark);
  background: var(--help-tint-strong);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.start-card h3,
.category-card h3,
.popular-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

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

.card-arrow {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--help-accent-dark);
}

.card-arrow svg {
  width: 20px;
  height: 20px;
}

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

.category-card {
  min-height: 180px;
  padding: 24px;
  border-radius: var(--help-radius);
}

.category-card:first-child {
  grid-column: auto;
  background: #fff;
  border-color: var(--help-line);
}

.category-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 25px;
  color: var(--help-accent-dark);
  background: var(--help-tint);
  border: 1px solid rgba(243, 111, 91, 0.2);
  border-radius: 12px;
}

.category-card__icon svg {
  width: 22px;
  height: 22px;
}

.category-card__count {
  display: inline-block;
  margin-top: 14px;
  color: #718087;
  font-size: 12px;
  font-weight: 700;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.popular-card {
  display: grid;
  grid-template-columns: 32px 1fr 22px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 17px 19px;
  border-radius: 14px;
}

.popular-card__icon {
  color: var(--help-accent);
}

.popular-card__icon svg,
.popular-card__arrow svg {
  width: 20px;
  height: 20px;
}

.popular-card h3 {
  font-size: 15px;
}

.popular-card p {
  margin-top: 2px;
  font-size: 12px;
}

.popular-card__arrow {
  color: #839097;
}

.support-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  padding: 36px;
  color: var(--help-ink);
  background: linear-gradient(135deg, #ffd9d0 0%, #ffad9d 100%);
  border-radius: 24px;
}

.support-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.support-panel p {
  margin: 10px 0 0;
  color: #583b35;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.support-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  color: #432c27;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(143, 47, 34, 0.18);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.support-action:hover {
  background: rgba(255, 255, 255, 0.78);
}

.support-action span:last-child {
  color: #775049;
  font-size: 11px;
}

.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, var(--help-content)) 210px;
  justify-content: center;
  gap: 58px;
  width: min(1460px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 96px;
}

.help-sidebar,
.article-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 126px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.help-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.help-sidebar__top strong {
  font-size: 14px;
}

.help-sidebar__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--help-ink);
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 9px;
}

.help-sidebar__close svg {
  width: 18px;
  height: 18px;
}

.help-nav-group + .help-nav-group {
  margin-top: 25px;
}

.help-nav-group__label {
  margin: 0 0 7px 12px;
  color: #89969b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-nav-group ul,
.article-toc ul,
.related-list,
.article-meta,
.breadcrumb,
.help-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-nav-group a {
  display: block;
  padding: 8px 11px;
  color: var(--help-muted);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.help-nav-group a:hover {
  color: var(--help-ink);
  background: #f1f4f3;
}

.help-nav-group a[aria-current="page"] {
  color: var(--help-accent-dark);
  background: #ffd2c8;
  box-shadow: inset 4px 0 0 var(--help-accent);
  font-weight: 750;
}

.sidebar-overlay {
  display: none;
}

.help-home-body > .help-sidebar,
.help-home-body > .sidebar-overlay {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 28px;
  color: #718087;
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
  scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb > li,
.breadcrumb > li > a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  height: 20px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  vertical-align: middle;
  white-space: nowrap;
}

.breadcrumb a {
  color: var(--help-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--help-accent-dark);
}

.breadcrumb > li > svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #a0aaae;
  transform: translateY(0);
}

.article-header {
  position: relative;
  padding: 30px 30px 32px;
  background: linear-gradient(135deg, #ffe0d8 0%, #fff7f4 72%);
  border: 1px solid #efb1a3;
  border-left: 6px solid var(--help-accent);
  border-radius: 18px;
}

.article-header::after {
  display: none;
}

.article-kicker {
  margin: 0 0 11px;
  color: var(--help-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0;
  color: var(--help-ink);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.article-outcome {
  margin: 20px 0 0;
  color: var(--help-muted);
  font-size: 19px;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 18px;
  overflow-x: auto;
  margin-top: 24px;
  color: #718087;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  scrollbar-width: none;
}

.article-meta::-webkit-scrollbar {
  display: none;
}

.article-meta li {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
}

.article-meta svg {
  width: 15px;
  height: 15px;
}

.article-content > section {
  padding-top: 52px;
}

.article-content h2 {
  margin: 0 0 20px;
  color: var(--help-ink);
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.article-content h3 {
  margin: 32px 0 12px;
  color: var(--help-ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.article-content p {
  margin: 0 0 18px;
  color: #3f4f57;
}

.article-content a:not(.related-card) {
  color: var(--help-accent-dark);
  font-weight: 700;
  text-decoration-color: rgba(184, 60, 42, 0.35);
  text-underline-offset: 3px;
}

.article-content ul:not(.related-list):not(.article-meta):not(.breadcrumb),
.article-content ol:not(.steps):not(.breadcrumb) {
  margin: 0 0 22px;
  padding-left: 23px;
  color: #3f4f57;
}

.article-content ul:not(.related-list):not(.article-meta):not(.breadcrumb) > li + li,
.article-content ol:not(.steps):not(.breadcrumb) > li + li {
  margin-top: 8px;
}

.steps {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: help-step;
}

.steps > li {
  position: relative;
  min-height: 46px;
  padding: 2px 0 25px 58px;
  counter-increment: help-step;
}

.steps > li::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--help-accent-dark);
  background: var(--help-tint-strong);
  border-radius: 50%;
  content: counter(help-step);
  font-size: 14px;
  font-weight: 800;
}

.steps > li:not(:last-child)::after {
  position: absolute;
  top: 39px;
  bottom: 0;
  left: 18px;
  width: 1px;
  background: #f1c8bd;
  content: "";
}

.steps strong {
  color: var(--help-ink);
}

.ui-label {
  display: inline;
  padding: 1px 5px;
  color: #25343b;
  background: #f1f4f3;
  border: 1px solid #dfe5e6;
  border-radius: 5px;
  font-size: 0.92em;
  font-weight: 720;
  white-space: nowrap;
}

.callout {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  margin: 26px 0;
  padding: 20px;
  background: var(--help-blue-soft);
  border: 1px solid var(--help-blue-line);
  border-radius: 13px;
}

.callout--important {
  background: var(--help-yellow);
  border-color: var(--help-yellow-line);
}

.callout--warning {
  background: var(--help-red-soft);
  border-color: var(--help-red-line);
}

.callout--success {
  background: var(--help-teal-soft);
  border-color: #79bbb6;
}

.callout__icon {
  color: #416f9e;
}

.callout--important .callout__icon {
  color: #9a7612;
}

.callout--warning .callout__icon {
  color: #b34331;
}

.callout--success .callout__icon {
  color: var(--help-teal);
}

.callout__icon svg {
  width: 24px;
  height: 24px;
}

.callout strong {
  display: block;
  margin-bottom: 3px;
  color: var(--help-ink);
  font-size: 15px;
}

.callout p {
  margin: 0;
  color: #45555d;
  font-size: 14px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.status-item {
  padding: 15px 16px;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 11px;
}

.status-item strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: var(--help-ink);
  font-size: 14px;
}

.status-item strong::before {
  width: 7px;
  height: 7px;
  background: var(--help-accent);
  border-radius: 50%;
  content: "";
}

.status-item p {
  margin: 0;
  color: var(--help-muted);
  font-size: 13px;
  line-height: 1.5;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.comparison-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 13px;
}

.comparison-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--help-accent-dark);
  background: var(--help-tint-strong);
  border-radius: 10px;
}

.comparison-card__icon svg {
  width: 19px;
  height: 19px;
}

.comparison-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.comparison-card p {
  margin: 0;
  font-size: 14px;
}

.help-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--help-line);
  border-radius: 13px;
}

.help-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.help-table th,
.help-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--help-soft-line);
}

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

.help-table th {
  color: var(--help-ink);
  background: #f4f7f6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.help-table td {
  color: #45555d;
}

.screenshot-placeholder {
  overflow: hidden;
  margin: 30px 0;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23, 35, 43, 0.06);
}

.screenshot-placeholder__stage {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 290px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff5f2, #f4ece9);
  border-bottom: 1px solid var(--help-line);
}

.screenshot-placeholder__sidebar {
  padding: 22px 14px;
  background: #fff;
  border-right: 1px solid var(--help-line);
}

.screenshot-placeholder__logo {
  width: 38px;
  height: 9px;
  margin-bottom: 30px;
  background: var(--help-accent);
  border-radius: 4px;
}

.screenshot-placeholder__line {
  height: 8px;
  margin-bottom: 12px;
  background: #dde5e6;
  border-radius: 4px;
}

.screenshot-placeholder__line:nth-child(3) {
  width: 70%;
}

.screenshot-placeholder__line:nth-child(4) {
  width: 86%;
}

.screenshot-placeholder__workspace {
  padding: 25px;
}

.screenshot-placeholder__bar {
  width: 42%;
  height: 13px;
  margin-bottom: 20px;
  background: #cbd7d8;
  border-radius: 6px;
}

.screenshot-placeholder__cards {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 15px;
  height: 176px;
}

.screenshot-placeholder__card {
  position: relative;
  background: #fff;
  border: 1px solid #dce3e4;
  border-radius: 12px;
}

.screenshot-placeholder__card::before,
.screenshot-placeholder__card::after {
  position: absolute;
  left: 18px;
  height: 8px;
  background: #dbe3e4;
  border-radius: 4px;
  content: "";
}

.screenshot-placeholder__card::before {
  top: 22px;
  width: 45%;
}

.screenshot-placeholder__card::after {
  top: 43px;
  width: 70%;
}

.screenshot-placeholder__annotation {
  position: absolute;
  right: 26px;
  bottom: 25px;
  padding: 8px 12px;
  color: #fff;
  background: var(--help-accent);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(184, 60, 42, 0.25);
}

.screenshot-placeholder figcaption {
  padding: 17px 20px 19px;
}

.screenshot-placeholder figcaption span,
.screenshot-placeholder figcaption strong {
  display: block;
}

.screenshot-placeholder figcaption span {
  margin-bottom: 3px;
  color: var(--help-accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screenshot-placeholder figcaption strong {
  font-size: 14px;
}

.screenshot-placeholder figcaption p {
  margin: 3px 0 0;
  color: var(--help-muted);
  font-size: 12px;
}

.help-screenshot {
  overflow: hidden;
  margin: 30px 0;
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23, 35, 43, 0.06);
}

.help-screenshot--compact {
  width: min(100%, 360px);
}

.help-screenshot__link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f2f0;
  border-bottom: 1px solid var(--help-line);
}

.help-screenshot__link::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(38, 42, 45, 0.78);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
  content: "Open full size ↗";
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.help-screenshot__link:hover::after,
.help-screenshot__link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.help-screenshot__link:focus-visible {
  outline: 3px solid rgba(255, 127, 106, 0.4);
  outline-offset: -3px;
}

.help-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.help-screenshot figcaption {
  padding: 17px 20px 19px;
}

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

.help-screenshot figcaption span {
  margin-bottom: 3px;
  color: var(--help-accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-screenshot figcaption strong {
  color: var(--help-ink);
  font-size: 14px;
}

.help-screenshot figcaption p {
  margin: 3px 0 0;
  color: var(--help-muted);
  font-size: 12px;
}

.help-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.help-screenshot-grid .help-screenshot {
  margin: 0;
}

.help-screenshot-grid .help-screenshot:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.help-screenshot-grid .help-screenshot__link {
  display: flex;
  align-items: center;
  min-height: 210px;
}

.help-screenshot-grid .help-screenshot img {
  max-height: 430px;
  object-fit: contain;
}

.article-keywords {
  margin-top: 48px;
  padding-top: 22px;
  color: #738087;
  border-top: 1px solid var(--help-line);
  font-size: 12px;
}

.article-keywords strong {
  color: var(--help-muted);
}

.related-articles {
  margin-top: 28px;
  padding-top: 42px;
  border-top: 1px solid var(--help-line);
}

.related-articles h2 {
  margin: 0 0 18px;
  font-size: 25px;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.related-card {
  display: grid;
  grid-template-columns: 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 15px 16px;
  color: var(--help-ink);
  background: #fff;
  border: 1px solid var(--help-line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
  text-decoration: none;
}

.related-card:hover {
  color: var(--help-accent-dark);
  border-color: #efb4a6;
}

.related-card svg {
  width: 17px;
  height: 17px;
}

.article-toc {
  padding-left: 22px;
  border-left: 2px solid #f2c7bd;
}

.article-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 5px 0;
  color: #718087;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 140ms ease;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: var(--help-accent-dark);
}

.article-toc a.is-active {
  font-weight: 750;
}

.help-footer {
  padding: 46px 24px;
  color: #c5ced2;
  background: #111b20;
  border-top: 4px solid var(--help-accent);
}

.help-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.help-footer__brand {
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.help-footer__note {
  margin-top: 3px;
  font-size: 12px;
}

.help-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.help-footer__links a {
  color: #c5ced2;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.help-footer__links a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  max-width: 320px;
  padding: 13px 16px;
  color: #fff;
  background: var(--help-ink);
  border-radius: 10px;
  box-shadow: var(--help-shadow);
  font-size: 13px;
  font-weight: 650;
}

.toast[hidden] {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(232, 95, 73, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1260px) {
  .help-header__inner {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr) auto;
  }

  .article-shell {
    grid-template-columns: 235px minmax(0, var(--help-content));
    gap: 46px;
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  .help-header__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    width: min(100% - 30px, 760px);
    min-height: 66px;
    padding-top: calc(12px + env(safe-area-inset-top));
  }

  .help-header .search-shell {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 12px;
  }

  .help-header__back {
    display: none;
  }

  .help-menu-button {
    display: inline-flex;
  }

  .search-shell__key {
    display: none;
  }

  .start-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card:first-child {
    grid-column: auto;
  }

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

  .article-shell {
    display: block;
    width: min(760px, calc(100% - 38px));
    padding-top: 32px;
  }

  .help-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 320;
    width: min(330px, calc(100% - 46px));
    max-height: none;
    padding: 23px 20px 40px;
    background: #fff;
    box-shadow: 18px 0 50px rgba(23, 35, 43, 0.18);
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .help-sidebar.is-open {
    transform: translateX(0);
  }

  .help-sidebar__close {
    display: inline-flex;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 310;
    display: block;
    visibility: hidden;
    background: rgba(16, 27, 32, 0.42);
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .sidebar-overlay.is-visible {
    visibility: visible;
    opacity: 1;
  }

  .help-home-body > .help-sidebar,
  .help-home-body > .sidebar-overlay {
    display: block;
  }

  body.has-open-sidebar {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .help-header__inner {
    width: calc(100% - 24px);
  }

  .help-brand__context {
    display: none;
  }

  .help-brand__name {
    border-right: 0;
  }

  .help-hero {
    padding: 64px 18px 68px;
  }

  .help-hero h1 {
    font-size: 42px;
  }

  .help-hero p {
    margin-top: 16px;
    font-size: 17px;
  }

  .help-hero .help-search-input {
    min-height: 58px;
    padding-right: 18px;
    font-size: 16px;
  }

  .help-home-main {
    width: calc(100% - 30px);
    padding-top: 52px;
  }

  .home-section + .home-section {
    margin-top: 60px;
  }

  .section-heading {
    display: block;
  }

  .start-grid,
  .category-grid,
  .popular-grid,
  .support-actions,
  .status-grid,
  .comparison-grid,
  .related-list {
    grid-template-columns: 1fr;
  }

  .category-card:first-child {
    grid-column: auto;
  }

  .start-card {
    min-height: 180px;
  }

  .support-panel {
    padding: 26px 21px;
  }

  .article-shell {
    width: calc(100% - 30px);
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .article-header h1 {
    font-size: 39px;
  }

  .article-outcome {
    font-size: 17px;
  }

  .article-meta {
    gap: 10px;
    font-size: 11px;
  }

  .article-content > section {
    padding-top: 44px;
  }

  .article-content h2 {
    font-size: 27px;
  }

  .steps > li {
    padding-left: 51px;
  }

  .screenshot-placeholder__stage {
    grid-template-columns: 72px 1fr;
    min-height: 235px;
  }

  .screenshot-placeholder__sidebar {
    padding: 18px 10px;
  }

  .screenshot-placeholder__workspace {
    padding: 18px 13px;
  }

  .screenshot-placeholder__cards {
    grid-template-columns: 1fr;
    height: 150px;
  }

  .screenshot-placeholder__card:nth-child(2) {
    display: none;
  }

  .screenshot-placeholder__annotation {
    right: 14px;
    bottom: 18px;
  }

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

  .help-screenshot-grid .help-screenshot:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .help-screenshot-grid .help-screenshot__link {
    min-height: 0;
  }

  .help-footer__inner {
    display: block;
  }

  .help-footer__links {
    margin-top: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .help-header,
  .help-sidebar,
  .article-toc,
  .help-footer,
  .related-articles {
    display: none !important;
  }

  body.help-body {
    background: #fff;
  }

  .article-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .article-content {
    max-width: none;
  }
}
