:root {
  --docs-ink: #132238;
  --docs-muted: #5d6c7f;
  --docs-border: #d9e1e8;
  --docs-soft-border: #e8edf2;
  --docs-canvas: #f5f4ef;
  --docs-paper: #fffefb;
  --docs-navy: #111c2d;
  --docs-green: #16805b;
  --docs-green-dark: #0c6244;
  --docs-green-soft: #e6f4ed;
  --docs-blue: #176da8;
  --docs-orange: #d06b2f;
  --docs-orange-soft: #fff1e7;
  --docs-shadow: 0 18px 45px rgba(31, 45, 61, 0.08);
  --docs-topbar-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(17, 28, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 45, 0.025) 1px, transparent 1px),
    var(--docs-canvas);
  background-size: 28px 28px;
  color: var(--docs-ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.72;
}

body.docs-menu-open {
  overflow: hidden;
}

a {
  color: var(--docs-green-dark);
}

button,
input {
  font: inherit;
}

.docs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.docs-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-150%);
  padding: 9px 14px;
  background: #fff;
  color: var(--docs-navy);
  border: 2px solid var(--docs-green);
  border-radius: 3px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.docs-skip-link:focus {
  transform: translateY(0);
}

.docs-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--docs-topbar-height);
  color: #fff;
  background:
    radial-gradient(circle at 72% -120%, rgba(54, 191, 143, 0.35), transparent 38%),
    var(--docs-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.docs-topbar-inner {
  width: min(1680px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto auto minmax(260px, 640px) 1fr;
  align-items: center;
  gap: 22px;
}

.docs-brand,
.docs-product-switcher,
.docs-top-actions a {
  color: inherit;
  text-decoration: none;
}

.docs-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.docs-brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.docs-brand-divider {
  width: 1px;
  height: 27px;
  background: rgba(255, 255, 255, 0.22);
}

.docs-product-switcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.docs-product-switcher > span:nth-child(2) {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-product-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #8ce1bd;
  background: rgba(22, 128, 91, 0.22);
  border-radius: 3px;
}

.docs-search {
  position: relative;
  width: 100%;
}

.docs-search > .bi-search {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa7b7;
  pointer-events: none;
}

.docs-search input {
  width: 100%;
  height: 42px;
  padding: 0 50px 0 42px;
  color: #eef4fa;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.docs-search input::placeholder {
  color: #9eabb9;
}

.docs-search input:focus {
  border-color: #60cfa0;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(96, 207, 160, 0.13);
}

.docs-search kbd {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 23px;
  padding: 2px 6px;
  color: #aeb9c5;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.15);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.docs-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  padding: 8px;
  color: var(--docs-ink);
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: var(--docs-paper);
  box-shadow: 0 24px 65px rgba(9, 20, 35, 0.24);
}

.docs-search-results a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  color: var(--docs-ink);
  text-decoration: none;
  border-radius: 3px;
}

.docs-search-results a:hover {
  background: #eff7f3;
}

.docs-search-results strong,
.docs-search-results small {
  display: block;
}

.docs-search-results strong {
  font-size: 13px;
}

.docs-search-results small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--docs-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-search-result-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--docs-green);
  background: var(--docs-green-soft);
  border-radius: 3px;
}

.docs-search-empty {
  display: flex;
  gap: 10px;
  padding: 18px;
  color: var(--docs-muted);
}

.docs-top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.docs-top-actions a:hover {
  color: #8ce1bd;
}

.docs-mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
}

.docs-shell {
  width: min(1680px, 100%);
  min-height: calc(100vh - var(--docs-topbar-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) 230px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: var(--docs-topbar-height);
  height: calc(100vh - var(--docs-topbar-height));
  overflow-y: auto;
  padding: 24px 18px 32px;
  border-right: 1px solid var(--docs-border);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(12px);
}

.docs-sidebar-product {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 0 8px 20px;
  border-bottom: 1px solid var(--docs-border);
}

.docs-sidebar-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--docs-green);
  background: var(--docs-green-soft);
  border-radius: 3px;
  font-size: 18px;
}

.docs-sidebar-product strong,
.docs-sidebar-product span {
  display: block;
}

.docs-sidebar-product strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-sidebar-product div span {
  color: var(--docs-muted);
  font-size: 10px;
}

