:root {
  --help-ink: #0f1728;
  --help-muted: #667085;
  --help-blue: #0b72e7;
  --help-line: #e3e8ef;
  --help-soft: #f4f7fb;
}

.help-hub-page,
.help-article-page {
  background: #fff;
  color: var(--help-ink);
}

.help-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: #8992a3;
  font-size: 13px;
}

.help-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.help-breadcrumbs a:hover { color: var(--help-blue); }

.help-kicker,
.help-card-category {
  margin: 0;
  color: var(--help-blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
}

.help-hub-hero,
.help-article-hero {
  padding: 54px 0 62px;
  border-bottom: 1px solid var(--help-line);
}

.help-hub-hero h1,
.help-article-hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-size: clamp(44px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.help-hub-hero > .shell > p:last-child,
.help-article-deck {
  max-width: 720px;
  margin: 0;
  color: var(--help-muted);
  font-size: 19px;
  line-height: 1.48;
}

.help-ai-ask {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(71, 78, 181, .42), transparent 38%),
    radial-gradient(circle at 4% 22%, rgba(15, 67, 116, .42), transparent 34%),
    linear-gradient(135deg, #071426 0%, #0b1528 48%, #171d42 100%);
}

.help-ai-intro {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.help-ai-intro h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 650;
  line-height: 1.01;
  letter-spacing: -.052em;
}

.help-ai-intro > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #72b8ff;
  font-size: 18px;
  line-height: 1.45;
}

.help-ai-ask .help-kicker {
  color: #72b8ff;
}

.help-ai-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 10px;
  width: 100%;
  padding: 8px 9px 8px 24px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 5, 18, .28);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.help-ai-form > .visually-hidden { display: none; }

.help-ai-form:focus-within {
  border-color: #72b8ff;
  box-shadow: 0 24px 64px rgba(0, 5, 18, .34), 0 0 0 3px rgba(114, 184, 255, .14);
}

.help-ai-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--help-ink);
  background: transparent;
  font: inherit;
  font-size: 17px;
}

.help-ai-form input::placeholder { color: #98a2b3; }

.help-ai-form button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--help-blue);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.help-ai-form button:hover { background: #0868d2; transform: translateX(1px); }
.help-ai-form button:disabled { cursor: wait; opacity: .5; transform: none; }

.help-ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 18px;
}

.help-ai-suggestions button {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .09);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.help-ai-suggestions button:hover {
  border-color: rgba(114, 184, 255, .7);
  color: #fff;
  background: rgba(114, 184, 255, .18);
}

