:root {
  --docs-blue: #8595C9;
  --docs-blue-hover: #717fac;
  --docs-text: #18191d;
  --docs-text-soft: #666b75;
  --docs-text-muted: #969ba5;
  --docs-border: #e7e9ee;
  --docs-border-strong: #dfe3ea;
  --docs-bg: #ffffff;
  --docs-bg-soft: #f7f8fa;
  --docs-shell-width: 1376px;
  --docs-sidebar-width: 270px;
  --docs-toc-width: 208px;
  --docs-layout-gap: 66px;
  --docs-header-height: 109px;
  --docs-content-width: 768px;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--docs-bg);
  color: var(--docs-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

.book {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.book.without-animation * {
  transition: none !important;
}

.docs-shell-width {
  width: calc(100% - 48px);
  max-width: var(--docs-shell-width);
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.docs-site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: var(--docs-header-height);
  border-bottom: 1px solid var(--docs-border);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.docs-header-primary {
  display: grid;
  grid-template-columns: var(--docs-sidebar-width) minmax(360px, 1fr) var(--docs-sidebar-width);
  align-items: center;
  height: 62px;
  column-gap: var(--docs-layout-gap);
}

.docs-header-primary,
.docs-secondary-inner {
  max-width: 1536px;
}

.docs-top-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  color: var(--docs-blue);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.docs-top-brand:hover,
.docs-top-brand:focus {
  color: var(--docs-blue-hover);
  text-decoration: none;
}

.docs-top-brand img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.docs-search-shell {
  position: relative;
  width: min(100%, 568px);
  margin-left: 46px;
  justify-self: start;
}

#book-search-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 78px 0 14px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 24, 32, 0.02);
}

#book-search-input::before {
  content: "\f002";
  margin-right: 10px;
  color: #737985;
  font-family: FontAwesome;
  font-size: 16px;
}

#book-search-input input,
#book-search-input input:focus,
#book-search-input input:hover {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--docs-text);
  font-size: 15px;
}

#book-search-input input::placeholder {
  color: #9297a0;
}

.docs-search-shortcut {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  gap: 4px;
  transform: translateY(-50%);
  pointer-events: none;
}

.docs-search-shortcut span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border: 1px solid var(--docs-border);
  border-radius: 7px;
  background: #fff;
  color: #727986;
  font-size: 11px;
  font-weight: 600;
}

.docs-website-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 141px;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--docs-blue);
  box-shadow: 0 1px 2px rgba(22, 75, 170, 0.14);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.docs-website-button:hover,
.docs-website-button:focus {
  background: var(--docs-blue-hover);
  color: #fff;
  text-decoration: none;
}

.docs-header-secondary {
  height: 47px;
}

.docs-secondary-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 47px;
}

.docs-product-nav {
  display: flex;
  align-items: stretch;
  gap: 34px;
}

.docs-product-nav a,
.docs-product-nav span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6d717a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.docs-product-nav a.is-active {
  color: var(--docs-blue);
  font-weight: 600;
}

.docs-product-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--docs-blue);
}

.docs-language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.docs-language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #71757e;
  font-size: 14px;
  cursor: pointer;
}

.docs-language .fa-angle-down {
  color: #a6abb3;
}

.docs-language:hover,
.docs-language:focus,
.docs-language[aria-expanded="true"] {
  color: var(--docs-blue);
  outline: 0;
}

.docs-language-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% - 3px);
  right: 0;
  width: 142px;
  padding: 6px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 39, 51, 0.12);
}

.docs-language-menu[hidden] {
  display: none !important;
}

.docs-language-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: #626873;
  font-size: 14px;
  text-decoration: none;
}

.docs-language-menu a:hover,
.docs-language-menu a:focus,
.docs-language-menu a.is-active {
  background: #f2f6fe;
  color: var(--docs-blue);
  text-decoration: none;
}

.docs-toggle-button {
  display: none;
}

/* Main shell */
.docs-layout {
  display: grid;
  grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
  column-gap: var(--docs-layout-gap);
  height: calc(100vh - var(--docs-header-height));
  min-height: 0;
  margin-top: var(--docs-header-height);
}

.book-summary {
  position: sticky !important;
  z-index: 10;
  top: var(--docs-header-height);
  left: auto !important;
  width: auto !important;
  height: calc(100vh - var(--docs-header-height));
  border: 0;
  background: #fff;
  transform: none !important;
}

.docs-sidebar-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 28px 0 14px;
}

.docs-summary-nav {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 14px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #d8dbe1 transparent;
}

.docs-summary-nav::-webkit-scrollbar {
  width: 6px;
}

.docs-summary-nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d8dbe1;
}

.book-summary ul.summary {
  margin: 0;
  padding: 0;
  background: transparent;
}

.book-summary ul.summary li.divider,
.book-summary ul.summary li .divider {
  display: none;
}

.book-summary ul.summary li.header {
  margin: 28px 0 9px;
  padding: 0;
  color: #2f3136;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.book-summary ul.summary li.chapter > a,
.book-summary ul.summary li.chapter > span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 8px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #696d74;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

.book-summary ul.summary > li.chapter:nth-of-type(-n + 4) > a::before,
.book-summary ul.summary > li.chapter:nth-of-type(-n + 4) > span::before {
  display: none;
}

.book-summary ul.summary li.chapter > a .docs-nav-icon,
.book-summary ul.summary li.chapter > span .docs-nav-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #9ba1aa;
}

.book-summary ul.summary li.chapter .docs-nav-icon svg {
  display: block !important;
  width: 17px;
  height: 17px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.book-summary ul.summary li.chapter > a:hover,
.book-summary ul.summary li.chapter > a:focus,
.book-summary ul.summary li.chapter.active > a {
  background: transparent;
  color: var(--docs-blue);
  font-weight: 600;
  text-decoration: none;
}

.book-summary ul.summary li.chapter.has-children > a::after,
.book-summary ul.summary li.chapter.has-children > span::after {
  content: "\f105";
  margin-left: auto;
  color: #a8adb5;
  font-family: FontAwesome;
  font-size: 14px;
}

.book-summary ul.summary li.chapter ul.articles {
  margin: 0 0 3px 16px;
  padding: 0 0 0 14px;
  border-left: 1px solid #edf0f3;
}

.book-summary ul.summary li.chapter ul.articles li.chapter > a,
.book-summary ul.summary li.chapter ul.articles li.chapter > span {
  min-height: 34px;
  padding: 6px 6px 6px 0;
  font-size: 14px;
}

.docs-support-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 296px);
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--docs-text);
  text-decoration: none;
}

.docs-support-link:hover,
.docs-support-link:focus {
  border-color: #bcc7e2;
  box-shadow: 0 4px 14px rgba(70, 87, 132, 0.08);
  color: var(--docs-text);
  text-decoration: none;
}

.docs-support-link:focus-visible {
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.docs-support-link__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf2ff;
  color: #526fae;
  font-size: 16px;
}

.docs-support-link__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 1px;
}

.docs-support-link__prompt {
  color: #7c8491;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.docs-support-link__action {
  color: #4f6192;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}

.docs-support-link__arrow {
  flex: 0 0 auto;
  color: #8c98b5;
  font-size: 11px;
  transition: transform 160ms ease;
}

.docs-support-link:hover .docs-support-link__arrow,
.docs-support-link:focus .docs-support-link__arrow {
  transform: translateX(2px);
}

.book-body {
  position: relative !important;
  left: auto !important;
  width: auto !important;
  min-width: 0;
  height: calc(100vh - var(--docs-header-height));
  min-height: 0;
  margin: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  transform: none !important;
}

.body-inner {
  min-height: 100%;
  background: #fff;
}

.page-wrapper {
  min-height: inherit;
  padding: 28px 0 80px;
}

.docs-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--docs-toc-width);
  column-gap: var(--docs-layout-gap);
  align-items: start;
}

.page-inner {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.docs-content-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 33px;
  margin-bottom: 10px;
}

.docs-breadcrumb {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: #8b9099;
  font-size: 14px;
}

.docs-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--docs-blue);
  text-decoration: none;
}

.docs-breadcrumb span {
  overflow: hidden;
  color: var(--docs-blue);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-copy-button {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 0 0 12px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 8px;
  background: #fff;
  color: #686d76;
  font-size: 14px;
  cursor: pointer;
}

.docs-copy-button > span {
  margin: 0 10px 0 8px;
}

.docs-copy-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-left: 1px solid var(--docs-border-strong);
}

.docs-copy-button:hover,
.docs-copy-button:focus,
.docs-copy-button.is-copied {
  border-color: #c9d7f1;
  color: var(--docs-blue);
}