.docs-sidebar-product button {
  display: none;
  border: 0;
  background: transparent;
}

.docs-sidebar-home {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 8px;
  padding: 10px 11px;
  color: var(--docs-ink);
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

.docs-sidebar-home:hover,
.docs-sidebar-home.is-active {
  color: var(--docs-green-dark);
  background: var(--docs-green-soft);
}

.docs-nav-group {
  margin-bottom: 4px;
}

.docs-nav-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  color: #34445a;
  border: 0;
  border-radius: 3px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.docs-nav-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.docs-nav-heading:hover {
  background: #edf0ef;
}

.docs-nav-chevron {
  transition: transform 0.18s ease;
}

.docs-nav-group.is-open .docs-nav-chevron {
  transform: rotate(180deg);
}

.docs-nav-links {
  display: none;
  margin: 1px 0 7px 21px;
  padding-left: 13px;
  border-left: 1px solid #ccd7d1;
}

.docs-nav-group.is-open .docs-nav-links {
  display: block;
}

.docs-nav-links a {
  display: block;
  margin: 2px 0;
  padding: 7px 9px;
  color: var(--docs-muted);
  text-decoration: none;
  border-radius: 3px;
  font-size: 11.5px;
  line-height: 1.4;
}

.docs-nav-links a:hover {
  color: var(--docs-ink);
  background: #eef1ef;
}

.docs-nav-links a.is-active {
  color: var(--docs-green-dark);
  background: var(--docs-green-soft);
  font-weight: 800;
}

.docs-sidebar-help {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 8px 0;
  padding: 12px;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: #fff;
}

.docs-sidebar-help > i {
  color: var(--docs-orange);
  font-size: 19px;
}

.docs-sidebar-help strong,
.docs-sidebar-help a {
  display: block;
  font-size: 10.5px;
}

.docs-main {
  min-width: 0;
  padding: 27px clamp(28px, 5vw, 76px) 80px;
}

.docs-breadcrumbs {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: #7a8797;
  font-size: 11px;
}

.docs-breadcrumbs a {
  color: #607083;
  text-decoration: none;
}

.docs-breadcrumbs a:hover {
  color: var(--docs-green-dark);
}

.docs-breadcrumbs i {
  font-size: 8px;
}

.docs-article,
.docs-product-landing {
  width: min(880px, 100%);
}

.docs-article-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--docs-border);
}

.docs-eyebrow {
  color: var(--docs-green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docs-article-header h1,
.docs-landing-hero h1,
.docs-hub-hero h1 {
  margin: 10px 0 13px;
  font-family: "Source Serif 4", serif;
  color: var(--docs-ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.docs-article-header h1 {
  max-width: 800px;
  font-size: clamp(39px, 5.2vw, 62px);
}

.docs-article-header > p {
  max-width: 760px;
  margin: 0;
  color: var(--docs-muted);
  font-size: 17px;
}

.docs-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.docs-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #425267;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10.5px;
  font-weight: 700;
}

.docs-article-body {
  padding-top: 16px;
  color: #293a50;
}

.docs-article-body h2,
.docs-article-body h3 {
  position: relative;
  color: var(--docs-ink);
  font-family: "Source Serif 4", serif;
  line-height: 1.25;
  scroll-margin-top: 95px;
}

.docs-article-body h2 {
  margin: 42px 0 14px;
  font-size: 29px;
}

.docs-article-body h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.docs-article-body p {
  margin: 12px 0;
}

.docs-article-body ul,
.docs-article-body ol {
  padding-left: 24px;
}

.docs-article-body li {
  margin: 7px 0;
}

.docs-heading-link {
  width: 30px;
  height: 30px;
  margin-left: 6px;
  color: #8b98a7;
  border: 0;
  border-radius: 3px;
  background: transparent;
  opacity: 0;
  cursor: pointer;
  font-size: 17px;
  vertical-align: middle;
}

.docs-article-body h2:hover .docs-heading-link,
.docs-article-body h3:hover .docs-heading-link,
.docs-heading-link:focus,
.docs-heading-link.is-copied {
  opacity: 1;
}

.docs-heading-link.is-copied {
  color: var(--docs-green);
  background: var(--docs-green-soft);
}

.docs-callout {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  margin: 22px 0;
  padding: 16px 17px;
  border: 1px solid #bad7c9;
  border-left: 4px solid var(--docs-green);
  border-radius: 3px;
  background: #edf8f2;
}

.docs-callout.is-warning {
  border-color: #edc5a8;
  border-left-color: var(--docs-orange);
  background: var(--docs-orange-soft);
}

.docs-callout.is-info {
  border-color: #bdd8e9;
  border-left-color: var(--docs-blue);
  background: #edf6fb;
}

.docs-callout-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--docs-green-dark);
  border-radius: 3px;
  background: #d9f0e4;
}

.docs-callout.is-warning .docs-callout-icon {
  color: #9a481e;
  background: #f9dbc6;
}

.docs-callout.is-info .docs-callout-icon {
  color: #145d8c;
  background: #d8ebf6;
}

.docs-callout strong {
  display: block;
  margin-bottom: 2px;
}

.docs-callout p {
  margin: 0;
  color: #4e6073;
  font-size: 13px;
}

.docs-role-grid,
.docs-info-grid,
.docs-category-grid,
.docs-hub-products {
  display: grid;
  gap: 14px;
}

.docs-role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.docs-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0;
}