.help-ai-privacy {
  max-width: 980px;
  margin: 18px auto 0;
  color: rgba(211, 221, 236, .55);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.help-ai-status {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.help-ai-status[data-tone="loading"]::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 1px 0;
  border-radius: 50%;
  background: var(--help-blue);
  content: "";
  animation: help-ai-pulse 1s ease-in-out infinite alternate;
}

.help-ai-status[data-tone="error"] { color: #ffb5b5; }

@keyframes help-ai-pulse { to { opacity: .3; transform: scale(.78); } }

.help-ai-answer {
  max-width: 980px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 26px;
  outline: 0;
  background: #fff;
  box-shadow: 0 20px 54px rgba(24, 50, 86, .07);
}

.help-ai-answer > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px 18px 26px;
  border-bottom: 1px solid #e8edf3;
  background: #f8fafc;
}

.help-ai-answer > header p {
  margin: 0;
  color: #596579;
  font-size: 14px;
  line-height: 1.45;
}

.help-ai-answer > header button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #7c8798;
  background: transparent;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.help-ai-answer > header button:hover { color: var(--help-ink); background: #edf1f6; }

.help-ai-answer-body {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 30px 24px;
}

.help-ai-answer-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #edf5ff;
}

.help-ai-answer-mark img { width: 24px; height: 24px; object-fit: contain; }

.help-ai-answer-body p {
  margin: 0;
  color: #293345;
  font-size: 17px;
  line-height: 1.65;
  white-space: pre-line;
}

.help-ai-answer-body a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--help-blue);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.help-ai-collapse {
  margin: 0 30px 24px 92px;
  padding: 0;
  border: 0;
  color: #7a8596;
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.help-ai-collapse:hover { color: var(--help-blue); }

.help-ai-reveal {
  margin-top: 22px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.help-ai-reveal:hover { color: #fff; border-color: rgba(114, 184, 255, .7); }

.help-hub-library { padding: 76px 0 96px; }

.help-hub-library > .shell > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.help-hub-library h2,
.help-related h2,
.help-hub-note h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.help-hub-library header p {
  margin: 0;
  color: var(--help-muted);
  font-size: 16px;
}

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

.help-card,
.help-related-card {
  min-width: 0;
  border: 1px solid var(--help-line);
  border-radius: 24px;
  background: #fff;
}

.help-card > a,
.help-related-card > a {
  display: flex;
  min-height: 260px;
  padding: 30px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.help-card h3,
.help-related-card h3 {
  margin: 28px 0 12px;
  max-width: 520px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.help-card p,
.help-related-card p {
  max-width: 570px;
  margin: 0;
  color: var(--help-muted);
  font-size: 16px;
  line-height: 1.5;
}

.help-card-meta {
  margin-top: auto;
  padding-top: 26px;
  color: var(--help-blue);
  font-size: 14px;
  font-weight: 720;
}

.help-card:hover,
.help-related-card:hover {
  border-color: #b8d5f5;
  box-shadow: 0 18px 44px rgba(25, 58, 100, .08);
}

.help-hub-note { background: var(--help-soft); }

.help-hub-note > .shell {
  padding-block: 88px 82px;
}

.help-note-disclosure summary {
  display: grid;
  justify-items: center;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

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

.help-hub-note h2 {
  max-width: 860px;
  margin: 0;
  color: var(--help-ink);
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -.042em;
}

.help-note-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  margin-top: 38px;
  border: 1px solid #d7dee8;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(36, 53, 82, .05);
}

.help-note-toggle::before,
.help-note-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--help-ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.help-note-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.help-note-disclosure[open] .help-note-toggle::after { transform: translate(-50%, -50%) rotate(0); }

.help-note-copy {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
}

.help-note-copy p {
  margin: 0;
  color: var(--help-muted);
  font-size: 18px;
  line-height: 1.58;
}

.help-support { padding: 64px 0 84px; background: var(--help-soft); }

.help-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid var(--help-line);
  border-radius: 26px;
  background: #fff;
}

.help-support-copy { display: flex; min-width: 0; align-items: center; gap: 22px; }

.help-support-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #2189e8, #126bc7);
  box-shadow: 0 15px 34px -18px rgba(18, 107, 199, .7);
}

.help-support-icon svg { width: 25px; height: 25px; stroke-width: 1.65; }
.help-support h2 { margin: 6px 0 7px; font-size: 27px; line-height: 1.12; letter-spacing: -.035em; }
.help-support-copy > div > p:last-child { max-width: 650px; margin: 0; color: var(--help-muted); font-size: 15px; line-height: 1.5; }

.help-support-link {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--help-blue);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.help-support-link:hover { background: #0868d2; transform: translateY(-1px); }

.help-article-hero { padding-bottom: 56px; }
.help-article-hero h1 { max-width: 900px; font-size: clamp(42px, 4.2vw, 62px); }

.help-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
  color: #7b8493;
  font-size: 14px;
}

.help-ai-mark { display: inline-flex; align-items: center; gap: 10px; color: var(--help-ink); }
.help-ai-mark img { width: 34px; height: 34px; object-fit: contain; }
.help-ai-mark span { display: grid; gap: 2px; }
.help-ai-mark strong { font-size: 14px; }
.help-ai-mark small { color: var(--help-muted); font-size: 12px; }

.help-article-visual {
  display: flex;
  min-height: 330px;
  margin-top: 48px;
  padding: 54px 58px;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at 72% 22%, rgba(35, 127, 237, .72), transparent 34%), linear-gradient(125deg, #0b1020 0%, #10294d 100%);
}

.help-article-visual div { display: grid; gap: 10px; }
.help-article-visual span { color: #96c7ff; font-size: 14px; font-weight: 750; }
.help-article-visual strong { max-width: 560px; font-size: 38px; line-height: 1.04; letter-spacing: -.04em; }
.help-article-visual img { width: 112px; height: 112px; padding: 22px; border-radius: 30px; background: rgba(255,255,255,.92); object-fit: contain; }

.help-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 280px);
  justify-content: space-between;
  gap: 70px;
  padding-top: 82px;
  padding-bottom: 96px;
}

.help-article-body { min-width: 0; }
.help-article-body > section + section { margin-top: 56px; }
.help-article-body h2 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.help-article-body p {
  margin: 0;
  color: #303848;
  font-size: 18px;
  line-height: 1.72;
}

.help-article-body p + p { margin-top: 18px; }

.help-summary {
  margin-inline: -30px;
  padding: 30px;
  border-radius: 26px;
  background: var(--help-soft);
}

.help-summary h2 { font-size: 25px; }
.help-summary ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.help-summary li { position: relative; display: block; padding: 20px 58px 20px 0; border-top: 1px solid #dce3ec; }
.help-summary li:first-child { border-top: 0; }
.help-summary li > span { position: absolute; top: 20px; right: 0; color: var(--help-blue); font-size: 22px; font-weight: 760; }
.help-summary li p { color: var(--help-ink); font-size: 17px; line-height: 1.5; }

.help-article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  max-height: calc(100vh - 120px);
  align-self: start;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c8d1dd transparent;
}
.help-aside-card { padding: 24px; border: 1px solid var(--help-line); border-radius: 20px; }
.help-aside-card strong { display: block; margin-bottom: 14px; font-size: 15px; }
.help-aside-card p { margin: 0; color: var(--help-muted); font-size: 14px; line-height: 1.55; }
.help-toc ol { display: grid; gap: 12px; margin: 0; padding: 0 0 0 20px; color: #7d8797; }
.help-toc a { color: #485367; font-size: 14px; line-height: 1.4; text-decoration: none; }
.help-toc a:hover { color: var(--help-blue); }
.help-aside-all { padding: 14px 6px; color: var(--help-blue); font-size: 14px; font-weight: 720; text-decoration: none; }

.help-next-step {
  padding: 38px;
  border-radius: 26px;
  color: #fff;
  background: #101827;
}
.help-next-step h2 { color: #fff; }
.help-next-step p { color: #cbd4e2; }
.help-next-step a { display: inline-flex; margin-top: 26px; padding: 13px 18px; border-radius: 999px; color: #fff; background: var(--help-blue); font-size: 14px; font-weight: 720; text-decoration: none; }

.help-related { padding: 88px 0 104px; background: #f6f7f9; }
.help-related header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.help-related header > a { color: var(--help-blue); font-weight: 720; text-decoration: none; }
.help-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.help-related-card > a { min-height: 300px; padding: 26px; }
.help-related-card h3 { font-size: 24px; }

.product-help-entry { padding: 38px 0; }
.product-help-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid var(--help-line);
  border-radius: 26px;
  background: #fff;
}
.product-help-entry-copy { display: flex; min-width: 0; align-items: center; gap: 28px; }
.product-help-entry-mark { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border-radius: 16px; background: #edf5ff; }
.product-help-entry-mark img { width: 27px; height: 27px; object-fit: contain; }
.product-help-entry h2 { margin: 0 0 7px; color: var(--help-ink); font-size: 26px; line-height: 1.1; letter-spacing: -.035em; }
.product-help-entry p { margin: 0; color: var(--help-muted); font-size: 15px; line-height: 1.5; }
.product-help-entry-link { display: inline-flex; padding: 13px 18px; border: 1px solid #b8d5f5; border-radius: 999px; color: var(--help-blue); font-size: 14px; font-weight: 720; text-decoration: none; white-space: nowrap; }

.product-help-entry--about { padding: 0 0 72px; background: #f5f7fa; }

@media (max-width: 900px) {
  .help-article-layout { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .help-article-aside { position: static; max-height: none; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .help-aside-all { grid-column: 1 / -1; }
  .help-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-related-card:last-child { display: none; }
}

@media (max-width: 640px) {
  .help-breadcrumbs { margin-bottom: 28px; font-size: 12px; }
  .help-hub-hero, .help-article-hero { padding: 38px 0 44px; }
  .help-hub-hero h1, .help-article-hero h1 { margin: 11px 0 17px; font-size: 38px; line-height: 1.04; }
  .help-hub-hero > .shell > p:last-child, .help-article-deck { font-size: 17px; line-height: 1.52; }
  .help-ai-ask { padding: 54px 0 50px; }
  .help-ai-intro { margin-bottom: 28px; text-align: left; }
  .help-ai-intro h2 { font-size: 34px; }
  .help-ai-intro > p { margin-top: 14px; font-size: 15px; }
  .help-ai-privacy { text-align: left; }
  .help-ai-form { grid-template-columns: minmax(0, 1fr) 46px; padding: 6px 7px 6px 18px; }
  .help-ai-form input { font-size: 15px; }
  .help-ai-form button { width: 46px; height: 46px; font-size: 20px; }
  .help-ai-suggestions { flex-wrap: nowrap; margin-right: calc(var(--gutter, 20px) * -1); padding-right: var(--gutter, 20px); overflow-x: auto; scrollbar-width: none; }
  .help-ai-suggestions button { flex: 0 0 auto; }
  .help-ai-answer { margin-top: 24px; border-radius: 22px; }
  .help-ai-answer > header { padding: 15px 14px 15px 20px; }
  .help-ai-answer-body { grid-template-columns: 36px minmax(0, 1fr); gap: 13px; padding: 22px 20px 18px; }
  .help-ai-answer-mark { width: 36px; height: 36px; border-radius: 12px; }
  .help-ai-answer-mark img { width: 20px; height: 20px; }
  .help-ai-answer-body p { font-size: 16px; line-height: 1.58; }
  .help-ai-collapse { margin: 0 20px 20px 69px; }
  .help-hub-library { padding: 58px 0 72px; }
  .help-hub-library > .shell > header { display: block; margin-bottom: 24px; }
  .help-hub-library header p { margin-top: 10px; }
  .help-hub-library h2, .help-related h2, .help-hub-note h2 { font-size: 34px; }
  .help-grid { grid-template-columns: minmax(0, 1fr); }
  .help-card > a { min-height: 220px; padding: 24px; }
  .help-card h3, .help-related-card h3 { margin-top: 22px; font-size: 24px; }
  .help-hub-note > .shell { padding-block: 58px 54px; }
  .help-hub-note h2 { font-size: 30px; line-height: 1.12; }
  .help-note-toggle { width: 36px; height: 36px; margin-top: 30px; }
  .help-note-copy { margin-top: 28px; }
  .help-note-copy p { font-size: 16px; line-height: 1.56; }
  .help-support { padding: 38px 0 58px; }
  .help-support-card { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 26px 22px; border-radius: 22px; }
  .help-support-copy { align-items: flex-start; gap: 16px; }
  .help-support-icon { width: 50px; height: 50px; flex-basis: 50px; border-radius: 16px; }
  .help-support-icon svg { width: 25px; height: 25px; }
  .help-support h2 { font-size: 24px; }
  .help-support-link { width: 100%; }
  .help-article-meta { align-items: flex-start; flex-direction: column; gap: 12px; }
  .help-article-visual { min-height: 220px; margin-top: 24px; padding: 28px 24px; border-radius: 24px; }
  .help-article-visual strong { max-width: 220px; font-size: 27px; }
  .help-article-visual img { width: 72px; height: 72px; padding: 15px; border-radius: 21px; }
  .help-article-layout { gap: 34px; padding-top: 48px; padding-bottom: 64px; }
  .help-article-body > section + section { margin-top: 42px; }
  .help-article-body h2 { font-size: 27px; }
  .help-article-body p { font-size: 17px; line-height: 1.68; }
  .help-summary { margin-inline: -10px; padding: 24px 10px; border-radius: 22px; }
  .help-summary li { padding-right: 44px; }
  .help-summary li p { font-size: 16px; }
  .help-article-aside { grid-template-columns: minmax(0, 1fr); }
  .help-next-step { padding: 30px 24px; border-radius: 23px; }
  .help-related { padding: 58px 0 72px; }
  .help-related header { align-items: start; flex-direction: column; gap: 12px; }
  .help-related-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .help-related-card { flex: 0 0 86%; scroll-snap-align: start; }
  .help-related-card:last-child { display: block; }
  .help-related-card > a { min-height: 260px; padding: 24px; }
  .product-help-entry { padding: 24px 0; }
  .product-help-entry-card { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 25px 22px; border-radius: 22px; }
  .product-help-entry-copy { align-items: flex-start; gap: 16px; }
  .product-help-entry-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 14px; }
  .product-help-entry h2 { font-size: 23px; }
  .product-help-entry-link { justify-self: start; }
  .product-help-entry--about { padding-bottom: 54px; }
}
