@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/Jet/JetBrainsMono-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #868686;
  --grey-2: #515151;
  --border: #dddddd;
  --dot: #d9d9d9;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.overflow-hidden {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h1, .h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 73.92px;
  margin: 0;
}
h2, .h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 63.36px;
  margin: 0;
}
h3, .h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52.8px;
  margin: 0;
}
h4, .h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42.24px;
  margin: 0;
}
h5, .h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.68px;
  margin: 0;
}
h6, .h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.12px;
  margin: 0;
}

@media screen and (max-width: 991.9px) {
  h1, .h1 { font-size: 40px; line-height: 52.8px; }
  h2, .h2 { font-size: 36px; line-height: 47.52px; }
  h3, .h3 { font-size: 32px; line-height: 42.24px; }
  h4, .h4 { font-size: 24px; line-height: 31.68px; }
  h5, .h5 { font-size: 20px; line-height: 26.4px; }
  h6, .h6 { font-size: 20px; line-height: 26.4px; }
}

.text-tiny { font-size: 12px; line-height: 15.84px; }
.text-small { font-size: 14px; line-height: 18.48px; }
.text-large { font-size: 18px; line-height: 24px; }
.text-xl { font-size: 24px; line-height: 40px; }
.text-bold { font-weight: 700; }
.text-semi-bold { font-weight: 600; }
.text-medium { font-weight: 500; }
.text-regular { font-weight: 400; }
.text-light { font-weight: 300; }
.text-grey { color: var(--grey); }
.text-grey-2 { color: var(--grey-2); }

strong { font-weight: 700; }

.custom-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.48px;
  color: var(--black);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.custom-link::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("/img/arrow-link.svg") no-repeat center;
}
.custom-link:hover {
  color: var(--grey-2);
}

h1 > .custom-link,
h2 > .custom-link,
h3 > .custom-link,
h4 > .custom-link,
h5 > .custom-link,
h6 > .custom-link {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.doc-list li > .custom-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

[id] { scroll-margin-top: 96px; }

@media screen and (max-width: 991.9px) {
  [id] { scroll-margin-top: 80px; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.row > [class^="col"] {
  padding: 0 12px;
}
.col-6 { width: 50%; }
.col-12 { width: 100%; }
.col-lg-2 { width: 16.666667%; }
.col-lg-3 { width: 25%; }
.col-lg-6 { width: 50%; }
@media screen and (max-width: 991.9px) {
  .col-lg-2, .col-lg-3, .col-lg-6 { width: 100%; }
  .d-lg-none { display: none; }
}
@media screen and (min-width: 992px) {
  .d-none.d-lg-block { display: block; }
  .d-lg-none { display: block; }
}
.d-none { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 16px 30px;
  min-height: 50px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.48px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.btn:disabled,
.btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn-primary {
  border: 1px solid var(--black);
  color: var(--white);
  background: var(--black);
}
.btn-secondary {
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--white);
}
.btn-transparent {
  padding: 13px 0;
  border: none;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
}
.btn-transparent-white {
  padding: 13px 0;
  border: none;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  background: transparent;
}
.btn-big {
  font-size: 18px;
  line-height: 23px;
  padding: 0;
}

form {
  width: 100%;
  margin: 0;
}
.form-group {
  width: 100%;
  margin-bottom: 16px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 14px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--grey-2);
  outline: none;
  box-shadow: none;
  background: transparent;
  color: var(--black);
  min-height: 55px;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.form-control::placeholder {
  color: var(--grey);
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey);
}

.header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.21);
  z-index: 11;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: all 0.2s ease-in-out;
}
.header-wrapper .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .logo-block {
  width: 134px;
  height: auto;
  display: flex;
  align-items: center;
}
.header-wrapper .logo-block img {
  max-width: 100%;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.toggle-button {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 3px;
  margin: 3.5px 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.toggle-button span {
  background: var(--black);
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
}
.nav-menu .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu .menu > li > a {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 5px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.48px;
  color: var(--black);
}
.nav-menu .menu > li > a:hover,
.nav-menu .menu > li > a:focus-within {
  color: var(--white);
  background: var(--black);
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children > a::after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background: url("/img/arrow.svg") no-repeat center;
}
.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 7px 0 0;
  padding: 20px;
  width: 300px;
  background: var(--black);
  list-style: none;
}
.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.menu-item-has-children .sub-menu li a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}
.menu-item-has-children .sub-menu li a:hover {
  padding-left: 10px;
}
.menu-item-has-children .sub-menu.active {
  display: block;
}