.docs-info-card,
.docs-role-card {
  padding: 16px;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.76);
}

.docs-info-card span,
.docs-role-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--docs-green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-info-card strong,
.docs-role-card strong {
  display: block;
  margin-bottom: 4px;
}

.docs-info-card p,
.docs-role-card p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-steps {
  list-style: none;
  counter-reset: docs-step;
  padding: 0 !important;
  margin: 20px 0 !important;
}

.docs-steps > li {
  position: relative;
  min-height: 54px;
  margin: 0 !important;
  padding: 0 0 25px 54px;
  counter-increment: docs-step;
}

.docs-steps > li::before {
  content: counter(docs-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 3px;
  background: var(--docs-green);
  font-size: 12px;
  font-weight: 800;
}

.docs-steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 37px;
  bottom: 3px;
  width: 1px;
  background: #b8cec2;
}

.docs-steps strong {
  display: block;
  margin-bottom: 3px;
  color: var(--docs-ink);
}

.docs-steps p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13.5px;
}

.docs-ui-path {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 5px 0;
  padding: 7px 10px;
  color: #264159;
  border: 1px solid #cdd9e2;
  border-radius: 3px;
  background: #f7fafc;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 750;
}

.docs-ui-path i {
  color: #8190a0;
  font-size: 8px;
}

.docs-checklist {
  list-style: none;
  padding: 0 !important;
}

.docs-checklist li {
  position: relative;
  padding-left: 28px;
}

.docs-checklist li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  color: var(--docs-green);
  font-family: "bootstrap-icons";
}

.docs-article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--docs-border);
}

