html.hs-guide-document {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body.hs-guide-preview {
  color-scheme: light;
  --hs-ink: #171717;
  --hs-strong: #111418;
  --hs-white: #fff;
  --hs-surface: #f8f8fa;
  --hs-surface-2: #f2f2f3;
  --hs-line: #d1d1d1;
  --hs-line-soft: #e7e7e8;
  --hs-muted: #6d6d6d;
  --hs-soft: #666;
  --hs-accent: #493aff;
  --hs-accent-rgb: 73, 58, 255;
  --hs-max: 1240px;
  margin: 0;
  background: #fff;
  color: #171717;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hs-guide-page {
  color-scheme: light;
  --hs-ink: #171717;
  --hs-strong: #111418;
  --hs-white: #fff;
  --hs-surface: #f8f8fa;
  --hs-surface-2: #f2f2f3;
  --hs-line: #d1d1d1;
  --hs-line-soft: #e7e7e8;
  --hs-muted: #6d6d6d;
  --hs-soft: #666;
  --hs-accent: #493aff;
  --hs-accent-rgb: 73, 58, 255;
  --hs-max: 1240px;
  background: var(--hs-white);
  color: var(--hs-ink);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

/*
 * Webflow's shared production Navbar is fixed at 74px. Preview pages own their
 * own static header, so apply the clearance only to the primary production
 * guide root (not the second root used by split Webflow embeds).
 */
body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] {
  --hs-site-header-height: 74px;
  padding-top: var(--hs-site-header-height);
}

.hs-guide-page *,
.hs-guide-page *::before,
.hs-guide-page *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.hs-guide-page img,
.hs-guide-page svg {
  display: block;
  max-width: 100%;
}

.hs-guide-page a {
  color: inherit;
}

.hs-guide-page :focus-visible {
  outline: 3px solid var(--hs-accent);
  outline-offset: 3px;
}

.hs-guide-container {
  width: min(var(--hs-max), calc(100% - 48px));
  margin-inline: auto;
}

.hs-guide-skip {
  --hs-skip-hidden-y: calc(-100% - 10px);
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--hs-ink);
  color: var(--hs-white);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--hs-skip-hidden-y));
  transition: opacity .15s ease, transform .15s ease;
}

.hs-guide-skip:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hs-reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: var(--hs-accent);
  pointer-events: none;
}

body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] .hs-reading-progress {
  top: var(--hs-site-header-height);
  z-index: 10001;
}

body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] .hs-guide-skip {
  --hs-skip-hidden-y: calc(-100% - var(--hs-site-header-height) - 10px);
  top: calc(var(--hs-site-header-height) + 8px);
  z-index: 10002;
}

.hs-guide-page a.hs-guide-skip,
.hs-guide-page a.hs-guide-skip:visited,
.hs-guide-page a.hs-guide-skip:hover,
.hs-guide-page a.hs-guide-skip:focus-visible {
  color: var(--hs-white);
}

.hs-preview-header {
  background: var(--hs-white);
  border-bottom: 1px solid var(--hs-line-soft);
}

.hs-preview-nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hs-preview-logo {
  display: inline-flex;
  width: 158px;
  flex: none;
}

.hs-preview-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hs-preview-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.hs-preview-links a {
  text-decoration: none;
}

.hs-preview-links > a:not(.hs-btn) {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--hs-ink);
}

.hs-preview-links > a:not(.hs-btn):hover {
  background: var(--hs-surface);
}

.hs-preview-links .hs-btn {
  min-height: 44px;
  margin-left: 4px;
}

.hs-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 17px;
  border: 1px solid var(--hs-ink);
  border-radius: 999px;
  background: var(--hs-ink);
  color: var(--hs-white);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.hs-btn:hover {
  background: var(--hs-strong);
}

.hs-btn--light {
  border-color: var(--hs-white);
  background: var(--hs-white);
  color: var(--hs-ink);
}

.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light,
.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light:link,
.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light:visited,
.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light:focus,
.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light:active {
  border-color: var(--hs-white);
  background: var(--hs-white);
  color: var(--hs-ink);
}

.hs-guide-page .hs-guide-cta a.hs-btn.hs-btn--light:hover {
  border-color: var(--hs-surface-2);
  background: var(--hs-surface-2);
  color: var(--hs-ink);
}

.hs-btn--outline {
  border-color: var(--hs-line);
  background: transparent;
  color: var(--hs-ink);
}

