:root {
  color-scheme: light;

  /* Landing */
  --landing-text-primary: #333333;
  --landing-text-primary-on-brand: #ffffff;
  --landing-text-primary-on-dark: #ffffff;
  --landing-text-secondary: rgba(51, 51, 51, 0.55);
  --landing-text-secondary-on-brand: rgba(255, 255, 255, 0.75);
  --landing-text-brand-1: #6320ee;
  --landing-text-brand-2: #0e7c81;
  --landing-text-positive: #0f9a4e;
  --landing-text-warning: #e88a00;
  --landing-text-negative: #e8285a;
  --landing-bg-base: #ffffff;
  --landing-bg-base-on-light: #333333;
  --landing-bg-base-on-dark: #ffffff;
  --landing-bg-code: #f5f5f5;

  /* Panel */
  --panel-text-primary: #1b1f3b;
  --panel-text-secondary: rgba(27, 31, 59, 0.65);
  --panel-text-positive: #3aa981;
  --panel-text-negative: #dd4c1e;
  --panel-bg-base: #ffffff;
  --panel-bg-base-alt: #f6f6f6;
  --panel-bg-neutral-1: rgba(0, 0, 0, 0.04);
  --panel-bg-elevation-1: #ffffff;
  --panel-bg-elevation-2: #ffffff;
  --panel-bg-accent: #6320ee;
  --panel-bg-positive: rgba(74, 201, 155, 0.12);
  --panel-bg-negative: rgba(244, 87, 37, 0.12);
  --panel-statuses-positive: #4ac99b;
  --panel-statuses-positive-pale: rgba(74, 201, 155, 0.12);
  --panel-statuses-warning: #ffc700;
  --panel-statuses-warning-pale: rgba(255, 199, 0, 0.12);
  --panel-statuses-negative: #f45725;
  --panel-statuses-negative-pale: rgba(244, 87, 37, 0.12);
  --panel-statuses-info: #70b6f6;
  --panel-statuses-info-pale: rgba(112, 182, 246, 0.12);

  /* Gaps */
  --gap-4xl: 96px;
  --gap-3xl: 72px;
  --gap-2xl: 64px;
  --gap-xl: 48px;
  --gap-l: 32px;
  --gap-m: 16px;
  --gap-s: 8px;

  /* Paddings */
  --padding-xl: 24px;

  /* Margins */
  --margin-page: 40px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

@media (max-width: 768px) {
  :root {
    --gap-4xl: 96px;
    --gap-3xl: 64px;
    --gap-2xl: 48px;
    --gap-xl: 48px;
    --gap-l: 32px;
    --gap-m: 16px;
    --gap-s: 8px;

    /* Paddings */
    --padding-xl: 16px;

    /* Margins */
    --margin-page: 16px;
  }
}

@media (max-width: 391px) {
  .text-h1 {
    font-size: 58px !important;
  }
  .text-h2 {
    font-size: 32px !important;
  }
}

.color-text-primary {
  color: var(--landing-text-primary) !important;
}
.color-text-primary-on-brand {
  color: var(--landing-text-primary-on-brand) !important;
}
.color-text-primary-on-dark {
  color: var(--landing-text-primary-on-dark);
}
.color-text-secondary {
  color: var(--landing-text-secondary);
}
.color-text-secondary-on-brand {
  color: var(--landing-text-secondary-on-brand) !important;
}
.color-text-brand-1 {
  color: var(--landing-text-brand-1) !important;
}
.color-text-brand-2 {
  color: var(--landing-text-brand-2) !important;
}
.color-text-positive {
  color: var(--landing-text-positive);
}
.color-text-warning {
  color: var(--landing-text-warning);
}
.color-text-negative {
  color: var(--landing-text-negative);
}
.color-bg-base {
  background-color: var(--landing-bg-base);
}
.color-bg-base-on-light {
  background-color: var(--landing-bg-base-on-light);
}
.color-bg-base-on-dark {
  background-color: var(--landing-bg-base-on-dark);
}
.color-bg-code {
  background-color: var(--landing-bg-code);
}

.color-text-panel-primary {
  color: var(--panel-text-primary);
}
.color-text-panel-secondary {
  color: var(--panel-text-secondary);
}
.color-text-panel-negative {
  color: var(--panel-text-negative);
}
.color-bg-panel-base {
  background-color: var(--panel-bg-base);
}
.color-bg-panel-base-alt {
  background-color: var(--panel-bg-base-alt);
}
.color-bg-panel-neutral-1 {
  background-color: var(--panel-bg-neutral-1);
}
.color-bg-panel-elevation-1 {
  background-color: var(--panel-bg-elevation-1);
}
.color-bg-panel-elevation-2 {
  background-color: var(--panel-bg-elevation-2);
}
.color-bg-panel-accent {
  background-color: var(--panel-bg-accent);
}
.color-bg-panel-positive {
  background-color: var(--panel-bg-positive);
}
.color-bg-panel-negative {
  background-color: var(--panel-bg-negative);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  font-family:
    "Google Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

body.overlay-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--margin-page) + 82px);
}