/* Article */
.markdown-section {
  max-width: none;
  padding: 0;
  color: var(--docs-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
}

.markdown-section > * {
  max-width: 100%;
}

.markdown-section > h1:first-child {
  margin: 0 0 13px;
  color: #15161a;
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.book.has-page-icon .markdown-section > h1:first-child {
  display: flex;
  align-items: center;
  gap: 17px;
}

.book.has-page-icon .markdown-section > h1:first-child::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 38px 38px;
}

.book.page-icon-box .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M8 14h26v21H8V14Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M14 14V9.5A3.5 3.5 0 0 1 17.5 6h7A3.5 3.5 0 0 1 28 9.5V14' fill='none' stroke='%237d8593' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.book.page-icon-start .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='16' fill='none' stroke='%237d8593' stroke-width='3'/%3E%3Cpath d='m18 14 11 7-11 7V14Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.book.page-icon-pricing .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Crect x='5' y='10' width='32' height='23' rx='3' fill='none' stroke='%237d8593' stroke-width='3'/%3E%3Cpath d='M5 17h32M11 25h9' fill='none' stroke='%237d8593' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.book.page-icon-video .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Crect x='4' y='10' width='25' height='22' rx='3' fill='none' stroke='%237d8593' stroke-width='3'/%3E%3Cpath d='m29 17 9-5v18l-9-5v-8Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.book.page-icon-guide .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M5 9c6 0 10.5 1.6 16 5v20c-5.5-3.4-10-5-16-5V9Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M37 9c-6 0-10.5 1.6-16 5v20c5.5-3.4 10-5 16-5V9Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.book.is-home-page .docs-breadcrumb > .fa-angle-right,
.book.is-home-page .docs-breadcrumb > span {
  display: none;
}

.markdown-section > h1 + p {
  margin-top: 0;
  margin-bottom: 28px;
  color: #666b74;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.markdown-section h2 {
  margin: 46px 0 15px;
  padding-top: 44px;
  border-top: 1px solid var(--docs-border);
  color: #1a1b1f;
  font-size: 29px;
  font-weight: 730;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.markdown-section h3 {
  margin: 32px 0 12px;
  color: #202126;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.markdown-section h4 {
  margin: 26px 0 10px;
  color: #25262b;
  font-size: 18px;
  font-weight: 700;
}

.markdown-section p,
.markdown-section li {
  color: #656a73;
}

.markdown-section p {
  margin: 0 0 18px;
  font-size: 16px;
}

.markdown-section strong {
  color: var(--docs-text);
  font-weight: 700;
}

.markdown-section a {
  color: var(--docs-blue);
  text-decoration: none;
}

.markdown-section a:hover,
.markdown-section a:focus {
  text-decoration: underline;
}

.markdown-section ul,
.markdown-section ol {
  margin: 0 0 22px;
  padding-left: 1.45em;
}

.markdown-section li {
  margin-bottom: 7px;
}

.markdown-section hr {
  height: 1px;
  margin: 42px 0;
  border: 0;
  background: var(--docs-border);
}

.markdown-section img {
  display: block;
  max-width: 100%;
  margin: 30px 0 40px;
  border-radius: 24px;
  box-shadow: none;
}

.markdown-section img[src*="boxymi-cross-device-inventory"] {
  border-radius: 0;
}

/* Homepage use-case showcase */
.markdown-section .use-cases-showcase {
  margin: 26px 0 50px;
  padding: 34px;
  border: 1px solid var(--docs-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(133, 149, 201, 0.14), transparent 34%),
    linear-gradient(145deg, #f8f9fc 0%, #ffffff 68%);
  box-shadow: 0 18px 42px rgba(54, 62, 86, 0.06);
}

.markdown-section .use-cases-intro {
  max-width: 650px;
  margin-bottom: 0;
}

.markdown-section .use-cases-intro__title {
  margin: 0 0 10px;
  color: #1b1f2d;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.markdown-section .use-cases-intro__description {
  max-width: 610px;
  margin: 0;
  color: #646b7a;
  font-size: 15.5px;
  line-height: 1.6;
}

.markdown-section .use-cases-showcase__layout {
  display: grid;
  grid-template-columns: minmax(215px, 0.82fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 28px;
  margin-top: 0;
}

.markdown-section .use-cases-showcase__copy-title {
  margin: 0 0 8px;
  color: #242a3d;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.markdown-section .use-cases-showcase__copy > p:not(.use-cases-showcase__copy-title) {
  margin: 0 0 16px;
  color: #737a89;
  font-size: 13.5px;
  line-height: 1.55;
}

.markdown-section .use-cases-showcase__benefits {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.markdown-section .use-cases-showcase__benefits li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(223, 227, 234, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #343b52;
  font-size: 12.5px;
  line-height: 1.4;
}

.markdown-section .use-cases-showcase__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(133, 149, 201, 0.14);
  color: #6678b6;
  font-size: 13px;
  font-weight: 750;
}

.markdown-section .use-cases-showcase__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 13px 10px;
}

.markdown-section .use-cases-showcase__card {
  min-width: 0;
  margin: 0;
}

.markdown-section .use-cases-showcase__card--wide {
  grid-column: span 2;
}

.markdown-section .use-cases-showcase__card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 1px solid rgba(219, 224, 233, 0.9);
  border-radius: 13px;
  background: #eef1f7;
  box-shadow: 0 7px 16px rgba(37, 45, 71, 0.08);
  object-fit: cover;
}

.markdown-section .use-cases-showcase__card--wide img {
  aspect-ratio: 2.06 / 1;
}

.markdown-section .use-cases-showcase__card figcaption {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  margin-top: 6px;
  overflow: hidden;
  color: #687187;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.markdown-section .use-cases-showcase__card figcaption::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--docs-blue);
}

/* Homepage platform links */
.markdown-section .platform-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 22px;
}

.markdown-section .platform-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  gap: 10px;
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(54, 62, 86, 0.05);
  color: #2d3448;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.markdown-section .platform-link:hover,
.markdown-section .platform-link:focus {
  border-color: rgba(133, 149, 201, 0.7);
  box-shadow: 0 12px 26px rgba(54, 62, 86, 0.09);
  color: #2d3448;
  text-decoration: none;
  transform: translateY(-2px);
}

.markdown-section .platform-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(133, 149, 201, 0.14);
  color: #687ab5;
  font-size: 18px;
}