.hs-btn__arrow {
  width: 25px;
  height: 25px;
  display: inline-grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--hs-accent);
  color: var(--hs-white);
  font-size: 14px;
}

.hs-library-strip {
  position: relative;
  border-bottom: 1px solid var(--hs-line-soft);
  background: var(--hs-white);
}

.hs-library-strip__inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-block: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hs-library-strip__inner::-webkit-scrollbar {
  display: none;
}

.hs-library-strip a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--hs-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.hs-library-strip a:hover {
  background: var(--hs-surface);
  color: var(--hs-ink);
}

.hs-library-strip a[aria-current="page"] {
  background: var(--hs-ink);
  color: var(--hs-white);
}

.hs-library-strip__home {
  margin-right: 5px;
  color: var(--hs-muted);
}

.hs-library-strip__home[aria-current="page"] {
  color: var(--hs-white);
}

.hs-library-strip__current {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--hs-surface);
  color: var(--hs-ink);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.hs-library-strip__spark {
  margin-left: 4px;
  color: var(--hs-accent);
}

.hs-library-strip a[aria-current="page"] .hs-library-strip__spark {
  color: var(--hs-white);
}

.hs-guide-hero,
.hs-guide-hub-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--hs-line-soft);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(var(--hs-accent-rgb), .11), rgba(var(--hs-accent-rgb), 0) 64%),
    var(--hs-surface);
}

.hs-guide-hero__inner {
  padding: 78px 0 76px;
}

.hs-guide-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: var(--hs-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hs-guide-eyebrow::before {
  width: 22px;
  height: 1px;
  flex: none;
  background: currentColor;
  content: "";
}

.hs-guide-display {
  max-width: 1030px;
  margin: 0;
  color: var(--hs-ink);
  font-size: clamp(58px, 8.8vw, 124px);
  font-weight: 500;
  letter-spacing: -.068em;
  line-height: .84;
  text-transform: uppercase;
  white-space: pre-line;
}

.hs-guide-hero h1 {
  max-width: 930px;
  margin: 40px 0 0;
  color: var(--hs-ink);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.hs-guide-hero__lede {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--hs-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.hs-guide-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hs-guide-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 999px;
  background: var(--hs-white);
  color: var(--hs-muted);
  font-size: 12px;
  font-weight: 650;
}

.hs-guide-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 790px);
  justify-content: space-between;
  gap: 70px;
  align-items: start;
  padding: 78px 0 106px;
}

.hs-guide-toc {
  position: sticky;
  top: 28px;
  max-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  padding: 14px 10px 11px;
  overflow: hidden;
  border: 1px solid var(--hs-line-soft);
  border-radius: 20px;
  background: rgba(248, 248, 250, .72);
}

body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] .hs-guide-toc {
  top: calc(var(--hs-site-header-height) + 28px);
  max-height: calc(100vh - var(--hs-site-header-height) - 56px);
}

.hs-guide-toc__scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 3px;
  scrollbar-color: #d3d3d6 transparent;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

.hs-guide-toc__scroll:hover,
.hs-guide-toc__scroll:focus-within {
  scrollbar-color: #aaaab0 transparent;
}

.hs-guide-toc__scroll::-webkit-scrollbar {
  width: 6px;
}

.hs-guide-toc__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.hs-guide-toc__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d3d3d6;
}

.hs-guide-toc__scroll:hover::-webkit-scrollbar-thumb,
.hs-guide-toc__scroll:focus-within::-webkit-scrollbar-thumb {
  background: #aaaab0;
}

.hs-guide-toc__label {
  margin: 0;
  padding: 3px 9px 12px;
  color: var(--hs-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hs-guide-toc ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-guide-toc li {
  border: 0;
}

.hs-guide-toc a {
  position: relative;
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--hs-muted);
  font-size: 12.5px;
  font-weight: 580;
  line-height: 1.34;
  text-decoration: none;
}

.hs-guide-toc a:hover {
  background: rgba(255,255,255,.82);
  color: var(--hs-ink);
}

.hs-guide-toc a.is-active {
  padding-left: 18px;
  background: rgba(var(--hs-accent-rgb), .075);
  color: var(--hs-ink);
  box-shadow: none;
}

.hs-guide-toc a.is-active::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: var(--hs-accent);
  content: "";
  transform: translateY(-50%);
}

.hs-guide-toc a:focus-visible {
  outline-offset: -2px;
}

.hs-guide-toc__downloads {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 11px 3px 1px;
  padding: 12px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
}

