:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #57595d;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #fafafa;
  --hero: #111418;
  --accent: #ff9d00;
  --accent-dark: #df8500;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 0 !important;
}

a {
  color: inherit;
}

.help-header {
  align-items: center;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 3.2vw;
  position: relative;
  top: 0;
  z-index: 3;
}

.feedops-logo {
  align-items: flex-end;
  display: inline-flex;
  text-decoration: none;
}

.feedops-logo img {
  display: block;
  height: auto;
  width: clamp(138px, 14vw, 170px);
}

.header-tools {
  align-items: center;
  display: flex;
  gap: 1.65rem;
}

.header-tools a,
.language-button {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.language-button,
.external-link {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: 0.55rem;
  padding: 0;
}

.language-button {
  cursor: default;
}

.header-tools svg {
  fill: none;
  height: 1.05rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.05rem;
}

.header-divider {
  background: #b9b9b9;
  display: block;
  height: 36px;
  width: 1px;
}

.support-button {
  border: 1px solid #8d8d8d;
  border-radius: 5px;
  display: inline-flex;
  padding: 0.9rem 1.18rem;
  white-space: nowrap;
}

.help-hero {
  background: var(--hero);
  background-image:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, #15181c 0%, #0f1215 100%);
  color: #fff;
  min-height: 398px;
  padding: 3.05rem 5vw 3.8rem;
}

.hero-inner {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.hero-kicker {
  color: var(--accent);
  font-size: clamp(1.05rem, 2.2vw, 1.52rem);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  margin: 0 0 2rem;
}

.hero-search {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr) 122px;
  margin: 0 auto;
  max-width: 742px;
}

.search-field {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  min-height: 76px;
  padding: 0 1.4rem;
}

.search-field svg {
  fill: none;
  flex: 0 0 auto;
  height: 2rem;
  margin-right: 1rem;
  stroke: #f4f4f4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 2rem;
}

.search-field input {
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 1.38rem;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.hero-search button {
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-search button:hover {
  background: var(--accent-dark);
}

.home-shell {
  margin: 0 auto;
  padding: 4.15rem 0 5.2rem;
  width: min(1212px, calc(100% - 10vw));
}

.quick-links {
  display: grid;
  gap: clamp(1.4rem, 3.6vw, 3.2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 4.75rem;
}

.quick-link {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 112px minmax(0, 1fr) 28px;
  min-height: 118px;
  text-decoration: none;
}

.quick-icon {
  align-items: center;
  background: #fff5e8;
  border-radius: 999px;
  display: inline-flex;
  height: 112px;
  justify-content: center;
  width: 112px;
}

.quick-icon svg {
  fill: none;
  height: 54px;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 54px;
}

.quick-copy {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.quick-copy strong {
  font-size: 1.62rem;
  line-height: 1.22;
}

.quick-copy span {
  color: #3f4144;
  font-size: 1.02rem;
  line-height: 1.55;
}

.quick-arrow {
  fill: none;
  height: 2.1rem;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  width: 2.1rem;
}

.quick-link:hover .quick-copy strong,
.doc-link:hover {
  color: #000;
}

.docs-area {
  border-top: 1px solid #d7d7d7;
  padding-top: 2.55rem;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  margin: 0 0 0.35rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.doc-grid {
  column-gap: 7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1.9rem;
}

.doc-link {
  align-items: center;
  color: #333;
  display: grid;
  font-size: 1.05rem;
  gap: 1rem;
  grid-template-columns: 28px minmax(0, 1fr);
  line-height: 1.35;
  text-underline-offset: 0.16em;
}

.doc-link svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  width: 26px;
}

.article-page {
  background: var(--paper);
  border-radius: 7px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 850px;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.article-page h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.04;
  margin: 0 0 1rem;
}

.article-meta {
  color: var(--accent-dark);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.article-page .article-body {
  color: #2e3a45;
  font-size: 1.03rem;
  line-height: 1.75;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
  margin: 1.6rem 0 0.5rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
}

.article-body a {
  color: #1d4ed8;
  font-weight: 700;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  color: #3f4144;
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
}

.article-body figure {
  margin: 1.6rem 0;
}

.article-body img {
  border: 1px solid var(--line);
  border-radius: 7px;
  display: block;
  height: auto;
  max-width: 100%;
}

.article-body figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.55rem;
}

.back-link {
  color: var(--accent-dark);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 1.4rem;
  text-decoration: none;
}

.empty {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 7px;
  color: var(--muted);
  padding: 2rem;
  text-align: center;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.article-active .help-hero,
.article-active .quick-links {
  display: none;
}

.article-active .home-shell {
  padding-top: 3rem;
}

@media (max-width: 1340px) {
  .quick-links {
    gap: 3.2rem 3.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-link {
    grid-template-columns: 112px minmax(0, 1fr) 28px;
    min-height: 132px;
  }
}

@media (max-width: 760px) {
  .help-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    padding-bottom: 1.3rem;
    padding-top: 1.3rem;
  }

  .header-tools {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
  }

  .header-divider {
    display: none;
  }

  .support-button {
    padding: 0.65rem 0.85rem;
  }

  .help-hero {
    min-height: 0;
    padding: 2.8rem 5vw;
  }

  h1 {
    font-size: 36px;
  }

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

  .hero-search button,
  .search-field {
    min-height: 64px;
  }

  .search-field input {
    font-size: 1.05rem;
  }

  .home-shell {
    padding-top: 2.6rem;
  }

  .quick-link {
    align-items: flex-start;
    gap: 1rem;
    grid-template-columns: 74px minmax(0, 1fr) 24px;
    min-height: 0;
  }

  .quick-icon {
    height: 74px;
    width: 74px;
  }

  .quick-icon svg {
    height: 36px;
    width: 36px;
  }

  .quick-copy strong {
    font-size: 1.32rem;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .feedops-logo {
    max-width: 145px;
  }

  .quick-arrow {
    display: none;
  }
}