.docs-article-pagination a {
  display: block;
  padding: 15px;
  color: var(--docs-ink);
  text-decoration: none;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.docs-article-pagination a:hover {
  border-color: #8fbaa6;
  transform: translateY(-2px);
}

.docs-article-pagination span,
.docs-article-pagination strong {
  display: block;
}

.docs-article-pagination span {
  color: var(--docs-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-article-pagination span i {
  margin: 0 5px;
}

.docs-article-pagination strong {
  margin-top: 3px;
  font-size: 12px;
}

.docs-article-pagination .is-next {
  text-align: right;
}

.docs-toc {
  position: sticky;
  top: calc(var(--docs-topbar-height) + 30px);
  max-height: calc(100vh - var(--docs-topbar-height) - 50px);
  overflow-y: auto;
  padding: 7px 24px 30px 0;
}

.docs-toc > strong {
  display: block;
  margin-bottom: 11px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-toc nav a {
  display: block;
  margin: 2px 0;
  padding: 6px 0 6px 11px;
  color: #667588;
  text-decoration: none;
  border-left: 1px solid #cdd6df;
  font-size: 10.5px;
  line-height: 1.45;
}

.docs-toc nav a:hover {
  color: var(--docs-green-dark);
  border-left-color: var(--docs-green);
}

.docs-toc nav a.is-subsection {
  padding-left: 22px;
  font-size: 10px;
}

.docs-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: #6a7888;
  text-decoration: none;
  font-size: 10.5px;
}

.docs-footer {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  color: #aeb9c5;
  background: var(--docs-navy);
  font-size: 10.5px;
}

.docs-footer > div {
  display: flex;
  gap: 18px;
}

.docs-footer a {
  color: #d5dde6;
  text-decoration: none;
}

.docs-landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  border-radius: 3px;
  background:
    radial-gradient(circle at 85% 0%, rgba(79, 210, 158, 0.42), transparent 32%),
    linear-gradient(135deg, #101d31, #18354a 65%, #154d43);
  box-shadow: var(--docs-shadow);
}

.docs-landing-hero::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -82px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.docs-landing-hero .docs-eyebrow {
  color: #8ce1bd;
}

.docs-landing-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
}

.docs-landing-hero p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: #cbd7e3;
  font-size: 16px;
}

.docs-landing-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.docs-primary-link,
.docs-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.docs-primary-link {
  color: #0b3a2a;
  background: #8ce1bd;
}

.docs-secondary-link {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.docs-landing-section {
  margin-top: 42px;
}

.docs-landing-section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.docs-landing-section-header h2 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 30px;
}

.docs-landing-section-header p {
  max-width: 480px;
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
  text-align: right;
}

.docs-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-category-card {
  display: block;
  padding: 19px;
  color: var(--docs-ink);
  text-decoration: none;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.docs-category-card:hover {
  border-color: #86b9a1;
  transform: translateY(-3px);
  box-shadow: var(--docs-shadow);
}

.docs-category-card > span:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--docs-green);
  border-radius: 3px;
  background: var(--docs-green-soft);
  font-size: 18px;
}

.docs-category-card strong {
  display: block;
  margin-bottom: 5px;
}

.docs-category-card p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 11.5px;
}

.docs-hub-main {
  min-height: calc(100vh - var(--docs-topbar-height));
  padding: clamp(52px, 8vw, 104px) 24px;
}

.docs-hub-container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.docs-hub-hero {
  max-width: 850px;
  margin-bottom: 48px;
}

.docs-hub-hero .docs-eyebrow {
  color: var(--docs-orange);
}

.docs-hub-hero h1 {
  font-size: clamp(48px, 7vw, 82px);
}

.docs-hub-hero p {
  max-width: 760px;
  color: var(--docs-muted);
  font-size: 17px;
}

.docs-hub-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-product-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--docs-ink);
  text-decoration: none;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: var(--docs-paper);
  box-shadow: 0 10px 30px rgba(25, 39, 56, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.docs-product-card:hover {
  border-color: #7caf97;
  transform: translateY(-4px);
}

.docs-product-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  color: var(--docs-green);
  border-radius: 3px;
  background: var(--docs-green-soft);
  font-size: 22px;
}

.docs-product-card strong {
  font-family: "Source Serif 4", serif;
  font-size: 25px;
}

.docs-product-card p {
  margin: 8px 0 24px;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-product-card > span:last-child {
  margin-top: auto;
  color: var(--docs-green-dark);
  font-size: 11px;
  font-weight: 800;
}

.docs-product-card.is-coming-soon {
  cursor: default;
  opacity: 0.64;
}

.docs-hub-page .docs-topbar-inner {
  grid-template-columns: auto minmax(280px, 620px) 1fr;
}

.docs-hub-page .docs-top-actions {
  justify-self: end;
}

.docs-hub-main > section {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.docs-hub-hero .docs-primary-link {
  margin-top: 18px;
  color: #fff;
  background: var(--docs-green);
}

.docs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.docs-section-heading h2 {
  margin: 5px 0 0;
  color: var(--docs-ink);
  font-family: "Source Serif 4", serif;
  font-size: clamp(28px, 4vw, 40px);
}

.docs-section-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--docs-muted);
  font-size: 12.5px;
  text-align: right;
}