.hs-guide-toc__downloads strong {
  display: block;
  font-size: 12px;
}

.hs-guide-toc__downloads p {
  margin: 5px 0 12px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hs-guide-toc__downloads a {
  display: inline;
  padding: 0;
  color: var(--hs-accent);
  flex: none;
  font-size: 11.5px;
  box-shadow: none !important;
}

.hs-guide-mobile-toc {
  display: none;
  margin-bottom: 38px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 20px;
  background: var(--hs-white);
}

.hs-guide-mobile-toc summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.hs-guide-mobile-toc summary::-webkit-details-marker {
  display: none;
}

.hs-guide-mobile-toc summary::after {
  flex: none;
  color: var(--hs-soft);
  content: "+";
}

.hs-guide-mobile-toc[open] summary::after {
  content: "−";
}

.hs-guide-mobile-toc ol {
  max-height: min(56vh, 430px);
  margin: 0;
  padding: 0 9px 10px;
  overflow-y: auto;
  list-style: none;
  scrollbar-color: #d3d3d6 transparent;
  scrollbar-width: thin;
}

.hs-guide-mobile-toc li + li {
  margin-top: 2px;
}

.hs-guide-mobile-toc a {
  min-height: 44px;
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--hs-muted);
  font-size: 13.5px;
  line-height: 1.4;
  text-decoration: none;
}

.hs-guide-mobile-toc a:hover,
.hs-guide-mobile-toc a.is-active {
  background: rgba(var(--hs-accent-rgb), .065);
  color: var(--hs-ink);
}

.hs-guide-article {
  min-width: 0;
}

.hs-guide-article > section {
  scroll-margin-top: 30px;
  padding: 0 0 76px;
}

body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] .hs-guide-article > section {
  scroll-margin-top: calc(var(--hs-site-header-height) + 30px);
}

.hs-guide-article > section + section {
  padding-top: 76px;
  border-top: 1px solid var(--hs-line-soft);
}

.hs-guide-article > .guide-step {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hs-guide-article h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--hs-ink);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .98;
}

.hs-guide-article h3 {
  margin: 42px 0 14px;
  color: var(--hs-ink);
  font-size: clamp(24px, 2.6vw, 31px);
  font-weight: 600;
  letter-spacing: -.038em;
  line-height: 1.12;
}

