:root {
  --ib-forest: #064c3b;
  --ib-forest-deep: #03372b;
  --ib-mint: #22a987;
  --ib-mint-soft: #e9f3ef;
  --ib-ink: #242523;
  --ib-muted: #626762;
  --ib-line: #dedfda;
  --ib-canvas: #f7f7f4;
  --ib-surface: #ffffff;
  --ib-code: #f0f1ed;
  --ib-header: #282a28;
  --ib-header-muted: #3a3d3a;
  --ib-radius: 0.8rem;
  --md-primary-fg-color: var(--ib-forest);
  --md-primary-fg-color--light: #0a6650;
  --md-primary-fg-color--dark: var(--ib-forest-deep);
  --md-accent-fg-color: #08745a;
  --md-accent-fg-color--transparent: rgb(8 116 90 / 0.12);
  --md-typeset-a-color: #08745a;
  --md-default-bg-color: var(--ib-canvas);
  --md-text-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --md-code-font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

[data-md-color-scheme="slate"] {
  --ib-forest: #2f987b;
  --ib-forest-deep: #1b735b;
  --ib-mint: #45c7a5;
  --ib-mint-soft: #20332d;
  --ib-ink: #f0f1ed;
  --ib-muted: #b3b7b2;
  --ib-line: #363936;
  --ib-canvas: #171817;
  --ib-surface: #202220;
  --ib-code: #121412;
  --ib-header: #111211;
  --ib-header-muted: #202220;
  --md-primary-fg-color: var(--ib-header);
  --md-primary-fg-color--light: var(--ib-header-muted);
  --md-primary-fg-color--dark: #0b0c0b;
  --md-accent-fg-color: var(--ib-mint);
  --md-accent-fg-color--transparent: rgb(69 199 165 / 0.14);
  --md-typeset-a-color: var(--ib-mint);
  --md-default-bg-color: var(--ib-canvas);
  --md-default-fg-color: var(--ib-ink);
  --md-default-fg-color--light: var(--ib-muted);
  --md-code-bg-color: #0b1512;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

.md-grid {
  max-width: 82rem;
}

.md-header {
  background: var(--ib-header);
  box-shadow: none;
  border-block-end: 1px solid rgb(255 255 255 / 0.12);
}

.md-header__button.md-logo {
  margin: 0.2rem 0.35rem 0.2rem 0;
  padding: 0.18rem;
}

.md-header__button.md-logo img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.38rem;
  background: #ffffff;
}

.md-header__title {
  font-weight: 720;
  letter-spacing: -0.015em;
}

.md-search__form {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.45rem;
  background: rgb(255 255 255 / 0.07);
}

.md-tabs {
  background: var(--ib-header-muted);
  border-block-end: 1px solid rgb(255 255 255 / 0.08);
}

.md-main__inner {
  margin-block-start: 1.35rem;
}

.md-content__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.md-content__inner:has(.ib-hero) {
  max-width: none;
  padding-inline: 1rem;
}

.md-sidebar--primary .md-nav__title,
.md-sidebar--secondary .md-nav__title {
  color: var(--ib-muted);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.md-nav__link {
  line-height: 1.35;
}

.md-nav__link--active {
  font-weight: 700;
}

.md-sidebar--primary .md-nav__link--active {
  color: var(--ib-forest);
}

.md-sidebar--secondary .md-nav__link--active {
  color: var(--ib-forest);
}

[data-md-color-scheme="slate"] .md-sidebar--secondary .md-nav__link--active {
  color: var(--ib-mint);
}

.md-typeset {
  color: var(--ib-ink);
  line-height: 1.68;
}

.md-typeset > p,
.md-typeset > ul,
.md-typeset > ol {
  max-width: 72ch;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3 {
  color: var(--ib-ink);
  font-weight: 720;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.md-typeset h1 {
  margin-block-end: 1.15rem;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.md-typeset h2 {
  margin-block-start: 2.8rem;
  margin-block-end: 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.2;
}

.md-typeset h3 {
  margin-block-start: 2rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.md-typeset h1 + p {
  max-width: 68ch;
  margin-block-end: 1.65rem;
  color: var(--ib-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.md-typeset code {
  border-radius: 0.35rem;
}

.md-typeset pre > code {
  width: 100%;
  line-height: 1.58;
}

.md-typeset .highlight,
.md-typeset table:not([class]) {
  border: 1px solid var(--ib-line);
  border-radius: 0.65rem;
  background: var(--ib-surface);
  box-shadow: 0 0.4rem 1.4rem rgb(28 37 33 / 0.035);
}

.md-typeset .highlight {
  overflow: hidden;
  background: var(--ib-code);
}

.md-typeset .highlight pre {
  width: 100%;
  margin: 0;
  background: var(--ib-code);
}

.md-typeset .highlight pre > code {
  background: var(--ib-code);
}

.ib-copy-page[data-md-state="done"] {
  color: var(--ib-mint);
}

.ib-copy-page[data-md-state="error"] {
  color: #b74432;
}

.md-typeset table:not([class]) th {
  background: color-mix(in oklab, var(--ib-mint-soft) 55%, var(--ib-surface));
  color: var(--ib-ink);
  font-weight: 720;
}

.md-typeset table:not([class]) td,
.md-typeset table:not([class]) th {
  padding: 0.75rem 0.85rem;
  border-color: var(--ib-line);
}

.md-typeset table:not([class]) tbody tr:hover {
  background: color-mix(in oklab, var(--ib-mint-soft) 48%, transparent);
}

.md-typeset blockquote {
  border-inline-start-color: var(--ib-mint);
  color: var(--ib-muted);
}

.md-typeset .admonition,
.md-typeset details {
  border-radius: 0.65rem;
  box-shadow: none;
}

.md-typeset a:focus-visible,
.md-typeset .ib-copy-page:focus-visible,
.md-search__input:focus-visible,
.md-header__button:focus-visible {
  outline: 0.18rem solid var(--ib-mint);
  outline-offset: 0.18rem;
}

.ib-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-block-size: auto;
  padding-block: clamp(2rem, 3vw, 2.75rem);
}

.ib-hero__copy {
  max-width: 35rem;
}

.ib-kicker {
  margin: 0 0 1.1rem;
  color: var(--ib-forest);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

[data-md-color-scheme="slate"] .ib-kicker {
  color: var(--ib-mint);
}

.md-typeset .ib-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.ib-hero__lede {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--ib-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.ib-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.8rem;
}

.md-typeset .ib-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 3rem;
  padding-inline: 1.15rem;
  border: 1px solid var(--ib-forest);
  border-radius: 0.65rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.md-typeset .ib-button--primary {
  background: var(--ib-forest);
  color: #f7fffc;
}

.md-typeset .ib-button--secondary {
  background: transparent;
  color: var(--ib-forest);
}

[data-md-color-scheme="slate"] .md-typeset .ib-button--secondary {
  border-color: var(--ib-mint);
  color: var(--ib-mint);
}

.md-typeset .ib-button:hover {
  transform: translateY(-1px);
}

.md-typeset .ib-button:active {
  transform: translateY(1px);
}

.ib-hero__visual {
  margin: 0;
}

.ib-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  border: 1px solid var(--ib-line);
  border-radius: var(--ib-radius);
  box-shadow: 0 1.25rem 3rem rgb(35 38 35 / 0.12);
}

[data-md-color-scheme="slate"] .ib-hero__visual img {
  background: #ffffff;
  filter: none;
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 0.28);
}

.ib-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding-block: 1.4rem;
  border-block: 1px solid var(--ib-line);
}

.ib-facts > div {
  padding-inline: 1.4rem;
}

.ib-facts > div:first-child {
  padding-inline-start: 0;
}

.ib-facts > div:not(:last-child) {
  border-inline-end: 1px solid var(--ib-line);
}

.ib-facts dt {
  color: var(--ib-muted);
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ib-facts dd {
  margin: 0.4rem 0 0;
  color: var(--ib-ink);
  font-weight: 620;
}

.ib-paths {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.md-typeset .ib-path {
  display: flex;
  min-block-size: 14.5rem;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--ib-line);
  border-radius: var(--ib-radius);
  background: var(--ib-surface);
  color: var(--ib-ink);
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease;
}

.md-typeset .ib-path--cli {
  background: var(--ib-header);
  color: #f7f8f5;
}

.md-typeset .ib-path:hover {
  border-color: var(--ib-mint);
  transform: translateY(-2px);
}

.ib-path__label {
  margin-block-end: auto;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}

.ib-path strong {
  max-width: 18ch;
  margin-block-start: 2rem;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.ib-path strong + span {
  max-width: 38rem;
  margin-block-start: 0.9rem;
  opacity: 0.78;
}

.ib-path__link {
  margin-block-start: 1.5rem;
  font-weight: 730;
}

.ib-surface-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
  border-block-start: 1px solid var(--ib-line);
}

.ib-surface-list > div {
  display: grid;
  gap: 0.35rem;
  padding-block: 1.4rem;
  border-block-end: 1px solid var(--ib-line);
}

.ib-surface-list strong {
  color: var(--ib-ink);
  font-size: 1.02rem;
}

.ib-surface-list span,
.ib-doc-map span {
  color: var(--ib-muted);
}

.ib-doc-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.md-typeset .ib-doc-map a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--ib-line);
  border-radius: 0.65rem;
  background: var(--ib-surface);
  color: var(--ib-ink);
  text-decoration: none;
}

.md-typeset .ib-doc-map a:hover {
  border-color: var(--ib-mint);
}

.md-footer {
  margin-block-start: 3rem;
  border-block-start: 1px solid var(--ib-line);
}

.md-footer-meta {
  background: var(--ib-header);
}

@media (max-width: 59.984375em) {
  .md-content__inner {
    max-width: none;
  }

  .ib-hero {
    grid-template-columns: 1fr;
    min-block-size: auto;
  }

  .ib-hero__copy {
    max-width: 42rem;
  }

  .md-typeset .ib-hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 47.984375em) {
  .md-main__inner {
    margin-block-start: 0.55rem;
  }

  .md-content__inner {
    padding-inline: 0.6rem;
  }

  .md-content__inner:has(.ib-hero) {
    padding-inline: 0.8rem;
  }

  .ib-hero {
    gap: 2rem;
    padding-block: 2.5rem;
  }

  .md-typeset .ib-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .ib-facts,
  .ib-paths,
  .ib-surface-list,
  .ib-doc-map {
    grid-template-columns: 1fr;
  }

  .ib-facts > div {
    padding: 1rem 0;
  }

  .ib-facts > div:not(:last-child) {
    border-inline-end: 0;
    border-block-end: 1px solid var(--ib-line);
  }

  .md-typeset .ib-path {
    min-block-size: 13rem;
  }
}

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

  .md-typeset .ib-button,
  .md-typeset .ib-path {
    transition: none;
  }
}

@media print {
  .ib-actions,
  .ib-doc-map {
    display: none;
  }

  .ib-hero {
    min-block-size: auto;
  }
}
