:root {
  --neutral-1: #ffffff;
  --neutral-2: #f6f6f6;
  --neutral-3: #e9e9e9;
  --neutral-4: #d9d9d9;
  --neutral-5: #c4c4c4;
  --neutral-6: #a2a2a6;
  --neutral-7: #9191c6;
  --neutral-8: #696097;
  --neutral-9: #4c455f;
  --neutral-10: #2f2845;
  --neutral-11: #271f3e;
  --neutral-12: #1e1436;
  --neutral-13: #040024;
  --primary-50: #eee7ff;
  --primary-100: #d6c8ff;
  --primary-200: #bfa2ff;
  --primary-300: #a46dff;
  --primary-400: #7841ff;
  --primary-500: #5621ff;
  --primary-600: #4e10ed;
  --primary-700: #3d00d5;
  --primary-800: #2701ac;
  --primary-900: #24008b;
  --main-50: #f4e7ff;
  --main-100: #ddb6ff;
  --main-200: #cc92ff;
  --main-300: #b560ff;
  --main-400: #a641ff;
  --main-500: #9012ff;
  --main-600: #8310e8;
  --main-700: #660db5;
  --main-800: #4f0a8c;
  --main-900: #3c086b;
  --warning-50: #fff6e7;
  --warning-100: #ffdab0;
  --warning-200: #ffcc92;
  --warning-300: #ffb660;
  --warning-400: #ffa241;
  --warning-500: #ff8102;
  --warning-600: #e84d10;
  --warning-700: #d06700;
  --warning-800: #8c500a;
  --warning-900: #863d08;
  --success-50: #eafde7;
  --success-100: #d0ffb5;
  --success-200: #a8ed92;
  --success-300: #54dd60;
  --success-400: #33ca41;
  --success-500: #00f111;
  --success-600: #00de0f;
  --success-700: #00940c;
  --success-800: #007309;
  --success-900: #005507;
  --error-50: #fdeae7;
  --error-100: #fbd0cf;
  --error-200: #e8a4a8;
  --error-300: #e06456;
  --error-400: #d13335;
  --error-500: #ff0000;
  --error-600: #b00003;
  --error-700: #940002;
  --error-800: #730002;
  --error-900: #580001;
  --accent-50: #e5f8fa;
  --accent-100: #c0f1f6;
  --accent-200: #89e4ea;
  --accent-300: #45cad6;
  --accent-400: #33cad6;
  --accent-500: #00b8d1;
  --accent-600: #00a4bc;
  --accent-700: #086b84;
  --accent-800: #086873;
  --accent-900: #004f58;
  /* Font family */
  --primary-font-family: "Inter", sans-serif;
  /* Font weights */
  --fw-black: 900;
  --fw-heavy: 800;
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  --fw-thin: 200;
  --fw-ultra-light: 100;
  --font-size-heading-1: 96px;
  --font-size-heading-2: 60px;
  --font-size-heading-3: 48px;
  --font-size-heading-4: 34px;
  --font-size-heading-5: 24px;
  --font-size-heading-6: 20px;
  --font-size-subtitle-1: 16px;
  --font-size-subtitle-2: 14px;
  --font-size-body-1: 16px;
  --font-size-body-2: 14px;
  --font-size-body-3: 14px;
  --font-size-caption: 12px;
  --font-size-overline: 10px;
  --font-size-mini: 8px;
  --line-height-heading-1: 100px;
  --line-height-heading-2: 64px;
  --line-height-heading-3: 56px;
  --line-height-heading-4: 40px;
  --line-height-heading-5: 32px;
  --line-height-heading-6: 24px;
  --line-height-subtitle-1: 20px;
  --line-height-subtitle-2: 16px;
  --line-height-body-1: 24px;
  --line-height-body-2: 20px;
  --line-height-body-3: 24px;
  --line-height-caption: 16px;
  --line-height-overline: 12px;
  --line-height-mini: 12px;
  /* Transitions */
  --ts-fast: all 100ms ease;
  --ts-medium: all 250ms ease;
  --ts-slow: all 500ms ease;
  --ts-delay-fast: 50ms;
  --ts-delay-medium: 100ms;
  --ts-delay-slow: 150ms;
}

@media (min-width: 1272px) {
  .container {
    max-width: 1224px;
  }
}
@media (max-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 992px) {
  d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .header.fixed .header__content, .header.static .header__content {
    padding: 16px 0;
  }
  .header__content {
    padding: 16px 0;
  }
  .header__logo img,
  .header__logo svg {
    height: 24px;
  }
  .header__menu {
    position: fixed;
    display: flex;
    top: 0;
    left: 100%;
    bottom: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
    background-color: var(--n);
    transition: var(--ts-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -webkit-backdrop-filter: blur(24px);
            backdrop-filter: blur(24px);
    background: rgba(0, 0, 0, 0.7);
  }
  .header__menu.show {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  .header__menu__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 32px;
  }
  .header__menu__title > span {
    color: var(--neutral-1);
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    font-weight: var(--fw-heavy);
    text-transform: uppercase;
  }
  .header__menu__body {
    align-items: stretch;
    justify-content: center;
    overflow: auto;
    padding: 16px 24px;
  }
  .header__menu__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px 32px;
  }
  .header__menu__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .header__menu__link {
    padding: 24px;
    font-weight: bold;
    font-size: var(--font-size-heading-6);
    line-height: var(--line-height-heading-6);
    color: var(--neutral-1) !important;
  }
  .section__content--row {
    flex-direction: column;
  }
  .section__content--row > div {
    width: 100%;
  }
  .section--hero .section__content {
    padding: 140px 0 64px;
  }
  .lm-hero {
    flex-direction: column;
  }
  .lm-hero__graphic img {
    position: static;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  .lm-hero__pattern.money {
    display: none;
  }
  .lm-hero__pattern.plus {
    width: 242px;
    right: -88px;
    top: auto;
    bottom: 158px;
  }
  .lm-hero__pattern.pyramid {
    left: -74px;
  }
  .lm-hero__pattern.cursor {
    width: 84px;
    left: auto;
    right: 36px;
    bottom: 36px;
  }
  .lm-hero-hr__pattern.money, .lm-hero-hr__pattern.grid, .lm-hero-hr__pattern.cursor {
    display: none;
  }
  .lm-hero-hr__pattern.plus {
    width: 242px;
    right: -88px;
    top: auto;
    bottom: 64px;
  }
  .lm-hero-hr__pattern.pyramid {
    left: -74px;
  }
  .lm-hero-hr__title {
    font-size: var(--font-size-heading-2);
    line-height: var(--line-height-heading-2);
  }
  .lm-hero-hr__desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .lm-hero-hr__desc .lm-highlight {
    margin: 0;
    transform: none;
  }
  .lm-audience {
    flex-direction: column;
  }
  .lm-audience__card {
    width: 100%;
  }
  .lm-features {
    flex-direction: column;
  }
  .lm-features__card {
    width: 100%;
  }
  .lm-features__card:hover {
    transform: none;
  }
  .lm-features__pattern.cube {
    display: none;
  }
  .lm-download__graphic {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
  }
  .lm-download__pattern.grid {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .lm-contact__list {
    flex-direction: column;
    gap: 16px;
  }
  .lm-contact__pattern.cursor {
    width: 116px;
    height: auto;
    right: 24px;
    bottom: -104px;
    z-index: 1;
  }
  .lm-form {
    align-items: stretch;
  }
  .lm-form__group {
    flex-direction: column;
    align-items: stretch;
  }
  .lm-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
}/*# sourceMappingURL=responsive.css.map */