.hs-guide-article h4 {
  margin: 30px 0 10px;
  color: var(--hs-ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hs-guide-article p,
.hs-guide-article li {
  color: var(--hs-muted);
  font-size: 18px;
  line-height: 1.72;
}

.hs-guide-article p {
  margin: 0 0 21px;
}

.hs-guide-article ul,
.hs-guide-article ol {
  margin: 18px 0 26px;
  padding-left: 24px;
}

.hs-guide-article li + li {
  margin-top: 8px;
}

.hs-guide-article strong {
  color: var(--hs-ink);
  font-weight: 650;
}

.hs-guide-article :not(pre) > code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hs-guide-article a:not(.hs-btn):not(.hs-download-card) {
  text-decoration-color: rgba(var(--hs-accent-rgb), .45);
  text-underline-offset: 3px;
}

.hs-guide-article p a,
.hs-guide-article li a {
  display: inline;
}

.hs-guide-article blockquote {
  margin: 30px 0;
  padding: 2px 0 2px 24px;
  border-left: 3px solid var(--hs-accent);
  color: var(--hs-ink);
  font-size: 23px;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.hs-guide-page .guide-visual {
  max-width: 100%;
  margin: 36px 0 42px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--hs-line-soft);
  border-radius: 24px;
  background: var(--hs-surface);
  box-shadow: 0 18px 48px rgba(17,17,17,.07);
}

.hs-guide-page .guide-visual picture,
.hs-guide-page .guide-visual > a {
  display: block;
  width: 100%;
}

.hs-guide-page .guide-visual img {
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  background: var(--hs-surface-2);
}

.hs-guide-page .guide-visual figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--hs-line-soft);
  background: var(--hs-white);
  color: var(--hs-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hs-guide-page .guide-visual figcaption p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.hs-guide-page .guide-visual figcaption strong {
  color: var(--hs-ink);
  font-weight: 650;
}

.hs-guide-page .guide-visual figcaption > :last-child {
  margin-bottom: 0;
}

.hs-guide-page .guide-step {
  position: relative;
  margin: 32px 0;
  padding: 28px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 22px;
  background: var(--hs-white);
}

.hs-guide-page .guide-step-number,
.hs-guide-page .guide-eyebrow,
.hs-guide-page .guide-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px !important;
  color: var(--hs-accent) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.hs-guide-page .guide-step-number::before,
.hs-guide-page .guide-eyebrow::before,
.hs-guide-page .guide-kicker::before {
  width: 20px;
  height: 1px;
  flex: none;
  background: currentColor;
  content: "";
}

.hs-guide-page .guide-step > :first-child {
  margin-top: 0;
}

.hs-guide-page .guide-step > :last-child {
  margin-bottom: 0;
}

.hs-guide-page .guide-callout {
  margin: 30px 0;
  padding: 25px 27px;
  border: 1px solid rgba(var(--hs-accent-rgb), .18);
  border-radius: 20px;
  background: rgba(var(--hs-accent-rgb), .055);
}

.hs-guide-page .guide-callout[data-tone="dark"],
.hs-guide-page .guide-callout.dark {
  border-color: var(--hs-ink);
  background: var(--hs-ink);
  color: var(--hs-white);
}

.hs-guide-page .guide-callout[data-tone="dark"] p,
.hs-guide-page .guide-callout[data-tone="dark"] li,
.hs-guide-page .guide-callout.dark p,
.hs-guide-page .guide-callout.dark li {
  color: rgba(255,255,255,.72);
}

.hs-guide-page .guide-callout[data-tone="dark"] strong,
.hs-guide-page .guide-callout.dark strong {
  color: var(--hs-white);
}

.hs-guide-page .guide-callout > :first-child,
.hs-guide-page .guide-template > :first-child {
  margin-top: 0;
}

.hs-guide-page .guide-callout > :last-child,
.hs-guide-page .guide-template > :last-child {
  margin-bottom: 0;
}

.hs-guide-page .guide-template {
  margin: 32px 0;
  padding: 28px;
  border-radius: 22px;
  background: var(--hs-surface);
}

.hs-guide-page .guide-template pre,
.hs-guide-article pre {
  max-width: 100%;
  margin: 18px 0 0;
  padding: 20px;
  overflow-x: auto;
  border: 1px solid var(--hs-line-soft);
  border-radius: 14px;
  background: var(--hs-white);
  color: var(--hs-ink);
  font: 13px/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.hs-guide-page .guide-checklist {
  margin: 24px 0 30px !important;
  padding: 0 !important;
  list-style: none;
}

.hs-guide-page .guide-checklist li {
  position: relative;
  margin: 0 !important;
  padding: 13px 8px 13px 38px;
  border-top: 1px solid var(--hs-line-soft);
}

.hs-guide-page .guide-checklist li:last-child {
  border-bottom: 1px solid var(--hs-line-soft);
}

.hs-guide-page .guide-checklist li::before {
  position: absolute;
  top: 17px;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--hs-line);
  border-radius: 4px;
  background: var(--hs-white);
  content: "";
}

.hs-guide-page .guide-table-wrap {
  max-width: 100%;
  margin: 30px 0 38px;
  overflow-x: auto;
  border: 1px solid var(--hs-line-soft);
  border-radius: 18px;
}

.hs-guide-article table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--hs-white);
}

.hs-guide-article th,
.hs-guide-article td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--hs-line-soft);
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.hs-guide-article th {
  background: var(--hs-surface);
  color: var(--hs-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hs-guide-article tr:last-child td {
  border-bottom: 0;
}

.hs-guide-faq details,
.hs-guide-page .guide-faq details,
.hs-guide-article section[id*="faq"] details {
  border-top: 1px solid var(--hs-line);
}

.hs-guide-faq details:last-child,
.hs-guide-page .guide-faq details:last-child,
.hs-guide-article section[id*="faq"] details:last-child {
  border-bottom: 1px solid var(--hs-line);
}

.hs-guide-faq summary,
.hs-guide-page .guide-faq summary,
.hs-guide-article section[id*="faq"] summary {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 2px;
  color: var(--hs-ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.02em;
  list-style: none;
  cursor: pointer;
}

.hs-guide-faq summary::-webkit-details-marker,
.hs-guide-page .guide-faq summary::-webkit-details-marker,
.hs-guide-article section[id*="faq"] summary::-webkit-details-marker {
  display: none;
}

.hs-guide-faq summary::after,
.hs-guide-page .guide-faq summary::after,
.hs-guide-article section[id*="faq"] summary::after {
  flex: none;
  color: var(--hs-soft);
  font-size: 22px;
  font-weight: 400;
  content: "+";
}

.hs-guide-faq details[open] summary::after,
.hs-guide-page .guide-faq details[open] summary::after,
.hs-guide-article section[id*="faq"] details[open] summary::after {
  content: "−";
}

.hs-guide-faq details p,
.hs-guide-page .guide-faq details p,
.hs-guide-article section[id*="faq"] details p {
  margin: -3px 0 24px;
  padding-right: 40px;
  font-size: 16px;
}

.hs-guide-downloads {
  padding: 88px 0;
  border-top: 1px solid var(--hs-line-soft);
  background: var(--hs-surface);
}

.hs-guide-section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 34px;
}

.hs-guide-section-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .98;
}

.hs-guide-section-head p {
  max-width: 660px;
  margin: 0;
  color: var(--hs-muted);
  font-size: 18px;
}

.hs-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hs-download-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 22px;
  background: var(--hs-white);
  text-decoration: none;
}