@media screen and (max-width: 991.9px) {
  .header-wrapper { padding: 12px 0; }
  .header-wrapper.header-mobile {
    background: rgba(0, 0, 0, 0.81);
    height: 100vh;
  }
  .header-wrapper.header-mobile .logo-block img {
    filter: invert(1);
  }
  .toggle-button { display: flex; }
  .toggle-button.button-open span {
    background: var(--white);
  }
  .toggle-button.button-open span:first-child {
    transform: rotate(45deg) translate(4px, 3px);
  }
  .toggle-button.button-open span:nth-child(2) {
    opacity: 0;
  }
  .toggle-button.button-open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    width: 100%;
    height: calc(100vh - 55px);
    position: fixed;
    top: 55px;
    right: -100%;
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 12px;
  }
  .nav-menu.show-nav-menu { right: 0; }
  .nav-menu .menu {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-menu .menu > li > a {
    padding: 0;
    background: transparent;
    color: var(--white);
  }
  .menu-item-has-children > a::after { display: none; }
  .menu-item-has-children .sub-menu {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
    padding: 0 0 0 14px;
    width: 100%;
    background: transparent;
    border-left: 1px solid var(--white);
  }
}

.content-area {
  flex: 1 0 auto;
  padding-top: var(--header-h);
}
.section {
  padding: 64px 0;
}
@media screen and (max-width: 991.9px) {
  .section { padding: 40px 0; }
}
.hero {
  padding: 96px 0 64px;
}
.hero .slogan {
  color: var(--grey-2);
  margin-top: 16px;
}
.lead {
  max-width: 720px;
  margin-top: 24px;
  color: var(--grey-2);
}
.prose {
  max-width: 760px;
}
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 32px; }
.prose p, .prose ul, .prose ol { margin: 16px 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose code {
  font-family: "JetBrains Mono", monospace;
  background: #f4f4f4;
  padding: 2px 5px;
}
.prose pre {
  background: #f4f4f4;
  padding: 16px;
  overflow: auto;
}
.prose pre code { background: transparent; padding: 0; }
.prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}
.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  border: 1px solid var(--border);
  padding: 24px;
}
.card h5 { margin-bottom: 12px; }
.card p { color: var(--grey); }

.card-grid-primary {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-primary {
  border-top: 3px solid var(--black);
  padding: 32px;
}
.card-primary h5 {
  font-size: 20px;
  margin-bottom: 14px;
}
.card-primary p { color: var(--grey-2); }
.card-grid-secondary { margin-top: 24px; }
@media screen and (max-width: 767.9px) {
  .card-grid-primary { grid-template-columns: 1fr; }
}

.examples-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-slide h5 {
  padding-left: 17px;
  border-left: 2px solid var(--black);
  margin-bottom: 10px;
}
.single-slide p {
  margin: 0;
  color: var(--grey);
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.doc-list li {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.price-card {
  border: 1px solid var(--black);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card .amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--grey-2);
}

.footer-wrapper {
  flex-shrink: 0;
  padding: 43px 0 26px;
  border-top: 1px solid var(--border);
}
.footer-wrapper .custom-logo-link {
  width: 134px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer-wrapper .widget_text {
  width: 100%;
  max-width: 413px;
  margin-bottom: 25px;
}
.footer-wrapper .widget_text p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.48px;
  color: var(--grey);
}
.footer-wrapper .social-links {
  margin-bottom: 25px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.footer-wrapper .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--black);
}
.footer-wrapper .social-links a:hover { opacity: 0.5; }
.footer-wrapper .copyright-block {
  font-size: 12px;
  font-weight: 300;
  line-height: 15.84px;
  color: var(--grey);
}
.footer-wrapper .widget_nav_menu .widget-title-collapse {
  font-size: 16px;
  font-weight: 800;
  line-height: 21.12px;
  color: var(--black);
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
}
.footer-wrapper .widget_nav_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-wrapper .widget_nav_menu li:not(:last-child) {
  margin-bottom: 14px;
}
.footer-wrapper .widget_nav_menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-2);
}
.footer-wrapper .widget_nav_menu li a:hover { color: var(--black); }