.docs-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.docs-product-card-status {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 8px;
  color: var(--docs-green-dark);
  border: 1px solid #b7d8c8;
  border-radius: 3px;
  background: var(--docs-green-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-product-card h3 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 25px;
}

.docs-product-card-link {
  margin-top: auto;
  color: var(--docs-green-dark);
  font-size: 11px;
  font-weight: 800;
}

.docs-product-card.is-planned {
  opacity: 0.62;
}

.docs-product-card.is-planned:hover {
  border-color: var(--docs-border);
  transform: none;
}

.docs-product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(26px, 5vw, 58px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  border-radius: 3px;
  background:
    radial-gradient(circle at 90% 0%, rgba(78, 212, 157, 0.38), transparent 32%),
    linear-gradient(135deg, #101d31, #17364a 63%, #125040);
  box-shadow: var(--docs-shadow);
}

.docs-product-hero h1 {
  max-width: 650px;
  margin: 10px 0 13px;
  color: #fff;
  font-family: "Source Serif 4", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.docs-product-hero > div:first-child > p {
  max-width: 650px;
  margin: 0;
  color: #cbd7e3;
  font-size: 14px;
}

.docs-product-hero .docs-eyebrow {
  color: #8ce1bd;
}

.docs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.docs-hero-panel {
  align-self: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(7, 20, 34, 0.34);
  backdrop-filter: blur(8px);
}

.docs-landing-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  border-radius: 3px;
  font-size: 20px;
}

.docs-hero-panel > strong {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: 21px;
}

.docs-hero-panel > p {
  margin: 7px 0 18px;
  color: #cbd7e3;
  font-size: 10.5px;
}

.docs-hero-panel dl {
  margin: 0;
}

.docs-hero-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9.5px;
}

.docs-hero-panel dt {
  color: #9fb0c1;
}

.docs-hero-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.docs-quick-start {
  margin-top: 42px;
}

.docs-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.docs-topic-card {
  display: block;
  padding: 19px;
  color: var(--docs-ink);
  text-decoration: none;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.docs-topic-card:hover {
  border-color: #86b9a1;
  box-shadow: var(--docs-shadow);
  transform: translateY(-3px);
}

.docs-topic-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--docs-green);
  border-radius: 3px;
  background: var(--docs-green-soft);
  font-size: 18px;
}

.docs-topic-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.docs-topic-card p {
  margin: 0 0 14px;
  color: var(--docs-muted);
  font-size: 11px;
}

.docs-topic-card strong {
  color: var(--docs-green-dark);
  font-size: 10.5px;
}

.docs-landing-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  margin-top: 32px;
  padding: 17px;
  border: 1px solid #bdd8e9;
  border-left: 4px solid var(--docs-blue);
  border-radius: 3px;
  background: #edf6fb;
}

.docs-landing-note > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #145d8c;
  border-radius: 3px;
  background: #d8ebf6;
}

.docs-landing-note strong {
  display: block;
}

.docs-landing-note p {
  margin: 2px 0 0;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-callout > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--docs-green-dark);
  border-radius: 3px;
  background: #d9f0e4;
}

.docs-callout.docs-callout-warning,
.docs-callout.is-warning {
  border-color: #edc5a8;
  border-left-color: var(--docs-orange);
  background: var(--docs-orange-soft);
}

.docs-callout.docs-callout-warning > i,
.docs-callout.is-warning > i {
  color: #9a481e;
  background: #f9dbc6;
}

.docs-callout.docs-callout-info,
.docs-callout.is-info {
  border-color: #bdd8e9;
  border-left-color: var(--docs-blue);
  background: #edf6fb;
}

.docs-callout.docs-callout-info > i,
.docs-callout.is-info > i {
  color: #145d8c;
  background: #d8ebf6;
}

.docs-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.docs-definition-grid > div {
  padding: 15px;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.76);
}

.docs-definition-grid strong,
.docs-definition-grid span {
  display: block;
}

.docs-definition-grid span {
  margin-top: 4px;
  color: var(--docs-muted);
  font-size: 11.5px;
}

.docs-check-list,
.docs-link-list {
  list-style: none;
  padding: 0 !important;
}

.docs-check-list li {
  position: relative;
  padding-left: 28px;
}

.docs-check-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  color: var(--docs-green);
  font-family: "bootstrap-icons";
}

.docs-link-list {
  display: grid;
  gap: 8px;
}

.docs-link-list li {
  margin: 0 !important;
}

.docs-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--docs-ink);
  text-decoration: none;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.74);
}