main {
  display: flex;
  padding: var(--margin-page);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-4xl);
}

.text-h1 {
  font-family: "Google Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 105%;
  margin: 0;
  padding: 0;
}

.text-h2 {
  font-family: "Google Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
  padding: 0;
}

.text-h3 {
  font-family: "Google Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
  padding: 0;
}

.text-big {
  font-family: "Google Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  padding: 0;
}

.text-base {
  font-family: "Google Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
  padding: 0;
}

.text-h1,
.text-h2,
.text-h3,
.text-big {
  text-wrap: balance;
}

.text-base {
  text-wrap: pretty;
}

.text-link {
  font-family: "Google Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 120%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition:
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

a {
  text-decoration: none;
}

.text-link:hover {
  color: var(--landing-text-secondary-on-brand) !important;
}

.lang-menu .text-link:hover,
.country-link:hover {
  color: var(--landing-text-primary-on-brand) !important;
  opacity: 0.8;
}

.text-code {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
  padding: 0;
}

header {
  --header-item-color: var(--landing-text-primary-on-dark);
  --header-icon-filter: none;
  --header-side-padding: var(--padding-xl);
  position: fixed;
  top: var(--margin-page);
  right: 0;
  left: 0;
  color: var(--header-item-color);
  z-index: 99;
  display: flex;
  padding: var(--padding-xl) var(--header-side-padding);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  box-sizing: border-box;
  width: calc(100% - (var(--margin-page) * 2));
  max-width: 1360px;
  margin: 0 auto;
  isolation: isolate;
  transition:
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    padding-left 0.12s linear,
    padding-right 0.12s linear;
}

.header-gradient {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: calc(var(--margin-page) + (var(--padding-xl) * 6));
  z-index: 98;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 0;
}

body.header-on-light .header-gradient {
  opacity: 1;
}

header.header-on-light {
  --header-item-color: var(--landing-text-primary);
  --header-icon-filter: brightness(0) saturate(100%) invert(20%);
}

header.header-on-dark {
  --header-item-color: var(--landing-text-primary-on-dark);
  --header-icon-filter: none;
}

header .color-text-primary-on-brand,
header .text-link:hover,
header .country-link:hover {
  color: var(--header-item-color) !important;
}

header .text-link {
  opacity: 1;
  transition:
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

header .text-link:hover {
  opacity: 0.8;
}

header .nav-desktop > .text-link,
header .country-current {
  position: relative;
  opacity: 1;
  transition:
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-link::after,
header .nav-desktop > .text-link::after,
header .country-current::after,
.lang-menu .country-link::after,
.header-overlay a::after,
.burger-btn::after,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 16px);
  min-width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

header .nav-desktop > .text-link:hover,
header .country-current:hover {
  opacity: 0.8;
}

.lang-menu .color-text-primary-on-brand,
.lang-menu .text-link:hover,
.lang-menu .country-link:hover {
  color: var(--landing-text-primary-on-brand) !important;
}

.lang-menu .text-link {
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.desktop-header {
  display: flex;
}

.hero {
  display: flex;
  padding: 140px var(--padding-xl) 72px var(--padding-xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xl);
  align-self: stretch;
}

.bg-brand {
  background: url("/img/hero.webp") lightgray 80% / cover no-repeat;
}

.bg-docs {
  background: url("/img/docs-hero.webp") lightgray 80% / cover no-repeat;
}

.bg-positive {
  background: url("/img/positive-hero.webp") lightgray 80% / cover no-repeat;
}

.bg-warning {
  background: url("/img/warning-hero.webp") lightgray 80% / cover no-repeat;
}

.bg-negative {
  background: url("/img/negative-hero.webp") lightgray 80% / cover no-repeat;
}

@media (max-width: 768px) {
  .bg-brand {
    background-image: url("/img/hero-mobile.webp");
  }

  .bg-docs {
    background-image: url("/img/docs-hero-mobile.webp");
  }

  .bg-positive {
    background-image: url("/img/positive-hero-mobile.webp");
  }

  .bg-warning {
    background-image: url("/img/warning-hero-mobile.webp");
  }

  .bg-negative {
    background-image: url("/img/negative-hero-mobile.webp");
  }
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-m);
  align-self: stretch;
}

.hero-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-l);
  align-self: stretch;
}