.hs-download-card:hover {
  border-color: rgba(var(--hs-accent-rgb), .36);
  box-shadow: 0 14px 36px rgba(17,17,17,.06);
}

.hs-download-card__type {
  color: var(--hs-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hs-download-card strong {
  display: block;
  margin-top: 34px;
  font-size: 22px;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.hs-download-card span:last-child {
  margin-top: 12px;
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-related-guides {
  padding: 88px 0;
  border-top: 1px solid var(--hs-line-soft);
  background: var(--hs-white);
}

.hs-related-grid,
.hs-guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hs-guide-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--hs-line-soft);
  border-radius: 24px;
  background: var(--hs-surface);
  text-decoration: none;
}

.hs-guide-card:hover {
  border-color: rgba(var(--hs-accent-rgb), .38);
  box-shadow: 0 14px 42px rgba(17,17,17,.07);
}

.hs-guide-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.hs-guide-card__label {
  color: var(--hs-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hs-guide-card__arrow {
  width: 35px;
  height: 35px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--hs-ink);
  color: var(--hs-white);
}

.hs-guide-card h2,
.hs-guide-card h3 {
  max-width: 92%;
  margin: 48px 0 0;
  color: var(--hs-ink);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -.048em;
  line-height: 1.02;
}

.hs-guide-card p {
  max-width: 92%;
  margin: 15px 0 0;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hs-guide-card__meta {
  margin-top: 26px;
  color: var(--hs-soft);
  font-size: 12px;
}

.hs-guide-cta {
  padding: 82px 0;
  background:
    radial-gradient(45% 120% at 100% 0%, rgba(var(--hs-accent-rgb), .24), rgba(var(--hs-accent-rgb), 0) 72%),
    var(--hs-strong);
  color: var(--hs-white);
}

.hs-guide-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}

.hs-guide-cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--hs-white);
  font-size: clamp(42px, 6.4vw, 82px);
  font-weight: 500;
  letter-spacing: -.062em;
  line-height: .94;
}

.hs-guide-cta p {
  max-width: 650px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.hs-preview-footer {
  padding: 45px 0;
  border-top: 1px solid var(--hs-line-soft);
  background: var(--hs-white);
}

.hs-preview-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.hs-preview-footer img {
  width: 155px;
  height: auto;
}

.hs-preview-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--hs-muted);
  font-size: 13px;
  text-align: right;
}

.hs-guide-hub-hero__inner {
  padding: 88px 0 80px;
}

.hs-guide-hub-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(58px, 9vw, 122px);
  font-weight: 500;
  letter-spacing: -.068em;
  line-height: .86;
  text-transform: uppercase;
}

.hs-guide-hub-hero p:not(.hs-guide-eyebrow) {
  max-width: 770px;
  margin: 26px 0 0;
  color: var(--hs-muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
}

.hs-guide-hub-grid {
  padding: 84px 0 104px;
}

.hs-guide-hub-grid .hs-guide-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-guide-search {
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 24px;
  background: var(--hs-surface);
}

.hs-guide-search > label {
  display: block;
  margin: 0 0 12px;
  color: var(--hs-ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.025em;
}

.hs-guide-search__control {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid var(--hs-line);
  border-radius: 999px;
  background: var(--hs-white);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.hs-guide-search__control:focus-within {
  border-color: var(--hs-accent);
  box-shadow: 0 0 0 3px rgba(var(--hs-accent-rgb), .12);
}

.hs-guide-search__control svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--hs-muted);
}

.hs-guide-search__control input {
  min-width: 0;
  width: 100%;
  height: 58px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--hs-ink);
  font: inherit;
  font-size: 16px;
}