.markdown-section .platform-link__label {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.markdown-section .platform-link__label strong {
  color: #2d3448;
  font-size: 14px;
  line-height: 1.3;
}

.markdown-section .platform-link__label small {
  color: #7a8190;
  font-size: 10.5px;
  line-height: 1.35;
}

.markdown-section .platform-link__arrow {
  color: #9ba2b0;
  font-size: 14px;
}

/* Pricing */
.markdown-section .pricing-lead {
  max-width: 680px;
  margin: 0 0 32px;
  color: #666d79;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.markdown-section .pricing-important {
  margin: 20px 0 30px;
  padding: 15px 17px;
  border: 1px solid #dce3f3;
  border-left: 3px solid #8797c8;
  border-radius: 0 11px 11px 0;
  background: #f4f6fb;
  box-shadow: none;
  color: #4f5869;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .pricing-important > strong:first-child,
.markdown-section .pricing-important p > strong:first-child {
  color: #303a56;
  font-weight: 750;
}

.markdown-section .pricing-important > strong:first-child {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .pricing-important p {
  margin: 0;
  color: #4f5869;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .pricing-important p + p {
  margin-top: 7px;
}

.markdown-section .pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 22px 0 32px;
}

.markdown-section .pricing-plan {
  display: flex;
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 22px;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--docs-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .pricing-plan--recommended {
  padding-top: 21px;
  border-top: 2px solid #8797c8;
}

.markdown-section .pricing-plan__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
  min-height: 42px;
  gap: 10px;
  margin: 0 0 11px;
}

.markdown-section .pricing-plan__audience {
  min-width: 0;
  margin: 0;
  color: #7d8492;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .pricing-plan__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  flex: 0 0 auto;
  border: 1px solid #dce2f0;
  border-radius: 999px;
  background: #f1f4fa;
  color: #6675a5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.markdown-section .pricing-plan__name {
  min-height: 28px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: #252830;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.markdown-section .pricing-plan__price {
  display: flex;
  align-items: baseline;
  min-height: 46px;
  margin: 0 0 12px;
  flex-wrap: wrap;
  gap: 3px 6px;
  color: #303646;
  font-variant-numeric: tabular-nums;
}

.markdown-section .pricing-plan__amount {
  color: #242833;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.markdown-section .pricing-plan__cadence {
  color: #7a818e;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
}

.markdown-section .pricing-plan__fit {
  min-height: 64px;
  margin: 0 0 17px;
  color: #656d7a;
  font-size: 13.5px;
  line-height: 1.55;
}

.markdown-section .pricing-plan__features {
  width: 100%;
  margin: 0 0 18px;
  padding: 15px 0 0 1.15em;
  flex: 1 1 auto;
  border-top: 1px solid #eceef3;
  color: #626a77;
  font-size: 13px;
  line-height: 1.5;
}

.markdown-section .pricing-plan__features li {
  margin: 0 0 7px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.markdown-section .pricing-plan__features li::marker {
  color: #8291c1;
}

.markdown-section .pricing-plan__footer {
  width: 100%;
  min-height: 34px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #eceef3;
}

.markdown-section .pricing-plan__action {
  display: inline-flex;
  align-items: center;
  color: #6678b0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.markdown-section .pricing-plan__action:hover,
.markdown-section .pricing-plan__action:focus {
  color: var(--docs-blue-hover);
  text-decoration: underline;
}

.markdown-section .pricing-plan__action:focus-visible {
  border-radius: 5px;
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.markdown-section .pricing-comparison-note {
  display: block;
  margin: -2px 0 11px;
  color: #7c8491;
  font-size: 12px;
  line-height: 1.45;
}

.markdown-section .pricing-comparison-wrap {
  width: 100%;
  margin: 18px 0 32px;
  overflow-x: auto;
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  scrollbar-color: #ccd2dc transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.markdown-section .pricing-comparison-wrap:focus-visible {
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.markdown-section table.pricing-comparison {
  display: table;
  width: 100%;
  min-width: 760px;
  margin: 0;
  overflow: visible;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
  background: #fff;
  table-layout: fixed;
}

.markdown-section .pricing-comparison .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.markdown-section .pricing-comparison th,
.markdown-section .pricing-comparison td {
  padding: 12px 11px;
  border: 0;
  border-bottom: 1px solid #e8eaf0;
  color: #606875;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}

.markdown-section .pricing-comparison th:first-child,
.markdown-section .pricing-comparison td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 30%;
  border-right: 1px solid #e2e5eb;
  background: #fff;
  text-align: left;
}

.markdown-section .pricing-comparison thead th {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #f7f8fa;
  color: #343a48;
  font-size: 12.5px;
  font-weight: 720;
  vertical-align: bottom;
}

.markdown-section .pricing-comparison thead th:first-child {
  z-index: 2;
  background: #f7f8fa;
}

.markdown-section .pricing-comparison tbody th {
  color: #454c5a;
  font-weight: 650;
}

.markdown-section .pricing-comparison__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.markdown-section .pricing-comparison__status--included {
  background: #edf2ff;
  color: #405d9b;
}

.markdown-section .pricing-comparison__status--excluded {
  background: #f1f3f6;
  color: #5d6673;
}

.markdown-section .pricing-comparison .pricing-comparison__group th {
  position: static;
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f3f5f9;
  border-right: 0;
  color: #65729a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .pricing-comparison tbody tr:last-child > th,
.markdown-section .pricing-comparison tbody tr:last-child > td {
  border-bottom: 0;
}

.markdown-section .pricing-billing-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 12px;
  margin: 19px 0 30px;
}

.markdown-section .pricing-billing-step {
  min-width: 0;
  height: 100%;
  padding: 17px;
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .pricing-billing-step__number {
  display: block;
  margin: 0 0 11px;
  color: #7483b4;
  font-size: 10px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.085em;
  line-height: 1;
}

.markdown-section .pricing-billing-step__title {
  display: block;
  margin: 0 0 5px;
  color: #303646;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.4;
}

.markdown-section .pricing-billing-step p:not(.pricing-billing-step__title) {
  margin: 0;
  color: #69717e;
  font-size: 12.5px;
  line-height: 1.55;
}

.markdown-section .pricing-faq {
  margin: 17px 0 32px;
  border-top: 1px solid var(--docs-border);
}

.markdown-section .pricing-faq__item {
  margin: 0;
  border-bottom: 1px solid var(--docs-border);
  background: #fff;
}

.markdown-section .pricing-faq__item summary {
  padding: 15px 2px;
  color: #394052;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.markdown-section .pricing-faq__item summary::marker {
  color: #7f8dbc;
}

.markdown-section .pricing-faq__item summary:hover,
.markdown-section .pricing-faq__item summary:focus {
  color: #6678b0;
}

.markdown-section .pricing-faq__item summary:focus-visible {
  border-radius: 5px;
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.markdown-section .pricing-faq__item[open] summary {
  padding-bottom: 9px;
}

.markdown-section .pricing-faq__item > :not(summary) {
  margin-right: 2px;
  margin-left: 2px;
}

.markdown-section .pricing-faq__item > :last-child {
  margin-bottom: 15px;
}

.markdown-section .pricing-faq__item p,
.markdown-section .pricing-faq__item li {
  color: #626a77;
  font-size: 13px;
  line-height: 1.55;
}

.markdown-section .pricing-plan-grid + h2,
.markdown-section .pricing-comparison-wrap + h2,
.markdown-section .pricing-billing-flow + h2,
.markdown-section .pricing-important + h2 {
  margin-top: 40px;
  padding-top: 34px;
}

/* Getting Started onboarding journey */
.markdown-section .onboarding-lead {
  max-width: 680px;
  margin: 0 0 38px;
  color: #666d79;
  font-size: 18px;
  line-height: 1.6;
}

.markdown-section .onboarding-journey {
  margin: 0;
}

.markdown-section .onboarding-step {
  margin: 0;
  padding: 0;
}

.markdown-section .onboarding-step-heading {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  column-gap: 24px;
  margin: 44px 0 0;
}

.markdown-section .onboarding-lead + .onboarding-step,
.markdown-section .onboarding-lead + .onboarding-journey {
  margin-top: 0;
}

.markdown-section .onboarding-lead + .onboarding-step .onboarding-step-heading,
.markdown-section .onboarding-journey > .onboarding-step:first-child .onboarding-step-heading {
  margin-top: 0;
}

.markdown-section .onboarding-step__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #cfd7ea;
  border-radius: 50%;
  background: #f7f8fb;
  color: #6374aa;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1;
}

.markdown-section .onboarding-step__heading-copy {
  min-width: 0;
}

.markdown-section .onboarding-step__eyebrow {
  margin: 0 0 4px;
  color: #7b86aa;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .onboarding-step-heading h2 {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: #202228;
  font-size: 27px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  scroll-margin-top: 28px;
}

.markdown-section .onboarding-step__outcome {
  max-width: 650px;
  margin: 0;
  color: #69707c;
  font-size: 15px;
  line-height: 1.6;
}

.markdown-section .onboarding-step-heading--optional .onboarding-step__marker {
  border-style: dashed;
  border-color: #d8dce5;
  background: #fafbfc;
  color: #858b98;
}

.markdown-section .onboarding-step-heading--optional .onboarding-step__eyebrow {
  color: #858b98;
}

.markdown-section .onboarding-step-content {
  min-width: 0;
  margin-left: 17px;
  padding: 22px 0 54px 42px;
  border-left: 1px solid #e2e6ee;
}

.markdown-section .onboarding-step-content > :first-child {
  margin-top: 0;
}

.markdown-section .onboarding-step-content > :last-child {
  margin-bottom: 0;
}

.markdown-section .onboarding-subflow {
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--docs-border);
}

.markdown-section .onboarding-subflow + .onboarding-subflow {
  margin-top: 32px;
}

.markdown-section .onboarding-step-content > .onboarding-subflow:first-child {
  padding-top: 0;
  border-top: 0;
}

.markdown-section .onboarding-subflow__label {
  margin: 0 0 5px;
  color: #7482b0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .onboarding-subflow__title {
  margin: 0 0 8px;
  color: #252830;
  font-size: 21px;
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.markdown-section .onboarding-subflow__intro {
  max-width: 640px;
  margin: 0 0 18px;
  color: #666d78;
  font-size: 15px;
  line-height: 1.6;
}

.markdown-section .onboarding-actions {
  margin: 18px 0 22px;
  padding: 0;
  counter-reset: onboarding-action;
  list-style: none;
}

.markdown-section .onboarding-actions > li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 32px;
  counter-increment: onboarding-action;
  color: #5f6672;
  line-height: 1.6;
}

.markdown-section .onboarding-actions > li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  color: #7180b1;
  content: counter(onboarding-action, decimal-leading-zero);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.markdown-section .onboarding-media {
  width: 100%;
  margin: 22px 0 28px;
  overflow: hidden;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .onboarding-media > img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.markdown-section .onboarding-media__placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 24px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f8fb;
  color: #596173;
  text-align: center;
}

.markdown-section .onboarding-media__label {
  margin-bottom: 6px;
  color: #8991a2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.markdown-section .onboarding-media__placeholder strong {
  color: #343a4c;
  font-size: 17px;
  line-height: 1.35;
}

.markdown-section .onboarding-media__placeholder small {
  max-width: 260px;
  margin-top: 7px;
  color: #7b8392;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .onboarding-media figcaption {
  display: flex;
  padding: 13px 15px 14px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #e6eaf2;
  color: #727a89;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .onboarding-media figcaption strong {
  color: #343a4c;
  font-size: 13px;
}

.markdown-section .onboarding-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 26px;
}

.markdown-section .onboarding-route {
  min-width: 0;
  height: 100%;
  padding: 15px 16px;
  border: 1px solid var(--docs-border);
  border-radius: 11px;
  background: #fff;
}

.markdown-section .onboarding-route > strong {
  display: block;
  margin-bottom: 4px;
  color: #303646;
  font-size: 14px;
  line-height: 1.4;
}

.markdown-section .onboarding-route p {
  margin: 0;
  color: #6b727f;
  font-size: 13px;
  line-height: 1.5;
}

.markdown-section .onboarding-checkpoint {
  margin: 22px 0 28px;
  padding: 15px 17px;
  border-left: 3px solid #8797c8;
  border-radius: 0 10px 10px 0;
  background: #f5f7fb;
}

.markdown-section .onboarding-checkpoint__label {
  margin: 0 0 3px;
  color: #59688f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .onboarding-checkpoint p {
  margin: 0;
  color: #505867;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .onboarding-aside {
  margin: 20px 0 28px;
  padding: 14px 16px;
  border: 1px solid #e3e6ec;
  border-radius: 10px;
  background: #fafbfc;
}

.markdown-section .onboarding-aside--tip {
  border-left: 3px solid #c8cdd7;
}

.markdown-section .onboarding-aside--important {
  border-color: #dce3f3;
  border-left: 3px solid #8797c8;
  background: #f4f6fb;
}

.markdown-section .onboarding-aside p {
  margin: 0;
  color: #555d6a;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .onboarding-aside p + p {
  margin-top: 8px;
}

.markdown-section .onboarding-aside strong {
  color: #303646;
}

.markdown-section .onboarding-help {
  margin: 20px 0 28px;
  border-top: 1px solid var(--docs-border);
  border-bottom: 1px solid var(--docs-border);
}

.markdown-section .onboarding-help summary {
  padding: 14px 2px;
  color: #38415a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.markdown-section .onboarding-help[open] summary {
  padding-bottom: 10px;
}

.markdown-section .onboarding-help > :not(summary) {
  margin-right: 2px;
  margin-left: 2px;
}

.markdown-section .onboarding-help > :last-child {
  margin-bottom: 16px;
}

.markdown-section .onboarding-complete {
  margin: 8px 0 50px;
  padding: 22px 24px;
  border: 1px solid #d9e1f1;
  border-radius: 14px;
  background: #f5f7fb;
}

.markdown-section .onboarding-complete h2,
.markdown-section .onboarding-complete h3 {
  margin: 0 0 7px;
  padding: 0;
  border: 0;
  color: #283147;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.markdown-section .onboarding-complete p {
  margin: 0;
  color: #596274;
  font-size: 14px;
  line-height: 1.6;
}

.markdown-section .onboarding-complete .onboarding-complete__eyebrow {
  margin-bottom: 5px;
  color: #6574a5;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .onboarding-complete .onboarding-complete__title {
  margin-bottom: 6px;
  color: #283147;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.markdown-section .onboarding-admin {
  margin: 0;
  padding: 38px 0 0;
  border-top: 1px solid var(--docs-border);
}

.markdown-section .onboarding-admin h2 {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  font-size: 25px;
}

.markdown-section .onboarding-admin__eyebrow {
  margin: 0 0 5px;
  color: #7e8695;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .onboarding-admin__routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.markdown-section .onboarding-admin__route {
  min-width: 0;
  height: 100%;
  padding: 16px 17px;
  border: 1px solid var(--docs-border);
  border-radius: 11px;
  background: #fff;
}

.markdown-section .onboarding-admin__route p {
  margin: 0;
  color: #6b727f;
  font-size: 13px;
  line-height: 1.55;
}

.markdown-section .onboarding-admin__route .onboarding-admin__route-title {
  display: block;
  margin: 0 0 5px;
  color: #303646;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.markdown-section .onboarding-admin > :last-child {
  margin-bottom: 0;
}

/* Product guide */
.markdown-section .guide-section-lead {
  max-width: 650px;
  margin: -3px 0 28px;
  color: #727987;
  font-size: 15px;
  line-height: 1.6;
}

.markdown-section p:has(> .guide-anchor) {
  height: 0;
  margin: 0;
}

.markdown-section p:has(> .guide-anchor) + h3 {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #eceff4;
}

.markdown-section h2 + .guide-section-lead + p:has(> .guide-anchor) + h3 {
  margin-top: 26px;
  padding-top: 0;
  border-top: 0;
}

.markdown-section .guide-topic-label {
  display: block;
  margin: 0 0 7px;
  color: #6f7fb4;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.markdown-section .guide-topic-intro {
  width: 100%;
  margin: 0 0 22px;
  color: #5f6571;
  font-size: 16px;
  line-height: 1.6;
}

.markdown-section .concept-layout > .guide-topic-label,
.markdown-section .concept-layout > .guide-topic-intro {
  grid-column: 1 / -1;
  order: 0;
}

.markdown-section .concept-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin: 0 0 18px;
}

.markdown-section .concept-layout__content,
.markdown-section .concept-image-placeholder,
.markdown-section .concept-screenshot,
.markdown-section .guide-media {
  min-width: 0;
}

.markdown-section .concept-layout__content {
  order: 1;
}

.markdown-section .concept-image-placeholder,
.markdown-section .concept-screenshot,
.markdown-section .guide-media {
  width: 100%;
  order: 2;
}

.markdown-section .concept-layout__content p:first-child {
  margin-top: 0;
}

.markdown-section .concept-layout__content p:last-child,
.markdown-section .concept-layout__content ul:last-child {
  margin-bottom: 0;
}

.markdown-section .concept-layout--reverse .concept-layout__content {
  order: 1;
}

.markdown-section .concept-layout--reverse .concept-image-placeholder,
.markdown-section .concept-layout--reverse .concept-screenshot,
.markdown-section .concept-layout--reverse .guide-media {
  order: 2;
}

.markdown-section .concept-layout--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.markdown-section .concept-layout--wide .concept-screenshot {
  width: 100%;
}

.markdown-section .concept-layout--wide .guide-media {
  width: 100%;
}

.markdown-section .concept-layout--wide .concept-screenshot--focused {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
}

.markdown-section .concept-screenshot {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .concept-screenshot img {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.markdown-section .concept-screenshot--focused {
  padding: 0;
  background: #fff;
}

.markdown-section .concept-screenshot--focused img {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.markdown-section .concept-screenshot--focused img + img {
  margin-top: 0;
  border-top: 1px solid #e6eaf2;
}

.markdown-section .concept-screenshot--trim-left img {
  width: calc(100% + 2px);
  margin-left: -2px;
}

.markdown-section .concept-screenshot figcaption {
  display: flex;
  padding: 12px 14px 13px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #e6eaf2;
  color: #737b8c;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .concept-screenshot--focused figcaption {
  margin: 0;
  background: #fff;
}

.markdown-section .concept-screenshot figcaption strong {
  color: #343a4c;
  font-size: 13px;
}

.markdown-section .guide-media {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .guide-media > img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.markdown-section .guide-media__placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f8fb;
  color: #596173;
  text-align: center;
}

.markdown-section .guide-media--wide .guide-media__placeholder {
  aspect-ratio: 16 / 10;
}

.markdown-section .guide-media__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  border: 1px solid #d9deea;
  border-radius: 11px;
  background: #fff;
  color: #7d8bbc;
  font-size: 18px;
}

.markdown-section .guide-media__label {
  margin-bottom: 5px;
  color: #8a91a0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.markdown-section .guide-media__placeholder strong {
  color: #343a4c;
  font-size: 16px;
  line-height: 1.35;
}

.markdown-section .guide-media__placeholder small {
  margin-top: 6px;
  color: #7d8492;
  font-size: 11px;
  line-height: 1.4;
}

.markdown-section .guide-media figcaption {
  display: flex;
  padding: 12px 14px 13px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #e6eaf2;
  color: #737b8c;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .guide-media figcaption strong {
  color: #343a4c;
  font-size: 13px;
}

.markdown-section .concept-list {
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.markdown-section .concept-list li {
  margin: 6px 0;
}

.markdown-section .concept-image-placeholder {
  display: flex;
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 24px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #f7f8fb;
  color: #343a4c;
  text-align: center;
}

.markdown-section .concept-image-placeholder__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  border-radius: 13px;
  background: rgba(133, 149, 201, 0.16);
  color: #6f80b8;
  font-size: 21px;
}

.markdown-section .concept-image-placeholder__eyebrow {
  margin-bottom: 5px;
  color: #8790a4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.markdown-section .concept-image-placeholder strong {
  color: #343a4c;
  font-size: 15px;
  line-height: 1.35;
}

.markdown-section .concept-image-placeholder small {
  max-width: 210px;
  margin-top: 5px;
  color: #777f90;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .concept-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0 34px;
  padding: 14px 16px;
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  background: #f7f8fa;
  box-shadow: none;
}

.markdown-section .concept-note > .fa {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #7888bc;
  font-size: 15px;
}

.markdown-section .concept-note p {
  min-width: 0;
  margin: 0;
  color: #505664;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .concept-note__label,
.markdown-section .guide-note__label {
  color: #303646;
  font-weight: 750;
}

.markdown-section .guide-important {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 16px 18px;
  border: 1px solid #dce3f3;
  border-radius: 12px;
  background: #f3f6fc;
  box-shadow: none;
}

.markdown-section .guide-important__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 9px;
  background: #e5eaf6;
  color: #6f7fb4;
  font-size: 15px;
}

.markdown-section .guide-important > p,
.markdown-section .guide-important__content {
  min-width: 0;
  margin: 0;
  flex: 1 1 auto;
}

.markdown-section .guide-important p {
  margin: 0;
  color: #495266;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .guide-important__label {
  display: block;
  margin-bottom: 3px;
  color: #303a56;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .concept-path-example {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  background: #fafbfc;
  color: #5e6573;
  font-size: 14px;
  white-space: nowrap;
}

.markdown-section .concept-path-example .fa {
  color: #a6adba;
  font-size: 11px;
}

.markdown-section .concept-path-example strong {
  color: #35426d;
}

.markdown-section .concept-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 18px 0;
}

.markdown-section .guide-card-heading {
  margin: 26px 0 10px;
  color: #343b4d;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.markdown-section .guide-important + .guide-card-heading {
  margin-top: 0;
}

.markdown-section .guide-card-heading + .concept-card-grid {
  margin-top: 0;
}

.markdown-section .concept-card {
  display: flex;
  height: 100%;
  min-height: 168px;
  min-width: 0;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--docs-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .concept-card::before {
  width: 30px;
  height: 2px;
  flex: 0 0 2px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #8b9ac9;
  content: "";
}

.markdown-section .concept-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin-bottom: 11px;
  border-radius: 10px;
  background: #edf0f8;
  color: #7080b7;
  font-size: 16px;
}

.markdown-section .concept-card > strong {
  display: block;
  margin-bottom: 6px;
  color: #303646;
  font-size: 15px;
  line-height: 1.4;
}

.markdown-section .concept-card p {
  width: 100%;
  margin: 0;
  flex: 1 1 auto;
  color: #686f7d;
  font-size: 13px;
  line-height: 1.55;
}

.markdown-section .concept-card-grid--steps {
  counter-reset: guide-step;
}

.markdown-section .concept-card-grid--steps .concept-card {
  counter-increment: guide-step;
}

.markdown-section .concept-card-grid--steps .concept-card__icon,
.markdown-section .concept-card-grid--lifecycle .concept-card__icon,
.markdown-section .concept-card-grid--aspects .concept-card__icon {
  display: none;
}

.markdown-section .concept-card-grid--steps .concept-card > strong::before {
  display: block;
  margin-bottom: 7px;
  color: #7584b5;
  content: counter(guide-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
}

.markdown-section .concept-card-grid--lifecycle .concept-card > strong {
  display: inline-flex;
  width: auto;
  margin-bottom: 10px;
  padding: 4px 8px;
  border: 1px solid #dfe4f2;
  border-radius: 999px;
  background: #f5f7fb;
  color: #59678f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.markdown-section .concept-card-grid--aspects .concept-card > strong {
  margin-bottom: 7px;
}

.markdown-section .guide-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.markdown-section .guide-comparison-column {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--docs-border);
  border-radius: 13px;
  background: #fff;
}

.markdown-section .guide-comparison-column strong {
  display: block;
  margin-bottom: 9px;
  color: #303646;
  font-size: 14px;
}

.markdown-section .guide-comparison-column ul {
  margin: 0;
  padding-left: 1.15em;
}

.markdown-section .guide-comparison-column li {
  margin: 5px 0;
  color: #686f7d;
  font-size: 12.5px;
  line-height: 1.45;
}

.markdown-section .guide-coming-soon {
  margin: 10px 0 28px;
  padding: 16px 18px;
  border: 1px dashed #d8ddea;
  border-radius: 12px;
  background: #fafbfc;
}

.markdown-section .guide-coming-soon p:last-child {
  margin-bottom: 0;
}

.markdown-section .guide-anchor {
  display: block;
  position: relative;
  top: -18px;
  visibility: hidden;
}

.markdown-section .feature-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 12px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.markdown-section .feature-status--coming-soon {
  color: #9a4d13;
  background: #fff1df;
}

/* Video tutorials */
.markdown-section .video-hub-lead,
.markdown-section .video-walkthrough-lead {
  max-width: 680px;
  margin: 0 0 26px;
  color: #666d79;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.markdown-section .video-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 24px 0 30px;
}

.markdown-section .video-card {
  display: flex;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--docs-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .video-card__media {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 22px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e6e9ef;
  background: #f6f7fa;
  color: #596173;
  text-align: center;
}

.markdown-section a.video-card__media {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}

.markdown-section a.video-card__media:focus-visible {
  z-index: 1;
  outline: 3px solid #677cc2;
  outline-offset: -3px;
}

.markdown-section .video-card__media > img,
.markdown-section .video-card__media > video,
.markdown-section .video-card__media > iframe {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f6f7fa;
  box-shadow: none;
  object-fit: contain;
}

.markdown-section a.video-card__media > img {
  object-fit: cover;
  transition: transform 180ms ease;
}

.markdown-section a.video-card__media:hover > img,
.markdown-section a.video-card__media:focus-visible > img {
  transform: scale(1.015);
}

.markdown-section .video-card__play,
.markdown-section .video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(18, 27, 65, 0.82);
  box-shadow: 0 8px 24px rgba(8, 14, 37, 0.28);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.markdown-section .video-card__play::after,
.markdown-section .video-player__play::after {
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.markdown-section a.video-card__media:hover .video-card__play,
.markdown-section a.video-card__media:focus-visible .video-card__play {
  background: rgba(66, 84, 151, 0.94);
  transform: translate(-50%, -50%) scale(1.06);
}

.markdown-section .video-player__play {
  width: 64px;
  height: 64px;
}

.markdown-section .video-player__play::after {
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
}

.markdown-section .video-card__status,
.markdown-section .video-player__status {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid #dce2f0;
  border-radius: 999px;
  background: #f1f4fa;
  color: #6675a5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
}

.markdown-section .video-card__media > strong {
  color: #343a4c;
  font-size: 17px;
  line-height: 1.35;
}

.markdown-section .video-card__media > small {
  max-width: 255px;
  margin-top: 6px;
  color: #7c8493;
  font-size: 11px;
  line-height: 1.45;
}

.markdown-section .video-card__body {
  display: flex;
  min-width: 0;
  padding: 19px 20px 20px;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

.markdown-section .video-card__platform {
  margin: 0 0 5px;
  color: #7281b1;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .video-card__title {
  margin: 0 0 7px;
  color: #2d3342;
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.markdown-section .video-card__outcome {
  margin: 0;
  color: #666e7c;
  font-size: 13.5px;
  line-height: 1.55;
}

.markdown-section .video-card__meta {
  display: flex;
  width: 100%;
  margin: 14px 0 12px;
  padding: 9px 0;
  flex-wrap: wrap;
  gap: 5px 14px;
  border-top: 1px solid #eceef3;
  border-bottom: 1px solid #eceef3;
}

.markdown-section .video-card__meta span {
  color: #747b88;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.markdown-section .video-card__coverage {
  width: 100%;
  margin: 0 0 16px;
  color: #69717e;
  font-size: 12.5px;
  line-height: 1.5;
}

.markdown-section ul.video-card__coverage,
.markdown-section ol.video-card__coverage {
  padding-left: 1.2em;
}

.markdown-section .video-card__coverage li {
  margin: 4px 0;
  color: inherit;
  font-size: inherit;
}

.markdown-section .video-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #6678b0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.markdown-section .video-card__link:hover,
.markdown-section .video-card__link:focus {
  color: var(--docs-blue-hover);
  text-decoration: underline;
}

.markdown-section .video-card__link:focus-visible,
.markdown-section .video-related-link:focus-visible {
  border-radius: 5px;
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.markdown-section .video-prep-note {
  margin: 20px 0 34px;
  padding: 14px 16px;
  border-left: 3px solid #c7cfdf;
  border-radius: 0 10px 10px 0;
  background: #f8f9fb;
}

.markdown-section .video-prep-note p,
.markdown-section .video-prep-note > :last-child {
  margin-bottom: 0;
}

.markdown-section .video-prep-note > strong:first-child {
  display: block;
  margin-bottom: 3px;
  color: #353c4d;
  font-size: 13px;
  line-height: 1.45;
}

.markdown-section .video-prep-note p,
.markdown-section .video-prep-note > span {
  display: block;
  color: #59616f;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .video-walkthrough-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  margin: 20px 0 30px;
  padding: 1px;
  overflow: hidden;
  border-radius: 11px;
  background: #e4e7ed;
}

.markdown-section .video-walkthrough-meta__item {
  min-width: 0;
  padding: 11px 13px;
  background: #fff;
}

.markdown-section .video-walkthrough-meta dt {
  margin: 0 0 3px;
  color: #868d9a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.markdown-section .video-walkthrough-meta dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #343a48;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.4;
}

.markdown-section .video-player {
  width: 100%;
  margin: 20px 0 34px;
  overflow: hidden;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.markdown-section .video-player__placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 30px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6f7fa;
  color: #596173;
  text-align: center;
}

.markdown-section .video-player__facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111936;
  color: #fff;
  text-decoration: none;
}

.markdown-section .video-player__facade > img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  transition: transform 180ms ease;
}

.markdown-section .video-player__facade:hover > img,
.markdown-section .video-player__facade:focus-visible > img {
  transform: scale(1.01);
}

.markdown-section .video-player__facade:hover .video-player__play,
.markdown-section .video-player__facade:focus-visible .video-player__play {
  background: rgba(66, 84, 151, 0.94);
  transform: translate(-50%, -50%) scale(1.06);
}

.markdown-section .video-player__facade:focus-visible {
  outline: 3px solid #8ea0df;
  outline-offset: -3px;
}

.markdown-section .video-player__placeholder > strong {
  color: #303646;
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.markdown-section .video-player__placeholder > small {
  max-width: 460px;
  margin-top: 7px;
  color: #767e8c;
  font-size: 12px;
  line-height: 1.5;
}

.markdown-section .video-player > video,
.markdown-section .video-player > iframe,
.markdown-section .video-player > img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f6f7fa;
  box-shadow: none;
  object-fit: contain;
}

.markdown-section .video-player figcaption {
  display: flex;
  padding: 12px 14px 13px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #e6eaf2;
  color: #737b88;
  font-size: 11.5px;
  line-height: 1.5;
}

.markdown-section .video-player figcaption strong {
  color: #343a4c;
  font-size: 13px;
}

.markdown-section .video-section-intro {
  max-width: 640px;
  margin: -2px 0 16px;
  color: #747b88;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .video-learning-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 16px 0 30px;
  padding: 0;
  list-style: none;
}

.markdown-section .video-learning-list li {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 12px 0 12px 17px;
  border-top: 1px solid #e8eaf0;
  color: #626a78;
  font-size: 14px;
  line-height: 1.5;
}

.markdown-section .video-learning-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #8695c5;
  content: "";
}

.markdown-section .video-learning-list strong {
  color: #303646;
}

.markdown-section .video-chapters,
.markdown-section .video-follow-along {
  margin: 16px 0 30px;
  border-bottom: 1px solid #e7e9ee;
}

.markdown-section .video-chapter {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  min-width: 0;
  padding: 15px 0;
  border-top: 1px solid #e7e9ee;
}

.markdown-section .video-chapter__time {
  padding-top: 2px;
  color: #7382b2;
  font-size: 11px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.markdown-section .video-chapter__copy,
.markdown-section .video-action-row > div {
  min-width: 0;
}

.markdown-section .video-chapter__copy > strong,
.markdown-section .video-action-row > div > strong {
  display: block;
  margin-bottom: 3px;
  color: #303646;
  font-size: 14px;
  line-height: 1.45;
}

.markdown-section .video-chapter__copy p,
.markdown-section .video-action-row > div > p {
  margin: 0;
  color: #6a717e;
  font-size: 13px;
  line-height: 1.55;
}

.markdown-section .video-action-row b {
  color: #4c5463;
  font-weight: 700;
}

.markdown-section .video-action-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid #e7e9ee;
}

.markdown-section .video-action-row__label {
  margin: 0;
  padding-top: 3px;
  color: #7382b2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .video-important {
  margin: 20px 0 30px;
  padding: 15px 17px;
  border: 1px solid #dce3f3;
  border-left: 3px solid #8797c8;
  border-radius: 0 11px 11px 0;
  background: #f4f6fb;
}

.markdown-section .video-important > strong:first-child {
  display: block;
  margin-bottom: 4px;
  color: #303a56;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .video-important p {
  margin: 0;
  color: #4f5869;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .video-important p + p {
  margin-top: 7px;
}

.markdown-section .video-checkpoint {
  margin: 20px 0 30px;
  padding: 15px 17px;
  border-left: 3px solid #8797c8;
  border-radius: 0 10px 10px 0;
  background: #f5f7fb;
}

.markdown-section .video-checkpoint__label {
  margin: 0 0 3px;
  color: #59688f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .video-checkpoint p {
  margin: 0;
  color: #505867;
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section .video-transcript-notice {
  margin: 22px 0 32px;
  padding: 0;
  border-top: 1px solid var(--docs-border);
  border-bottom: 1px solid var(--docs-border);
  background: #fff;
}

.markdown-section .video-transcript-notice summary {
  padding: 14px 2px;
  color: #394052;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.markdown-section .video-transcript-notice summary:hover,
.markdown-section .video-transcript-notice summary:focus {
  color: #6678b0;
}

.markdown-section .video-transcript-notice summary:focus-visible {
  border-radius: 5px;
  outline: 2px solid #aebbe0;
  outline-offset: 3px;
}

.markdown-section .video-transcript-notice[open] summary {
  padding-bottom: 9px;
}

.markdown-section .video-transcript-notice > :not(summary) {
  margin-right: 2px;
  margin-left: 2px;
}

.markdown-section .video-transcript-notice > strong:first-child {
  display: block;
  padding-top: 14px;
  color: #394052;
  font-size: 14px;
  line-height: 1.45;
}

.markdown-section .video-transcript-notice > :last-child {
  margin-bottom: 15px;
}

.markdown-section .video-transcript-notice p,
.markdown-section .video-transcript-notice li {
  color: #626a77;
  font-size: 13px;
  line-height: 1.55;
}

.markdown-section .video-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  margin: 17px 0 30px;
}

.markdown-section .video-related-link {
  display: flex;
  min-width: 0;
  min-height: 112px;
  height: 100%;
  padding: 17px 18px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.markdown-section .video-related-link::before {
  width: 28px;
  height: 2px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: #8b9ac9;
  content: "";
}

.markdown-section .video-related-link > strong {
  margin-bottom: 4px;
  color: #303646;
  font-size: 14px;
  line-height: 1.4;
}

.markdown-section .video-related-link > span {
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.5;
}

.markdown-section .video-related-link:hover,
.markdown-section .video-related-link:focus {
  border-color: #cbd4ea;
  background: #fafbfe;
  text-decoration: none;
}

.markdown-section .video-hub-lead + h2,
.markdown-section .video-player + h2,
.markdown-section .video-learning-list + h2,
.markdown-section .video-chapters + h2,
.markdown-section .video-checkpoint + h2,
.markdown-section .video-transcript-notice + h2 {
  margin-top: 40px;
  padding-top: 34px;
}

.markdown-section blockquote {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid #9dbcf5;
  background: #f6f9fe;
  color: #5f6670;
}

.markdown-section table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--docs-border);
  border-radius: 10px;
}

.markdown-section table th,
.markdown-section table td {
  padding: 12px 14px;
  border-color: var(--docs-border);
  text-align: left;
}

.markdown-section table thead tr {
  background: var(--docs-bg-soft);
}

.markdown-section code {
  padding: 0.16em 0.4em;
  border: 1px solid #e1e7f1;
  border-radius: 5px;
  background: #f5f7fa;
  color: #285faf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.markdown-section pre {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--docs-border);
  border-radius: 10px;
  background: #f7f8fa;
}

.markdown-section pre > code {
  display: block;
  padding: 18px;
  border: 0;
  background: transparent;
  color: #333842;
}

/* On-this-page outline */
.docs-toc {
  position: sticky;
  top: 28px;
  max-height: calc(100vh - var(--docs-header-height) - 48px);
  overflow-y: auto;
  padding: 7px 0 20px;
}

.docs-toc.is-empty {
  visibility: hidden;
}

.docs-toc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #60656e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.docs-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.docs-toc nav a {
  display: block;
  padding: 7px 0;
  color: #7b8089;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.docs-toc nav a.is-subsection {
  margin-left: 0;
  padding-left: 14px;
  border-left: 1px solid #e7e9ed;
  color: #9a9fa8;
}

.docs-toc nav a:hover,
.docs-toc nav a:focus,
.docs-toc nav a.is-active {
  color: var(--docs-blue);
}

/* Search results */
#book-search-results .search-results-title {
  margin-top: 20px;
  color: var(--docs-text);
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  opacity: 1;
  text-transform: none;
}

#book-search-results .search-results-list {
  padding: 0;
  list-style: none;
}

#book-search-results .search-results-item {
  margin-bottom: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--docs-border);
}

.navigation,
.book-header {
  display: none !important;
}

@media screen and (max-width: 1320px) {
  .docs-search-shell {
    width: min(100%, 470px);
    margin-left: 8px;
  }
}

@media screen and (max-width: 1150px) {
  .docs-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  :root {
    --docs-header-height: 116px;
  }

  .docs-shell-width {
    width: calc(100% - 32px);
    max-width: var(--docs-shell-width);
  }

  .docs-header-primary {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    height: 66px;
  }

  .docs-top-brand span,
  .docs-website-button {
    display: none;
    
  }

  .docs-search-shell {
    width: 100%;
    margin-left: 0;
  }

  .docs-header-secondary,
  .docs-secondary-inner {
    height: 50px;
  }

  .docs-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    color: #555b65;
    text-decoration: none;
  }

  .docs-product-nav {
    margin-right: auto;
    gap: 22px;
  }

  .docs-product-nav span {
    display: none;
  }

  .docs-layout {
    display: block;
  }

  .book-summary {
    position: fixed !important;
    top: var(--docs-header-height);
    bottom: 0;
    left: 0 !important;
    z-index: 50;
    width: min(84vw, 320px) !important;
    height: calc(100vh - var(--docs-header-height));
    padding-left: 18px;
    border-right: 1px solid var(--docs-border);
    box-shadow: 18px 24px 40px rgba(20, 24, 32, 0.09);
    transform: translateX(-105%) !important;
    transition: transform 180ms ease;
  }

  .book.with-summary .book-summary {
    transform: translateX(0) !important;
  }

  .book-body {
    width: 100% !important;
  }

  .page-wrapper {
    padding-top: 24px;
  }

  .docs-page-grid {
    display: block;
  }

  .page-inner {
    max-width: var(--docs-content-width);
    margin: 0 auto;
  }
}

@media screen and (max-width: 700px) {
  .markdown-section .pricing-lead {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .markdown-section .pricing-plan-grid,
  .markdown-section .pricing-billing-flow {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .markdown-section .pricing-plan-grid {
    gap: 14px;
  }

  .markdown-section .pricing-plan {
    height: auto;
    padding: 20px;
  }

  .markdown-section .pricing-plan--recommended {
    padding-top: 19px;
  }

  .markdown-section .pricing-plan__name,
  .markdown-section .pricing-plan__price,
  .markdown-section .pricing-plan__fit,
  .markdown-section .pricing-plan__topline {
    min-height: 0;
  }

  .markdown-section .pricing-billing-flow {
    gap: 0;
    border-bottom: 1px solid var(--docs-border);
  }

  .markdown-section .pricing-billing-step {
    padding: 16px 2px;
    border: 0;
    border-top: 1px solid var(--docs-border);
    border-radius: 0;
  }

  .markdown-section .concept-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .markdown-section .video-card-grid,
  .markdown-section .video-learning-list,
  .markdown-section .video-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .markdown-section .video-card-grid {
    gap: 18px;
  }

  .markdown-section .video-learning-list {
    gap: 0;
  }

  .markdown-section .onboarding-lead {
    margin-bottom: 32px;
    font-size: 17px;
  }

  .markdown-section .onboarding-step-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 13px;
    margin-top: 36px;
  }

  .markdown-section .onboarding-step__marker {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .markdown-section .onboarding-step-heading h2 {
    font-size: 24px;
  }

  .markdown-section .onboarding-step__outcome {
    font-size: 14px;
  }

  .markdown-section .onboarding-step-content {
    margin-left: 0;
    padding: 19px 0 44px;
    border-left: 0;
  }

  .markdown-section .onboarding-subflow {
    padding-top: 24px;
  }

  .markdown-section .onboarding-subflow + .onboarding-subflow {
    margin-top: 27px;
  }

  .markdown-section .onboarding-media {
    margin-top: 20px;
  }

  .markdown-section .onboarding-complete {
    margin-bottom: 42px;
    padding: 19px 20px;
  }

  .markdown-section .onboarding-admin {
    padding-top: 32px;
  }

  .markdown-section .concept-layout--reverse .concept-layout__content,
  .markdown-section .concept-layout__content {
    order: 1;
  }

  .markdown-section .concept-layout--reverse .concept-image-placeholder,
  .markdown-section .concept-image-placeholder {
    min-height: 180px;
    order: 2;
  }

  .markdown-section .concept-layout--reverse .concept-screenshot,
  .markdown-section .concept-screenshot,
  .markdown-section .concept-layout--reverse .guide-media,
  .markdown-section .guide-media {
    min-height: 0;
    order: 2;
  }

  .markdown-section .guide-comparison-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .markdown-section .concept-card-grid,
  .markdown-section .onboarding-route-grid,
  .markdown-section .onboarding-admin__routes {
    grid-template-columns: minmax(0, 1fr);
  }

  .markdown-section .video-hub-lead,
  .markdown-section .video-walkthrough-lead {
    font-size: 16px;
  }

  .markdown-section .video-card__media,
  .markdown-section .video-player__placeholder {
    padding: 20px;
  }

  .markdown-section .video-card__body {
    padding: 17px 18px 19px;
  }

  .markdown-section .video-walkthrough-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .markdown-section .video-chapter,
  .markdown-section .video-action-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .markdown-section .video-chapter__time,
  .markdown-section .video-action-row__label {
    padding-top: 0;
  }

  .markdown-section .video-player__placeholder > strong {
    font-size: 18px;
  }

  .markdown-section .onboarding-actions > li {
    padding-left: 28px;
  }

  .markdown-section .onboarding-media__placeholder {
    padding: 18px;
  }
}

@media screen and (max-width: 760px) {
  .markdown-section .use-cases-showcase__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .markdown-section .use-cases-showcase__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .markdown-section .platform-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .markdown-section .platform-link {
    min-height: 68px;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --docs-header-height: 108px;
  }

  .docs-shell-width {
    width: calc(100% - 24px);
    max-width: var(--docs-shell-width);
  }

  .docs-header-primary {
    height: 62px;
    gap: 10px;
  }

  .docs-top-brand img {
    width: 30px;
    height: 30px;
  }

  #book-search-input {
    height: 40px;
    padding-right: 42px;
  }

  .docs-search-shortcut span:first-child {
    display: none;
  }

  .docs-header-secondary,
  .docs-secondary-inner {
    height: 46px;
  }

  .page-wrapper {
    padding-bottom: 48px;
  }

  .docs-content-toolbar {
    align-items: flex-start;
    gap: 12px;
  }

  .docs-breadcrumb span,
  .docs-breadcrumb > .fa-angle-right {
    display: none;
  }

  .docs-copy-chevron {
    display: none;
  }

  .docs-copy-button {
    padding-right: 11px;
  }

  .markdown-section > h1:first-child {
    font-size: 29px;
  }

  .markdown-section > h1 + p {
    font-size: 18px;
  }

  .markdown-section h2 {
    margin-top: 38px;
    padding-top: 36px;
    font-size: 25px;
  }

  .markdown-section h3 {
    font-size: 21px;
  }

  .markdown-section img {
    margin: 24px 0 32px;
    border-radius: 16px;
  }

  .markdown-section .use-cases-showcase {
    margin: 24px 0 42px;
    padding: 22px;
    border-radius: 20px;
  }

.markdown-section .use-cases-intro__title {
    font-size: 25px;
  }

  .markdown-section .use-cases-showcase__layout {
    gap: 24px;
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .markdown-section .use-cases-showcase__benefits,
  .markdown-section .use-cases-showcase__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .markdown-section .use-cases-showcase__benefits {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FAQ */
.book.is-faq-page {
  --docs-layout-gap: 54px;
}

.book.is-faq-page .docs-page-grid {
  grid-template-columns: minmax(0, 1fr);
}

.book.is-faq-page .docs-toc {
  display: none;
}

.book.is-faq-page .page-inner {
  width: 100%;
  max-width: 920px;
}

.book.page-icon-faq .markdown-section > h1:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M8 7h26v22H19l-8 7v-7H8V7Z' fill='none' stroke='%237d8593' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M17 15a4.4 4.4 0 0 1 8.6 1.3c0 3.7-4.6 3.4-4.6 6.2M21 26h.01' fill='none' stroke='%237d8593' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq-search-panel {
  margin: 30px 0 42px;
  padding: 20px;
  border: 1px solid #dfe4ed;
  border-radius: 16px;
  background: linear-gradient(145deg, #f7f9fd 0%, #fff 76%);
}

.markdown-section .faq-search-label {
  display: block;
  margin: 0 0 8px;
  color: #303746;
  font-size: 13px;
  font-weight: 700;
}

.faq-search-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 48px;
  padding: 0 12px 0 15px;
  border: 1px solid #d9dee8;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(41, 49, 69, 0.04);
}

.faq-search-control:focus-within {
  border-color: #a8b6da;
  box-shadow: 0 0 0 3px rgba(133, 149, 201, 0.13);
}

.faq-search-control > .fa-search {
  margin-right: 11px;
  color: #7f8794;
  font-size: 15px;
}

.faq-search-control input,
.faq-search-control input:focus {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #242731;
  font-size: 15px;
}

.faq-search-control input::placeholder {
  color: #9399a4;
}

.faq-search-control button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f0f2f6;
  color: #6f7682;
  cursor: pointer;
}

.faq-search-control button[hidden] {
  display: none !important;
}

.faq-search-control button:hover,
.faq-search-control button:focus {
  background: #e7ebf4;
  color: #566a9f;
  outline: 0;
}

.markdown-section .faq-search-meta {
  margin: 9px 1px 0;
  color: #8a909c;
  font-size: 12px;
  line-height: 1.4;
}

.faq-no-results {
  margin: 24px 0 52px;
  padding: 34px 24px;
  border: 1px dashed #d8dde6;
  border-radius: 14px;
  background: #fafbfc;
  text-align: center;
}

.faq-no-results[hidden] {
  display: none !important;
}

.faq-no-results > .fa {
  display: block;
  margin-bottom: 10px;
  color: #9aa2af;
  font-size: 20px;
}

.faq-no-results strong {
  display: block;
  margin-bottom: 4px;
  color: #363b47;
  font-size: 16px;
}

.markdown-section .faq-no-results p {
  margin: 0;
  color: #7f8692;
  font-size: 13px;
}

.markdown-section .faq-section {
  margin: 0;
  padding: 0;
}

.markdown-section .faq-section[hidden],
.markdown-section .faq-subsection[hidden],
.markdown-section .faq-item[hidden] {
  display: none !important;
}

.markdown-section .faq-section > h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 60px 0 8px;
  padding: 0;
  border: 0;
  scroll-margin-top: calc(var(--docs-header-height) + 24px);
  color: #20232b;
  font-size: 27px;
  letter-spacing: -0.025em;
}

.markdown-section .faq-section:first-of-type > h2 {
  margin-top: 0;
}

.faq-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: #eef2fb;
  color: #6f82bb;
  font-size: 15px;
}

.markdown-section .faq-section-intro {
  margin: 0 0 25px;
  color: #737985;
  font-size: 14px;
  line-height: 1.6;
}

.markdown-section .faq-subsection {
  margin: 0 0 30px;
}

.markdown-section .faq-subsection > h3 {
  margin: 0 0 10px;
  padding: 0 0 9px;
  border-bottom: 1px solid #eaecf1;
  scroll-margin-top: calc(var(--docs-header-height) + 24px);
  color: #555d6d;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.markdown-section .faq-item {
  margin: 0 0 9px;
  overflow: hidden;
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.markdown-section .faq-item:hover {
  border-color: #ccd3e2;
}

.markdown-section .faq-item[open] {
  border-color: #cfd7e9;
  box-shadow: 0 7px 19px rgba(47, 57, 83, 0.055);
}

.markdown-section .faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 13px 50px 13px 17px;
  color: #30343e;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.markdown-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.markdown-section .faq-item summary::after {
  content: "\f067";
  position: absolute;
  top: 50%;
  right: 17px;
  color: #8d95a2;
  font-family: FontAwesome;
  font-size: 11px;
  font-weight: 400;
  transform: translateY(-50%);
}

.markdown-section .faq-item[open] summary::after {
  content: "\f068";
  color: #7082b9;
}

.markdown-section .faq-item summary:hover,
.markdown-section .faq-item summary:focus {
  color: #566ca8;
  outline: 0;
}

.markdown-section .faq-answer {
  padding: 0 17px 16px;
  border-top: 1px solid #eef0f4;
  background: #fbfcfe;
}

.markdown-section .faq-answer p {
  margin: 13px 0 0;
  color: #646b77;
  font-size: 14px;
  line-height: 1.65;
}

.faq-platform,
.faq-status {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  margin-right: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: 1px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-platform {
  border: 1px solid #d7deed;
  background: #eef2fa;
  color: #6175ac;
}

.faq-status--soon {
  border: 1px solid #e3ddc5;
  background: #fbf7e9;
  color: #8a7434;
}

.faq-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 60px 0 10px;
  padding: 24px;
  border: 1px solid #dce2ee;
  border-radius: 15px;
  background: linear-gradient(140deg, #f4f6fb 0%, #fff 78%);
}

.faq-contact-card__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #6c7ead;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-contact-card strong {
  display: block;
  color: #2c3344;
  font-size: 16px;
  line-height: 1.4;
}

.markdown-section .faq-contact-card p {
  max-width: 630px;
  margin: 6px 0 0;
  color: #727a89;
  font-size: 12.5px;
  line-height: 1.55;
}

.markdown-section .faq-contact-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 9px;
  padding: 0 15px;
  border-radius: 9px;
  background: var(--docs-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.markdown-section .faq-contact-card > a:hover,
.markdown-section .faq-contact-card > a:focus {
  background: var(--docs-blue-hover);
  color: #fff;
  text-decoration: none;
}

.faq-category-nav {
  display: flex;
  flex-direction: column;
}

.faq-category-nav__eyebrow {
  margin: 0 0 7px;
  color: #a0a6b0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.faq-category-nav__title {
  margin: 0 0 16px;
  color: #2b2e35;
  font-size: 15px;
  font-weight: 720;
}

.faq-category-nav__section {
  margin-bottom: 7px;
}

.faq-category-nav__category,
.faq-category-nav__subsection {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: #6e737c;
  line-height: 1.35;
  text-decoration: none;
}

.faq-category-nav__category {
  gap: 9px;
  padding: 6px 7px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
}

.faq-category-nav__category .fa {
  width: 17px;
  flex: 0 0 17px;
  color: #9aa2af;
  text-align: center;
}

.faq-category-nav__subsections {
  margin: 2px 0 4px 15px;
  padding-left: 17px;
  border-left: 1px solid #eaedf2;
}

.faq-category-nav__subsection {
  min-height: 28px;
  padding: 4px 7px;
  font-size: 12px;
}

.faq-category-nav__category:hover,
.faq-category-nav__category:focus,
.faq-category-nav__category.is-active,
.faq-category-nav__subsection:hover,
.faq-category-nav__subsection:focus,
.faq-category-nav__subsection.is-active {
  color: #6679b2;
  text-decoration: none;
}

.faq-category-nav__category.is-active {
  background: #f0f3fa;
}

.faq-category-nav__category.is-active .fa {
  color: #7183bb;
}

@media screen and (max-width: 700px) {
  .faq-search-panel {
    margin-top: 24px;
    padding: 16px;
  }

  .markdown-section .faq-section > h2 {
    margin-top: 48px;
    font-size: 24px;
  }

  .markdown-section .faq-item summary {
    min-height: 52px;
    padding-left: 14px;
    font-size: 14px;
  }

  .markdown-section .faq-answer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .faq-contact-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    padding: 20px;
  }

  .markdown-section .faq-contact-card > a {
    justify-self: start;
  }
}