.buttons-section {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-m);
  align-self: stretch;
}

.btn-primary {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--landing-bg-base);
  scale: 1;
  transition:
    background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    scale 0.15s ease-out;
}

.btn-primary:active {
  scale: 0.96;
}

.btn-white {
  background: var(--landing-bg-base);
}

.btn-white:hover {
  background: var(--landing-bg-base-on-light);
  color: var(--landing-text-primary-on-dark) !important;
}

.btn-secondary {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: solid 1px var(--landing-bg-base);
  scale: 1;
  transition:
    background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    scale 0.15s ease-out;
}

.btn-secondary:active {
  scale: 0.96;
}

.btn-secondary:hover {
  background: var(--landing-bg-base);
  color: var(--landing-text-primary) !important;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--gap-l);
}

.logo-white {
  height: 17px;
  flex-shrink: 0;
  filter: var(--header-icon-filter);
  opacity: 1;
  transition:
    filter 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-link {
  position: relative;
  display: flex;
  align-items: center;
}

.header-link:hover .logo-white {
  opacity: 0.8;
}

.country-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-s);
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.country-img {
  width: 24px;
  height: 24px;
}

.header-actions {
  position: relative;
}

.burger-menu,
.header-monochrome-icon {
  filter: var(--header-icon-filter);
  transition: filter 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lang-menu {
  display: flex;
  padding: var(--padding-xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-m);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1000;
  min-width: max-content;
  box-sizing: border-box;
  background: rgba(51, 51, 51, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0s linear 0.3s;
  visibility: hidden;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .lang-menu,
  .header-overlay {
    background: rgba(51, 51, 51, 0.88);
  }
}

.header-actions.is-open .lang-menu,
.lang-menu.is-open {
  filter: blur(0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  visibility: visible;
}

.for-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  align-self: stretch;
}

.max-width-640 {
  max-width: 640px;
}

.text-align-center {
  text-align: center;
}

.mobile-text-align-left {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.facts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-2xl);
  align-self: stretch;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .facts {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-text-align-left {
    text-align: left;
  }
}

.fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.hidden {
  visibility: hidden;
}

/*
  Landing animations API:
  class="productive-fast", class="expressive-slow", class="bouncy-slowest"
  or class="landing productive fast". Works on sections, blocks, text, images, etc.
*/
.landing,
[data-landing],
.productive-fast,
.productive-slow,
.productive-slowest,
.expressive-fast,
.expressive-slow,
.expressive-slowest,
.bouncy-fast,
.bouncy-slow,
.bouncy-slowest {
  --landing-duration: 680ms;
  --landing-delay: 0ms;
  --landing-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --landing-y: 20px;
  --landing-blur: 8px;
  --landing-scale: 1;
  opacity: 1;
  filter: blur(0);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--landing-duration) var(--landing-ease) var(--landing-delay),
    filter var(--landing-duration) var(--landing-ease) var(--landing-delay),
    -webkit-transform var(--landing-duration) var(--landing-ease) var(--landing-delay),
    transform var(--landing-duration) var(--landing-ease) var(--landing-delay);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.landing-animation-ready .landing:not(.is-landing-visible),
.landing-animation-ready [data-landing]:not(.is-landing-visible),
.landing-animation-ready .productive-fast:not(.is-landing-visible),
.landing-animation-ready .productive-slow:not(.is-landing-visible),
.landing-animation-ready .productive-slowest:not(.is-landing-visible),
.landing-animation-ready .expressive-fast:not(.is-landing-visible),
.landing-animation-ready .expressive-slow:not(.is-landing-visible),
.landing-animation-ready .expressive-slowest:not(.is-landing-visible),
.landing-animation-ready .bouncy-fast:not(.is-landing-visible),
.landing-animation-ready .bouncy-slow:not(.is-landing-visible),
.landing-animation-ready .bouncy-slowest:not(.is-landing-visible) {
  opacity: 0;
  filter: blur(var(--landing-blur));
  -webkit-transform: translate3d(0, var(--landing-y), 0) scale(var(--landing-scale));
  transform: translate3d(0, var(--landing-y), 0) scale(var(--landing-scale));
  will-change: opacity, filter, transform;
}

.is-landing-visible {
  will-change: auto;
}

.landing.productive,
[data-landing="productive"],
.productive-fast,
.productive-slow,
.productive-slowest {
  --landing-y: 14px;
  --landing-blur: 5px;
  --landing-scale: 1;
  --landing-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.landing.expressive,
[data-landing="expressive"],
.expressive-fast,
.expressive-slow,
.expressive-slowest {
  --landing-y: 32px;
  --landing-blur: 12px;
  --landing-scale: 0.985;
  --landing-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.landing.bouncy,
[data-landing="bouncy"],
.bouncy-fast,
.bouncy-slow,
.bouncy-slowest {
  --landing-y: 26px;
  --landing-blur: 7px;
  --landing-scale: 0.97;
  --landing-ease: cubic-bezier(0.2, 1.32, 0.32, 1);
}

.landing.fast,
[data-landing-speed="fast"],
.productive-fast,
.expressive-fast,
.bouncy-fast {
  --landing-duration: 420ms;
}

.landing.slow,
[data-landing-speed="slow"],
.productive-slow,
.expressive-slow,
.bouncy-slow {
  --landing-duration: 760ms;
}

.landing.slowest,
[data-landing-speed="slowest"],
.productive-slowest,
.expressive-slowest,
.bouncy-slowest {
  --landing-duration: 1120ms;
}

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

  .landing,
  [data-landing],
  .productive-fast,
  .productive-slow,
  .productive-slowest,
  .expressive-fast,
  .expressive-slow,
  .expressive-slowest,
  .bouncy-fast,
  .bouncy-slow,
  .bouncy-slowest {
    opacity: 1 !important;
    filter: blur(0) !important;
    -webkit-transform: none !important;
    transform: none !important;
    transition: none !important;
  }

  .team-loader {
    animation: none !important;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  align-self: stretch;
}

.lead-section {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-m);
}

.partly-highlighted-heading {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: var(--gap-s);
  align-self: stretch;
  flex-wrap: wrap;
}

.product-screen {
  align-self: stretch;
}

.features,
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  align-self: stretch;
}

.features-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-l);
  align-self: stretch;
}