.hs-guide-search__control input::placeholder {
  color: var(--hs-soft);
  opacity: 1;
}

.hs-guide-search__control input::-webkit-search-cancel-button {
  display: none;
}

.hs-guide-search__control button {
  min-height: 40px;
  flex: none;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--hs-surface-2);
  color: var(--hs-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.hs-guide-search > p {
  margin: 11px 3px 0;
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-guide-card[hidden],
.hs-guide-search-empty[hidden],
.hs-guide-search__control button[hidden] {
  display: none !important;
}

.hs-guide-search-empty {
  padding: 58px 24px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 24px;
  background: var(--hs-surface);
  text-align: center;
}

.hs-guide-search-empty h2 {
  margin: 0;
  color: var(--hs-ink);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.045em;
  line-height: 1;
}

.hs-guide-search-empty p {
  max-width: 590px;
  margin: 14px auto 24px;
  color: var(--hs-muted);
}

.hs-guide-search-empty .hs-btn {
  margin-inline: auto;
}

.hs-library-method {
  padding: 92px 0;
  border-top: 1px solid var(--hs-line-soft);
  background: var(--hs-surface);
}

.hs-library-method__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.hs-library-method__card {
  padding: 25px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 20px;
  background: var(--hs-white);
}

.hs-library-method__card span {
  color: var(--hs-accent);
  font-size: 12px;
  font-weight: 700;
}

.hs-library-method__card h3 {
  margin: 35px 0 10px;
  font-size: 25px;
  letter-spacing: -.04em;
}

.hs-library-method__card p {
  margin: 0;
  color: var(--hs-muted);
}

.hs-guide-backtotop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hs-line-soft);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--hs-ink);
  box-shadow: 0 8px 28px rgba(17,17,17,.08);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease;
}