.docs-link-list a:hover {
  color: var(--docs-green-dark);
  border-color: #86b9a1;
}

.docs-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 24px;
  padding: 10px 12px;
  color: #264159;
  border: 1px solid #cdd9e2;
  border-radius: 3px;
  background: #f7fafc;
  font-size: 11px;
}

.docs-path span {
  margin-right: 4px;
  color: var(--docs-muted);
  font-weight: 600;
}

.docs-path i {
  color: #8190a0;
  font-size: 8px;
}

.docs-empty-state {
  padding: clamp(35px, 7vw, 72px) 20px;
  text-align: center;
  border: 1px solid var(--docs-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.docs-empty-state > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--docs-green);
  border-radius: 3px;
  background: var(--docs-green-soft);
  font-size: 24px;
}

.docs-empty-state h2 {
  margin-top: 0;
}

.docs-empty-state p {
  max-width: 500px;
  margin: 0 auto 20px;
}

.docs-empty-state .docs-primary-link {
  color: #fff;
  background: var(--docs-green);
}

.docs-mobile-backdrop {
  display: none;
}

@media (max-width: 1240px) {
  .docs-topbar-inner {
    grid-template-columns: auto minmax(240px, 1fr) auto;
  }

  .docs-product-switcher {
    display: none;
  }

  .docs-shell {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  .docs-topbar-inner {
    grid-template-columns: auto minmax(180px, 1fr) auto;
    gap: 14px;
    padding: 0 15px;
  }

  .docs-brand > span:last-child,
  .docs-brand-divider,
  .docs-top-actions {
    display: none;
  }

  .docs-mobile-menu-button {
    display: block;
  }

  .docs-shell {
    display: block;
  }

  .docs-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: min(340px, 88vw);
    height: 100vh;
    transform: translateX(-105%);
    box-shadow: 20px 0 55px rgba(13, 24, 39, 0.25);
    transition: transform 0.22s ease;
  }

  .docs-sidebar.is-mobile-open {
    transform: translateX(0);
  }

  .docs-sidebar-product button {
    display: block;
  }

  .docs-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    background: rgba(8, 16, 29, 0.54);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .docs-mobile-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .docs-main {
    padding: 24px clamp(18px, 5vw, 42px) 64px;
  }

  .docs-article,
  .docs-product-landing {
    width: 100%;
  }

  .docs-hub-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-hub-page .docs-topbar-inner {
    grid-template-columns: auto minmax(180px, 1fr);
  }

  .docs-product-hero {
    grid-template-columns: 1fr;
  }

  .docs-hero-panel {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --docs-topbar-height: 64px;
  }

  .docs-topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .docs-brand img {
    height: 34px;
  }

  .docs-search kbd {
    display: none;
  }

  .docs-search input {
    padding-right: 13px;
    font-size: 12px;
  }

  .docs-breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .docs-breadcrumbs span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .docs-article-header h1 {
    font-size: 40px;
  }

  .docs-article-header > p,
  .docs-hub-hero p {
    font-size: 14px;
  }

  .docs-role-grid,
  .docs-info-grid,
  .docs-category-grid,
  .docs-hub-products,
  .docs-product-grid,
  .docs-topic-grid,
  .docs-definition-grid,
  .docs-article-pagination {
    grid-template-columns: 1fr;
  }

  .docs-section-heading {
    display: block;
  }

  .docs-section-heading > p {
    margin-top: 7px;
    text-align: left;
  }

  .docs-landing-hero {
    padding: 28px 22px;
  }

  .docs-landing-hero h1,
  .docs-hub-hero h1 {
    font-size: 43px;
  }

  .docs-landing-section-header {
    display: block;
  }

  .docs-landing-section-header p {
    margin-top: 6px;
    text-align: left;
  }

  .docs-footer {
    display: block;
    text-align: center;
  }

  .docs-footer > div {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}

@media print {
  .docs-topbar,
  .docs-sidebar,
  .docs-toc,
  .docs-breadcrumbs,
  .docs-article-pagination,
  .docs-footer,
  .docs-heading-link {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .docs-shell {
    display: block;
  }

  .docs-main {
    padding: 0;
  }

  .docs-article {
    width: 100%;
  }
}