.features-grid-row {
  display: flex;
  align-items: center;
  gap: var(--gap-l);
  align-self: stretch;
}

.feature {
  display: flex;
  height: 240px;
  padding: var(--padding-xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-s);
  flex: 1 0 0;
}

[data-bg-class] {
  background-color: #e9e9e9;
}

.feature[data-bg-class],
.pricing-card-top[data-bg-class="pro-plan-bg"] {
  background-color: #333333;
}

.bg-feature-1 {
  background: url(/img/feature-1.webp) lightgray 80% / cover no-repeat;
}

.bg-feature-2 {
  background: url(/img/feature-2.webp) lightgray 80% / cover no-repeat;
}

.bg-feature-3 {
  background: url(/img/feature-3.webp) lightgray 80% / cover no-repeat;
}

.bg-feature-4 {
  background: url(/img/feature-4.webp) lightgray 80% / cover no-repeat;
}

@media (max-width: 768px) {
  .features-grid-row {
    flex-direction: column;
  }
  .feature {
    flex: 0 auto;
  }
}

.api {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  align-self: stretch;
}

.api-item {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
}

.api-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap-m);
  align-self: stretch;
  flex-wrap: wrap;
}

.item-brand-1 {
  border: 1px solid var(--landing-text-brand-1);
}
.item-brand-2 {
  border: 1px solid var(--landing-text-brand-2);
}

.pricing-cards-grid {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-xl);
  align-self: stretch;
}