.hs-guide-backtotop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hs-guide-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 45px;
  }

  .hs-download-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hs-guide-hub-grid .hs-guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-guide-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .hs-library-strip::before,
  .hs-library-strip::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 1px;
    width: 28px;
    opacity: 0;
    pointer-events: none;
    content: "";
    transition: opacity .15s ease;
  }

  .hs-library-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--hs-white), rgba(255,255,255,0));
  }

  .hs-library-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--hs-white), rgba(255,255,255,0));
  }

  .hs-library-strip.can-scroll-left::before,
  .hs-library-strip.can-scroll-right::after {
    opacity: 1;
  }

  .hs-library-strip__inner {
    min-height: 60px;
    gap: 8px;
    padding-block: 7px;
    padding-inline: var(--hs-strip-edge-space, 0px);
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }

  .hs-library-strip a {
    min-height: 44px;
    padding: 8px 14px;
    scroll-snap-align: center;
  }

  .hs-library-strip__home {
    margin-right: 4px;
  }

  .hs-preview-nav {
    min-height: 72px;
  }

  .hs-preview-logo {
    width: 132px;
  }

  .hs-preview-links > a:not(.hs-btn) {
    display: none;
  }

  .hs-guide-layout {
    display: block;
    padding-top: 48px;
  }

  .hs-guide-toc {
    display: none;
  }

  .hs-guide-mobile-toc {
    display: block;
  }

  .hs-related-grid,
  .hs-guide-card-grid,
  .hs-guide-hub-grid .hs-guide-card-grid,
  .hs-library-method__grid {
    grid-template-columns: 1fr;
  }

  .hs-guide-cta__inner {
    display: block;
  }

  .hs-guide-cta .hs-btn {
    margin-top: 28px;
  }

  .hs-preview-footer__inner {
    display: block;
  }

  .hs-preview-footer p {
    margin-top: 20px;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hs-guide-container {
    width: min(var(--hs-max), calc(100% - 28px));
  }

  .hs-guide-page .guide-table-wrap::before {
    position: sticky;
    left: 0;
    z-index: 1;
    display: block;
    width: max-content;
    padding: 10px 14px 9px;
    color: var(--hs-soft);
    background: var(--hs-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    content: "Swipe to compare \2192";
  }

  .hs-preview-links .hs-btn {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hs-preview-links .hs-btn__arrow {
    width: 22px;
    height: 22px;
  }

  .hs-preview-nav {
    gap: 16px;
  }

  .hs-library-strip__inner {
    gap: 7px;
  }

  .hs-library-strip a {
    padding-inline: 13px;
  }

  .hs-library-strip__home {
    margin-right: 3px;
  }

  .hs-guide-hero__inner {
    padding: 53px 0 54px;
  }

  .hs-guide-display,
  .hs-guide-hub-hero h1 {
    font-size: clamp(47px, 15.4vw, 69px);
  }

  .hs-guide-hero h1 {
    margin-top: 30px;
  }

  .hs-guide-layout {
    padding-bottom: 74px;
  }

  .hs-guide-article > section {
    padding-bottom: 58px;
  }

  .hs-guide-article > section + section {
    padding-top: 58px;
  }

  .hs-guide-article h2 {
    font-size: clamp(38px, 12.5vw, 54px);
  }

  .hs-guide-article p,
  .hs-guide-article li {
    font-size: 17px;
    line-height: 1.68;
  }

  .hs-guide-page .guide-step,
  .hs-guide-page .guide-callout,
  .hs-guide-page .guide-template {
    padding: 21px;
    border-radius: 18px;
  }

  .hs-guide-page .guide-visual {
    margin: 29px 0 34px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(17,17,17,.06);
  }

  .hs-guide-page .guide-visual figcaption {
    padding: 12px 14px 14px;
    font-size: 12.5px;
  }

  .hs-guide-faq summary {
    font-size: 17px;
  }

  .hs-guide-downloads,
  .hs-related-guides,
  .hs-library-method {
    padding: 65px 0;
  }

  .hs-download-grid {
    grid-template-columns: 1fr;
  }

  .hs-guide-card {
    min-height: 250px;
    padding: 23px;
  }

  .hs-guide-cta {
    padding: 66px 0;
  }

  .hs-guide-hub-hero__inner {
    padding: 60px 0 56px;
  }

  .hs-guide-hub-grid {
    padding: 58px 0 74px;
  }

  .hs-guide-search {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 20px;
  }

  .hs-guide-search__control {
    min-height: 56px;
    padding-inline: 14px;
  }

  .hs-guide-search__control input {
    height: 54px;
  }
}

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

  .hs-guide-page *,
  .hs-guide-page *::before,
  .hs-guide-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  body:not(.hs-guide-preview) .navbar,
  body:not(.hs-guide-preview) .section.footer {
    display: none !important;
  }

  body:not(.hs-guide-preview) .hs-guide-page[data-guide-primary] {
    padding-top: 0;
  }

  .hs-preview-header,
  .hs-library-strip,
  .hs-reading-progress,
  .hs-guide-toc,
  .hs-guide-mobile-toc,
  .hs-guide-downloads,
  .hs-related-guides,
  .hs-guide-cta,
  .hs-preview-footer,
  .hs-guide-backtotop {
    display: none !important;
  }

  .hs-guide-hero {
    background: #fff;
  }

  .hs-guide-hero__inner,
  .hs-guide-layout {
    padding: 24px 0;
  }

  .hs-guide-display {
    font-size: 52px;
  }

  .hs-guide-layout {
    display: block;
  }

  .hs-guide-article > section {
    break-inside: avoid-page;
  }

  .hs-guide-page .guide-visual {
    margin: 18pt 0 22pt;
    break-inside: avoid;
    page-break-inside: avoid;
    border-color: #cfcfcf;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .hs-guide-page .guide-visual img {
    background: #fff;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hs-guide-page .guide-visual figcaption {
    padding: 7pt 9pt;
    border-color: #cfcfcf;
    background: #fff;
    color: #444;
    font-size: 9pt;
  }
}

/* ------------------------------------------------------------------ */
/* Chrome film hero (2026-08-27). The guides share the homepage hero  */
/* art: an inset 24px panel of slow chrome film with the heading over */
/* it, matching /meta-ads-management and /google-ads-management. The  */
/* poster is set inline as the panel background so reduced-motion     */
/* users and any video failure still get the art.                     */
/* ------------------------------------------------------------------ */

.hs-guide-page .hs-hero-chrome {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(var(--hs-max), 100% - 48px);
  margin: 20px auto 0;
  border-radius: 24px;
  border-bottom: 0;
  background-color: var(--hs-ink);
  background-size: cover;
  background-position: center;
  color: var(--hs-white);
}

.hs-hero-chrome__film {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.hs-hero-chrome__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,7,26,.96), rgba(4,7,26,.86) 38%, rgba(4,7,26,.46) 64%, rgba(4,7,26,.1) 88%),
    linear-gradient(180deg, rgba(4,7,26,.28), rgba(4,7,26,0) 34%, rgba(4,7,26,.58));
}