@media screen and (max-width: 991.9px) {
  .footer-wrapper { padding: 23px 0 10px; }
  .footer-wrapper .copyright-block { text-align: center; }
  .footer-wrapper .widget_nav_menu .widget-title-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
    margin-bottom: 0;
  }
  .footer-wrapper .widget_nav_menu .widget-title-collapse::after {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: url("/img/plus.svg") no-repeat center;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
  }
  .footer-wrapper .widget_nav_menu .widget-title-collapse.show { margin-bottom: 20px; }
  .footer-wrapper .widget_nav_menu .widget-title-collapse.show::after {
    transform: rotate(45deg);
  }
  .footer-wrapper .widget_nav_menu ul {
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease-in-out;
  }
  .footer-wrapper .widget_nav_menu ul.show-menu {
    height: auto;
    overflow: visible;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
}
.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 18.48px;
  color: var(--white);
}
.cookie-consent .cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent a { text-decoration: underline; }
.cookie-consent[hidden] { display: none; }

.banner {
  border: 1px solid var(--black);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.banner-warning { background: #fff8e6; }

.flash-error {
  color: #b00020;
  margin-bottom: 16px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  z-index: 50;
}

.table-scroll {
  overflow-x: auto;
  margin: 16px 0 32px;
}
.table-scroll table {
  margin: 0;
  min-width: 100%;
}
.table-scroll-nowrap table { white-space: nowrap; }
.table-scroll th, .table-scroll td {
  font-size: 14px;
  line-height: 20px;
}

.prompt-block {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 24px 0;
}

.example-group,
.bench-section {
  margin-top: 56px;
}
.example-group h2,
.bench-section h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.example-group .examples-list {
  margin-top: 24px;
}
.single-slide p:last-child {
  margin-top: 8px;
}

.reference-toc {
  margin-top: 40px;
}
.reference-chapter {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.reference-chapter h2 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}
.reference-chapter p {
  margin: 0;
}
.reference-sections {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.reference-sections li a {
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-2);
}
.reference-sections li a:hover {
  color: var(--black);
}

.doc-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.example-build {
  color: var(--black);
  font-weight: 500;
  margin: 0 0 10px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.claim-card {
  border-left: 3px solid var(--black);
  padding: 4px 0 4px 24px;
  margin: 40px 0;
}
.section-sub,
.claim-card h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
.section-sub { margin-top: 48px; }
.claim-card p { margin: 0 0 10px; }

.chart-unit {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
  line-height: 20px;
}
.chart-legend {
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  line-height: 20px;
}
.chart-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chart-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}
.chart-swatch-0 { background: var(--black); }
.chart-swatch-1 { background: var(--grey-2); }

.chart-scroll {
  overflow-x: auto;
  margin: 8px 0 12px;
}
.bench-chart {
  display: block;
  width: 100%;
  min-width: 560px;
  height: auto;
}
.bench-chart .chart-bar-0 { fill: var(--black); }
.bench-chart .chart-bar-1 { fill: var(--grey-2); }
.bench-chart .chart-grid line {
  stroke: var(--border);
  stroke-width: 1;
}
.bench-chart text {
  font-family: inherit;
  fill: var(--grey-2);
}
.bench-chart .chart-tick {
  font-size: 12px;
  text-anchor: middle;
  fill: var(--grey);
}
.bench-chart .chart-group-label {
  font-size: 15px;
  font-weight: 600;
  fill: var(--black);
}
.bench-chart .chart-group-caption {
  font-size: 12px;
  fill: var(--grey);
}
.bench-chart .chart-value {
  font-size: 13px;
  fill: var(--grey-2);
}

.detail-block {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 8px;
}
.detail-block > summary {
  cursor: pointer;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  list-style: none;
}
.detail-block > summary::-webkit-details-marker { display: none; }
.detail-block > summary::before {
  content: "+";
  display: inline-block;
  width: 22px;
  color: var(--grey);
}
.detail-block[open] > summary::before { content: "−"; }
.detail-block .detail-body { padding-top: 12px; }