@media (max-width: 768px) {
  .pricing-cards-grid {    
    flex-direction: column;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.pricing-card-top {
  display: flex;
  padding: var(--padding-xl);
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid var(--landing-text-primary);
  gap: var(--gap-s);
}

.pro-plan-bg {
  background: url(/img/pro-plan-bg.webp) lightgray 70% / cover no-repeat;
}

.custom-plan-bg {
  background: url(/img/custom-plan-bg.webp) lightgray 70% / cover no-repeat;
}

.pricing-card-bottom {
  display: flex;
  padding: var(--padding-xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-m);
  align-self: stretch;
  border-right: 1px solid var(--landing-text-primary);
border-bottom: 1px solid var(--landing-text-primary);
border-left: 1px solid var(--landing-text-primary);
}

.btn-black {
  background: var(--landing-bg-base-on-light);
}

.btn-black:hover {
  background: var(--landing-bg-code);
  color: var(--landing-text-primary) !important;
}

.btn-brand-1 {
  background: var(--panel-bg-accent);
}

.btn-brand-1:hover {
  background: var(--landing-bg-code) !important;
  color: var(--landing-text-primary) !important;
}

.btn-brand-2 {
  background: var(--landing-text-brand-2);
}

.btn-brand-2:hover {
  background: var(--landing-bg-code) !important;
  color: var(--landing-text-primary) !important;
}

.btn-grey {
  background: var(--landing-bg-code);
}

.btn-grey:hover {
  background: var(--landing-bg-base-on-light) !important;
  color: var(--landing-text-primary-on-brand) !important;
}

.demo-form {
  display: flex;
flex-direction: column;
align-items: center;
gap: var(--gap-xl);
align-self: stretch;
margin: 0 auto;
}

.stretch {
  align-self: stretch;
}

.core-input {
  display: flex;
padding: 12px;
flex-direction: column;
align-items: flex-start;
gap: 16px;
align-self: stretch;
border: 1px solid var(--landing-text-primary);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-m);
  align-self: stretch;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  display: none;
}

body.form-success .demo-form .form {
  display: none;
}

body.form-success .form-message-success,
body.form-error .form-message-error {
  display: block;
}

.form-container {
  max-width: 480px;
  display: flex;
flex-direction: column;
align-items: center;
gap: var(--gap-l);
align-self: stretch;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  align-self: stretch;
}

.questions {
  display: flex;
max-width: 640px;
flex-direction: column;
align-items: center;
gap: var(--gap-l);
align-self: stretch;
margin: 0 auto;
}

.question-container {
  display: flex;
flex-direction: column;
align-items: center;
align-self: stretch;
}

.question {
  display: flex;
align-items: center;
gap: 4px;
background: none;
border: 0;
cursor: pointer;
padding: 0;
text-align: left;
}

.chevron {
  width: 24px;
height: 24px;
flex-shrink: 0;
opacity: 1;
transform: rotate(0deg);
transition:
  opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
  transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.question:hover .chevron,
.question:focus-visible .chevron {
  opacity: 0.8;
}

.question-container.is-open .chevron {
  transform: rotate(180deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-8px);
  transform-origin: top center;
  transition:
    max-height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    margin-top 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.question-container.is-open .answer {
  margin-top: var(--gap-m);
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .question-container {
  align-items: start;
  }
  .question {
    align-self: stretch;
    justify-content: space-between;
  }
  .mobile-status {
    font-size: 24px !important;
  }
}

.mobile-header {
  display: none;
padding: var(--padding-xl) var(--header-side-padding);
justify-content: space-between;
align-items: center;
align-self: stretch;
}

.burger-menu {
  width: 32px;
height: 32px;
}

.burger-btn,
.close-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 1;
  transition: scale 0.15s ease-out;
}

.burger-btn:active,
.close-btn:active {
  scale: 0.96;
}

button {
  -moz-appearance: none;
  appearance: none;         /* Removes platform-specific styling */
  -webkit-appearance: none; /* Required for Safari/iOS compatibility */
  background: none;         /* Removes default background */
  border: none;             /* Removes default border */
  padding: 0;               /* Removes default padding */
  margin: 0;                /* Ensures no unexpected spacing */
  cursor: pointer;          /* Restores pointer cursor */
  color: inherit;           /* Syncs text color with parent */
  font: inherit;            /* Syncs font styles with parent */
  text-align: inherit;      /* Syncs text alignment with parent */
  box-shadow: none;         /* Removes potential shadow defaults */
}

input,
textarea,
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

.header-overlay {
  display: none;
}

.header-overlay a {
  position: relative;
}

.close-btn {
  position: absolute;
right: 16px;
top: 16px;
width: 32px;
height: 32px;
}

.logo-small {
height: 17px;
}

@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  section[id] {
    scroll-margin-top: calc(var(--margin-page) + 72px);
  }

  .header-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    width: 100%;
    height: 100%;
    padding: var(--padding-xl);
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: var(--gap-l);
    background: rgba(51, 51, 51, 0.80);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
      filter 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
      visibility 0s linear 0.3s;
    visibility: hidden;
  }

  .header-overlay.is-open {
    filter: blur(0);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  .docs {
    width: 100%;
    align-self: stretch;
  }

  .systems-statuses {
    align-self: stretch;
    gap: var(--gap-m) !important;
  }
}

@media (max-width: 400px) {
  .max-width-170 {
    max-width: 170px;
  }
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-m);
}