.hs-hero-chrome .hs-guide-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hs-guide-page .hs-hero-chrome .hs-guide-hero__inner,
.hs-guide-page.hs-hero-chrome-host .hs-guide-hub-hero__inner {
  padding: 62px 48px 54px;
}

.hs-hero-chrome .hs-guide-hub-hero__inner {
  padding: 62px 48px 58px;
}

.hs-hero-chrome .hs-guide-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.hs-hero-chrome .hs-guide-display {
  color: var(--hs-white);
}

.hs-hero-chrome h1 {
  color: var(--hs-white);
}

.hs-hero-chrome .hs-guide-hero__lede,
.hs-hero-chrome p:not(.hs-guide-eyebrow):not(.hs-guide-display) {
  color: rgba(255, 255, 255, .8);
}

.hs-hero-chrome .hs-guide-chip {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
}

/* ------------------------------------------------------------------ */
/* The snapshot (2026-08-27): a condensed, linked action list at the  */
/* very top of every guide, so a skim reader or an answer engine gets */
/* the doctrine without the word count.                               */
/* ------------------------------------------------------------------ */

.hs-guide-snapshot {
  padding: 40px 0 6px;
}

.hs-snapshot-panel {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 48px;
  padding: 36px 38px;
  border: 1px solid var(--hs-line-soft);
  border-radius: 24px;
  background: var(--hs-surface);
}

.hs-snapshot-head h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.hs-snapshot-lede {
  margin: 14px 0 0;
  color: var(--hs-muted);
  font-size: 16px;
  line-height: 1.55;
}

.hs-snapshot-list {
  counter-reset: hssnap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-snapshot-list li {
  counter-increment: hssnap;
  border-top: 1px solid var(--hs-line-soft);
}

.hs-snapshot-list li:first-child {
  border-top: 0;
}

.hs-snapshot-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 6px 14px;
  align-items: baseline;
  padding: 15px 4px;
  color: var(--hs-ink);
  text-decoration: none;
  border-radius: 10px;
}

.hs-snapshot-list a::before {
  content: "0" counter(hssnap);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--hs-accent);
}

.hs-snapshot-list strong {
  display: block;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.hs-snapshot-list a > span:not(.hs-snapshot-jump) {
  grid-column: 2;
  color: var(--hs-muted);
  font-size: 15px;
  line-height: 1.5;
}

.hs-snapshot-jump {
  grid-column: 3;
  grid-row: 1;
  color: var(--hs-soft);
}

.hs-snapshot-list a:hover strong {
  color: var(--hs-accent);
}

.hs-snapshot-list a:focus-visible {
  outline: 2px solid var(--hs-accent);
  outline-offset: 2px;
}

@media (max-width: 1000px) {
  .hs-snapshot-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 780px) {
  .hs-guide-page .hs-hero-chrome {
    width: min(var(--hs-max), 100% - 28px);
    border-radius: 20px;
  }

  .hs-guide-page .hs-hero-chrome .hs-guide-hero__inner,
  .hs-hero-chrome .hs-guide-hub-hero__inner {
    padding: 42px 22px 38px;
  }

  /* Left-weighted scrims fail when the copy spans the whole panel. */
  .hs-hero-chrome__scrim {
    background: linear-gradient(180deg, rgba(4,7,26,.93), rgba(4,7,26,.87) 50%, rgba(4,7,26,.95));
  }

  .hs-snapshot-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-hero-chrome__film {
    display: none;
  }
}

@media print {
  .hs-hero-chrome__film,
  .hs-hero-chrome__scrim,
  .hs-snapshot-jump {
    display: none !important;
  }

  .hs-guide-page .hs-hero-chrome {
    background: #fff !important;
    color: var(--hs-ink);
    border-radius: 0;
  }

  .hs-hero-chrome .hs-guide-display,
  .hs-hero-chrome h1 {
    color: var(--hs-ink);
  }

  .hs-hero-chrome .hs-guide-hero__lede,
  .hs-hero-chrome .hs-guide-eyebrow {
    color: #444;
  }
}

/* Continued layout for guides whose FAQ moves into the second embed to stay under
   Webflow's 50,000-character cap. The empty TOC div keeps the article in column 2. */
.hs-guide-layout--continued {
  padding-top: 0;
}
.hs-guide-layout--continued .hs-guide-article > section:first-child {
  padding-top: 0;
}