footer {
  display: flex;
justify-content: space-between;
align-items: center;
align-self: stretch;
margin-bottom: var(--margin-page);
}

.footer-left {
  display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--gap-m);
}

.system-status,
.system-status-small {
  display: flex;
align-items: center;
gap: 8px;
}

.system-status svg,
.system-status-small svg {
  flex: 0 0 auto;
}

.status-positive {
  color: var(--landing-text-positive);
}

.status-warning {
  color: var(--landing-text-warning);
}

.status-negative {
  color: var(--landing-text-negative);
}

.header-link {
  transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-link:hover {
opacity: 0.8;
}

.docs {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.long-text {
  text-wrap: pretty;
}

.docs-section {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 640px;
  box-sizing: border-box;
  flex-direction: column;
  gap: var(--gap-m);
  align-self: stretch;
}

.code-block {
  display: flex;
  width: 100%;
  min-width: 0;
  padding: var(--padding-xl);
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--landing-bg-code);
  overflow-x: auto;
}

.code-block pre {
  max-width: 100%;
  margin: 0;
  white-space: pre;
}

.status-info {
  display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: var(--gap-m);
align-self: stretch;
}

.global-status {
  display: flex;
align-items: center;
gap: var(--gap-m);
}

.update-time {
  font-variant-numeric: tabular-nums;
}

.systems-statuses {
  display: flex;
max-width: 640px;
flex-direction: column;
align-items: center;
gap: var(--gap-l);
align-self: center;
width: 100%;
}

.status-item {
  display: flex;
padding: var(--padding-xl);
justify-content: space-between;
align-items: center;
align-self: stretch;
border: 1px solid var(--landing-text-primary);
}

html.team-document {
  min-height: 100%;
  background: var(--panel-bg-base-alt);
}

body.team-page {
  max-width: none;
  min-height: 100vh;
  background: var(--panel-bg-base-alt);
}

body.team-page main.team-main {
  min-height: 100vh;
  box-sizing: border-box;
  justify-content: center;
  gap: 0;
  background: var(--panel-bg-base-alt);
}

.team-auth {
  display: flex;
  width: 100%;
  max-width: 320px;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-l);
}

.team-logo {
  display: block;
  width: auto;
  height: 20px;
}

.team-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-l);
}

.team-input {
  width: 100%;
  min-height: 58px;
  box-sizing: border-box;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  outline: 0;
  background: var(--panel-bg-base);
  transition:
    box-shadow 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.team-input::placeholder {
  color: var(--landing-text-secondary);
  opacity: 1;
}

.team-input:focus {
  box-shadow: 0 0 0 2px var(--landing-text-brand-1);
  color: var(--panel-text-primary);
}

.team-submit {
  position: relative;
  display: inline-flex;
  min-width: 105px;
  width: 100%;
  min-height: 58px;
  padding: 16px 32px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: var(--landing-text-brand-1);
  scale: 1;
  transition:
    background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    scale 0.15s ease-out;
}

.team-submit:hover,
.team-submit:focus-visible {
  background: var(--landing-bg-base-on-light);
}

.team-submit:disabled {
  cursor: wait;
  opacity: 0.85;
}

.team-submit:active:not(:disabled) {
  scale: 0.96;
}

.team-submit-label {
  display: block;
}

.team-submit.is-loading .team-submit-label {
  visibility: hidden;
}

.team-loader {
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  display: none;
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--landing-text-primary-on-brand);
  border-radius: 50%;
  animation: team-spin 0.75s linear infinite;
}

.team-submit.is-loading .team-loader {
  display: block;
}

.team-error {
  min-height: 1.6em;
  text-align: center;
}

.team-error:empty {
  visibility: hidden;
}

@keyframes team-spin {
  to {
    transform: rotate(360deg);
  }
}

@supports (content-visibility: auto) {
  .for-who,
  .product,
  .features,
  .api,
  .pricing,
  .demo-form,
  .docs,
  .status,
  .systems-statuses {
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
  }

  .systems-statuses {
    contain-intrinsic-size: auto 360px;
  }
}
