/* -------------------------------
        Table of Contents
----------------------------------
    1. Reset Styles
    2. Globals
    3. Defaults
    4. Layouts
    5. Partials
    6. Features
    7. Libraries
------------------------------- */
/* ------------------------------
        1. Reset Styles
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body,
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

input[type=number]::-webkit-inner-spin-button {
  display: none;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

button {
  border: none;
  background: none;
  outline: none;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ------------------------------
        2. Globals
------------------------------ */
: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;
}

/* ------------------------------
        3. Defaults
------------------------------ */
* {
  font-family: var(--primary-font-family);
}

body {
  font-size: var(--fs-b2);
  font-weight: var(--fw-regular);
  font-optical-sizing: auto;
  letter-spacing: 0.4px;
  color: var(--neutral-13);
  background-color: var(--neutral-1);
}

.container,
.container-fluid {
  --gutter: 24px;
  width: 100%;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  margin-right: auto;
  margin-left: auto;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.nice-scroll {
  scrollbar-color: var(--neutral-1) var(--main-500);
  scrollbar-width: thin;
}

.overflow-hidden {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--main-500);
}

::-webkit-scrollbar-track {
  background: var(--neutral-1);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

::-moz-selection {
  background: var(--main-500);
  color: var(--neutral-1);
}

::selection {
  background: var(--main-500);
  color: var(--neutral-1);
}

/* ------------------------------
          4. Layouts
  ------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: var(--ts-medium);
  z-index: 99;
}
.header.fixed, .header.static {
  background: var(--neutral-1);
  border-bottom: 1px solid var(--neutral-3);
}
.header.fixed .header__content, .header.static .header__content {
  padding: 20px 0;
}
.header.fixed .header__menu__link, .header.static .header__menu__link {
  color: var(--neutral-13);
}
.header.fixed .header__menu__link::after, .header.static .header__menu__link::after {
  background: var(--main-500);
}
.header.fixed .header__logo svg path, .header.static .header__logo svg path {
  fill: var(--main-500);
}
.header__content {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  z-index: 1;
  transition: var(--ts-medium);
}
.header__content__group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__content__group__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__content__group__item.grow {
  flex-grow: 1;
}
.header__content__group.grow {
  flex-grow: 1;
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo img,
.header__logo svg {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.header__logo svg path {
  fill: var(--neutral-1);
  transition: var(--ts-medium);
}
.header__menu {
  flex-grow: 1;
}
.header__menu__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.header__menu__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__menu__item {
  display: flex;
  gap: 4px;
}
.header__menu__link {
  position: relative;
  color: var(--neutral-1);
  padding: 8px 12px;
  font-size: var(--font-size-body-2);
  line-height: var(--line-height-body-2);
  font-weight: var(--fw-medium);
  transition: var(--ts-medium);
  flex-grow: 1;
  text-align: center;
}
.header__menu__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neutral-1);
  transition: var(--ts-slow);
  opacity: 0;
  visibility: hidden;
}
.header__menu__link:hover::after, .header__menu__link.active::after {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: var(--neutral-13);
}

.section {
  position: relative;
}
.section__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 80px 0;
  z-index: 4;
}
.section__content--row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.section__content--row > div {
  align-self: stretch;
  width: calc(50% - 28px);
}
.section__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section__header__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  border-left: 4px solid var(--main-500);
}
.section__header__title {
  font-size: var(--font-size-heading-4);
  line-height: var(--line-height-heading-4);
  font-weight: var(--fw-heavy);
}
.section__header__sub-title {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: var(--neutral-8);
}
.section__header__desc {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: #605971;
}
.section__header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__header--light .section__header__content {
  border-left-color: var(--neutral-3);
}
.section__header--light .section__header__title, .section__header--light .section__header__sub-title, .section__header--light .section__header__desc {
  color: var(--neutral-1);
}
.section__body {
  display: flex;
  flex-direction: column;
}
.section__footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section--hero {
  min-height: 584px;
  background: linear-gradient(269.55deg, #9012ff 0.36%, #570b99 99.61%);
  margin-bottom: 58px;
}
.section--hero .section__content {
  padding: 180px 0 140px;
}
.section--hero-hr {
  min-height: 100vh;
  background: linear-gradient(264.6deg, #5612ff 0%, #24086b 95.68%);
  overflow: hidden;
}
.section--hero-hr .section__content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--audience {
  background-color: var(--neutral-1);
}
.section--features {
  padding-bottom: 76px;
  background-color: #f5f5f6;
}
.section--download {
  background: linear-gradient(269.55deg, #9012ff 0.36%, #570b99 99.61%);
}
.section--faq {
  background-color: var(--neutral-1);
}
.section--contact {
  background-color: #f5f5f6;
}

.footer .section__content {
  padding-bottom: 24px;
}

/* ------------------------------
          5. Partials
  ------------------------------ */
.lm-btn {
  position: relative;
  display: inline-flex;
  outline: none;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  gap: 10px;
  height: 44px;
  font-size: var(--font-size-body-3);
  line-height: var(--line-height-body-3);
  font-weight: var(--fw-bold);
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--ts-medium);
  overflow: hidden;
  cursor: pointer;
}
.lm-btn svg,
.lm-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  transition: var(--ts-medium);
}
.lm-btn svg path {
  transition: var(--ts-medium);
}
.lm-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--ts-slow);
  transform: skew(45deg) translate(-150%, 0);
  z-index: 1;
}
.lm-btn--disabled, .lm-btn:disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}
.lm-btn:hover:after {
  opacity: 0;
  transform: skew(45deg) translate(0, 0) !important;
}
.lm-btn--primary {
  color: var(--neutral-1);
  background: var(--primary-500);
}
.lm-btn--primary svg path {
  stroke: var(--neutral-1);
}
.lm-btn--primary--disabled, .lm-btn--primary:disabled {
  background-color: var(--neutral-5);
  color: var(--neutral-7);
}
.lm-btn--primary:hover {
  background: var(--primary-700);
}
.lm-btn--primary:focus {
  box-shadow: 0 0 0 4px rgba(61, 0, 213, 0.2);
}
.lm-btn--secondary {
  color: var(--neutral-13);
  background: var(--neutral-3);
}
.lm-btn--secondary svg path {
  stroke: var(--neutral-13);
}
.lm-btn--secondary--disabled, .lm-btn--secondary:disabled {
  background-color: var(--neutral-1);
  color: var(--neutral-7);
  border: 1px solid var(--neutral-7);
}
.lm-btn--secondary:hover {
  background: var(--main-50);
}
.lm-btn--secondary:focus {
  box-shadow: 0 0 0 4px rgba(233, 233, 233, 0.2);
}
.lm-btn--main {
  color: var(--neutral-1);
  background: var(--main-500);
}
.lm-btn--main svg path {
  stroke: var(--neutral-1);
}
.lm-btn--main--disabled, .lm-btn--main:disabled {
  background-color: var(--neutral-5);
  color: var(--neutral-7);
}
.lm-btn--main:hover {
  background: var(--main-700);
}
.lm-btn--main:focus {
  box-shadow: 0 0 0 4px rgba(144, 18, 255, 0.2);
}
.lm-btn--white {
  color: var(--neutral-13);
  background: var(--neutral-1);
}
.lm-btn--white svg path {
  stroke: var(--neutral-13);
}
.lm-btn--white:after {
  display: none;
}
.lm-btn--white--disabled, .lm-btn--white:disabled {
  background-color: var(--neutral-5);
  color: var(--neutral-7);
}
.lm-btn--white:focus {
  box-shadow: 0 0 0 4px rgba(225, 225, 255, 0.2);
}
.lm-btn--ts-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--neutral-1);
}
.lm-btn--ts-white svg path {
  stroke: var(--neutral-1);
}
.lm-btn--ts-white--disabled, .lm-btn--ts-white:disabled {
  background-color: var(--neutral-1);
  color: var(--neutral-7);
  border: 1px solid var(--neutral-7);
}
.lm-btn--ts-white:focus {
  box-shadow: 0 0 0 4px rgba(144, 18, 255, 0.2);
}
.lm-btn--icon {
  padding: 10px;
}

.lm-highlight {
  color: var(--main-500);
}
.lm-highlight--primary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 48px;
  background: linear-gradient(241.46deg, #9012ff 13.46%, #ff12e7 114.72%);
  font-weight: var(--fw-bold);
  margin: 0 12px;
  color: var(--neutral-1);
  transform: rotate(-5deg);
}

.lm-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--neutral-1);
}
.lm-form__group {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 16px;
}
.lm-form__group > div {
  flex: 1;
  min-width: calc(50% - 8px);
}
.lm-form__control {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.lm-form__control__label {
  font-size: var(--font-size-body-2);
  line-height: var(--line-height-body-2);
  font-weight: var(--fw-medium);
  color: var(--neutral-13);
}
.lm-form__control__input {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border: 1px solid #dad9de;
  background: #fdfcfd;
  border-radius: 12px;
  height: 56px;
}
.lm-form__control__input__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lm-form__control__input__icon svg,
.lm-form__control__input__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.lm-form__control__input input,
.lm-form__control__input textarea {
  border: none;
  min-width: 0;
  flex-grow: 1;
  background: none;
  color: var(--neutral-13);
  font-size: var(--font-size-body-2);
  line-height: var(--line-height-body-2);
  padding: 0;
  resize: none;
}
.lm-form__control__input input::-moz-placeholder, .lm-form__control__input textarea::-moz-placeholder {
  color: #918c9c;
}
.lm-form__control__input input::placeholder,
.lm-form__control__input textarea::placeholder {
  color: #918c9c;
}
.lm-form__control__text {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  color: #605971;
}
.lm-form__control__text.error {
  color: var(--error-500);
}
.lm-form__control__text.warning {
  color: var(--warning-500);
}
.lm-form__control__text.success {
  color: var(--success-500);
}
.lm-form__control--textarea .lm-form__control__input {
  height: 95px;
  resize: none;
}

.lm-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.lm-modal--fade {
  transition: opacity 150ms linear;
}
.lm-modal--fade .lm-modal__dialog {
  transition: transform 150ms ease-out;
  transform: translate(0, -50px);
}
.lm-modal--fade:not(.lm-modal--show) {
  opacity: 0;
}
.lm-modal--transparent .lm-modal__content {
  background: none;
}
.lm-modal--show .lm-modal__dialog {
  transform: none;
}
.lm-modal--sm .lm-modal__dialog {
  max-width: 386px;
}
.lm-modal--md .lm-modal__dialog {
  max-width: 600px;
}
.lm-modal--lg .lm-modal__dialog {
  max-width: 900px;
}
.lm-modal__dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
}
.lm-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--neutral-1);
  background-clip: padding-box;
  border-radius: 24px;
  padding: 16px 0;
  outline: 0;
}
.lm-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 24px;
}
.lm-modal__header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}
.lm-modal__header__icon svg,
.lm-modal__header__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lm-modal__header__title {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
  font-weight: var(--fw-bold);
  color: var(--neutral-13);
}
.lm-modal__header__description {
  font-size: var(--font-size-body-2);
  line-height: var(--line-height-body-2);
  color: var(--neutral-13);
}
.lm-modal__body {
  padding: 16px 24px;
}
.lm-modal__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 24px;
}
.lm-modal__footer > .mn-btn {
  flex: 1;
}
.lm-modal__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  flex-shrink: 0;
  top: 12px;
  right: 12px;
  z-index: 9;
  cursor: pointer;
}
.lm-modal__close svg,
.lm-modal__close img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ------------------------------
          6. Features
  ------------------------------ */
.lm-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
}
.lm-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  flex-grow: 1;
}
.lm-hero__graphic {
  position: relative;
  flex-shrink: 0;
  flex-grow: 1;
  align-self: stretch;
  min-width: 420px;
}
.lm-hero__graphic img {
  position: absolute;
  top: -48px;
}
.lm-hero__title {
  font-size: var(--font-size-heading-3);
  line-height: var(--line-height-heading-3);
  font-weight: var(--fw-heavy);
  color: var(--neutral-1);
}
.lm-hero__desc {
  font-size: var(--font-size-subtitle-1);
  line-height: var(--line-height-subtitle-1);
  font-weight: var(--fw-regular);
  color: var(--neutral-1);
  margin-top: 16px;
}
.lm-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.lm-hero__pattern {
  position: absolute;
}
.lm-hero__pattern.cursor {
  width: 130px;
  height: auto;
  left: 350px;
  bottom: -64px;
  z-index: 3;
}
.lm-hero__pattern.money {
  width: 326px;
  height: auto;
  left: -110px;
  bottom: -202px;
  z-index: 3;
}
.lm-hero__pattern.pyramid {
  width: 392px;
  height: auto;
  left: -48px;
  top: 16px;
  z-index: 1;
  opacity: 0.3;
}
.lm-hero__pattern.plus {
  width: 355px;
  height: auto;
  right: -74px;
  top: 102px;
  z-index: 1;
}
.lm-hero__pattern.hero {
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.lm-hero-hr {
  position: relative;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -56px;
}
.lm-hero-hr__title {
  font-size: 90px;
  line-height: 1.1;
  font-weight: var(--fw-heavy);
  color: var(--neutral-1);
}
.lm-hero-hr__desc {
  font-size: 20px;
  line-height: 20px;
  color: var(--neutral-1);
}
.lm-hero-hr__pattern {
  position: absolute;
}
.lm-hero-hr__pattern.cursor {
  width: 130px;
  height: auto;
  right: 212px;
  top: calc(100% + 6px);
  z-index: 3;
}
.lm-hero-hr__pattern.money {
  width: 326px;
  height: auto;
  left: -110px;
  bottom: -24px;
  z-index: 3;
}
.lm-hero-hr__pattern.grid {
  width: 476px;
  height: auto;
  right: -62px;
  bottom: -252px;
  opacity: 0.4;
  z-index: 3;
}
.lm-hero-hr__pattern.pyramid {
  width: 392px;
  height: auto;
  left: -48px;
  top: 16px;
  opacity: 0.3;
  z-index: 1;
}
.lm-hero-hr__pattern.plus {
  width: 355px;
  height: auto;
  right: -74px;
  top: 102px;
  z-index: 1;
}
.lm-hero-hr__pattern.hero {
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.lm-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.lm-audience__card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--neutral-5);
}
.lm-audience__card__title {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
  font-weight: var(--fw-bold);
}
.lm-audience__card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lm-audience__card__list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lm-audience__card__list__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--main-500);
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(144, 18, 255, 0.2);
}
.lm-audience__card__list__item__icon svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lm-audience__card__list__item__icon svg path {
  fill: var(--neutral-1);
}
.lm-audience__card__list__item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lm-audience__card__list__item__content > span {
  font-size: var(--font-size-body-2);
  line-height: var(--line-height-body-2);
  font-weight: var(--fw-bold);
}
.lm-audience__card__list__item__content > p {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
}

.lm-features {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lm-features__card {
  display: flex;
  flex-direction: column;
  width: calc(25% - 12px);
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--neutral-1);
  transition: var(--ts-medium);
}
.lm-features__card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lm-features__card__icon svg,
.lm-features__card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lm-features__card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lm-features__card__title {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
  font-weight: var(--fw-bold);
  color: #000000;
}
.lm-features__card__desc {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: #595959;
}
.lm-features__card:hover {
  box-shadow: 0px 32px 64px -12px rgba(0, 0, 0, 0.0784313725);
  transform: translateY(-8px);
}
.lm-features__pattern {
  position: absolute;
}
.lm-features__pattern.cube {
  width: 256px;
  height: auto;
  right: 12px;
  top: -64px;
  z-index: 1;
}

.lm-download {
  position: relative;
  display: flex;
  flex-grow: 1;
}
.lm-download__graphic {
  position: absolute;
  width: 128%;
  max-width: 716px;
  height: auto;
  top: 80%;
  transform: translateY(-50%);
  z-index: 2;
}
.lm-download__platforms {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.lm-download__platforms__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #dad9de;
  border-radius: 16px;
  padding: 16px 12px;
}
.lm-download__platforms__item__qr {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.lm-download__platforms__item__qr img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lm-download__platforms__item__logo {
  width: 150px;
  height: 56px;
}
.lm-download__pattern {
  position: absolute;
}
.lm-download__pattern.grid {
  width: 476px;
  height: auto;
  top: 56%;
  left: -100px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 40%;
}
.lm-download__pattern.location {
  width: 515px;
  height: auto;
  left: -163px;
  top: -92px;
  z-index: 1;
}

.lm-accordion {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lm-accordion__item {
  position: relative;
  padding: 24px 0;
  z-index: 1;
  border-bottom: 1px solid #dad9de;
}
.lm-accordion__item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: var(--ts-medium);
  cursor: pointer;
}
.lm-accordion__item__header__title {
  flex-grow: 1;
  font-size: var(--font-size-heading-6);
  line-height: var(--line-height-heading-6);
  font-weight: var(--fw-bold);
  color: var(--neutral-13);
}
.lm-accordion__item__header__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.lm-accordion__item__header__icon svg,
.lm-accordion__item__header__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: var(--ts-delay-medium);
}
.lm-accordion__item__body {
  display: none;
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: var(--neutral-9);
  padding-top: 12px;
}
.lm-accordion__item--show .lm-accordion__item__header__icon svg {
  transform: rotate(45deg);
}

.lm-contact {
  position: relative;
}
.lm-contact__list {
  display: flex;
  gap: 56px;
  justify-content: space-between;
}
.lm-contact__list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lm-contact__list__item__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  background-color: var(--main-500);
}
.lm-contact__list__item__icon svg,
.lm-contact__list__item__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lm-contact__list__item__icon svg path,
.lm-contact__list__item__icon img path {
  stroke: var(--neutral-1);
}
.lm-contact__list__item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lm-contact__list__item__label {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  color: var(--neutral-1);
}
.lm-contact__list__item__value {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  font-weight: var(--fw-bold);
  color: var(--neutral-1);
  transition: var(--ts-medium);
}
.lm-contact__list__item__value:not(span):hover {
  color: var(--main-300);
}
.lm-contact__pattern {
  position: absolute;
}
.lm-contact__pattern.cursor {
  width: 200px;
  height: auto;
  right: 106px;
  bottom: -134px;
  z-index: 1;
}

.lm-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-top: 24px;
  margin-top: 56px;
  border-top: 1px solid var(--neutral-9);
}
.lm-copyright p {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: #f0f0f2;
}
.lm-copyright ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.lm-copyright ul li {
  display: flex;
}
.lm-copyright ul li a {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  color: #f0f0f2;
  transition: var(--ts-medium);
  border-bottom: 2px solid transparent;
}
.lm-copyright ul li a:hover {
  border-bottom-color: #f0f0f2;
}

.lm-static {
  padding-top: 64px;
}
.lm-static *,
.lm-static ::after,
.lm-static ::before {
  box-sizing: border-box;
  font-size: var(--font-size-body-1);
}
.lm-static hr {
  margin: 1.5rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}
.lm-static h1,
.lm-static h2,
.lm-static h3,
.lm-static h4,
.lm-static h5,
.lm-static h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--neutral-13);
}
.lm-static h1 {
  font-size: var(--font-size-heading-4);
  line-height: var(--line-height-heading-4);
}
.lm-static h2 {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
}
.lm-static h3 {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
}
.lm-static h4 {
  font-size: var(--font-size-heading-6);
  line-height: var(--line-height-heading-6);
}
.lm-static h5 {
  font-size: var(--font-size-heading-6);
  line-height: var(--line-height-heading-6);
}
.lm-static h6 {
  font-size: var(--font-size-heading-6);
  line-height: var(--line-height-heading-6);
}
.lm-static p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.lm-static abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.lm-static address {
  margin-bottom: 1.5rem;
  font-style: normal;
  line-height: inherit;
}
.lm-static ol,
.lm-static ul {
  padding-left: 2rem;
}
.lm-static dl,
.lm-static ol,
.lm-static ul {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.lm-static ol ol,
.lm-static ol ul,
.lm-static ul ol,
.lm-static ul ul {
  margin-bottom: 0;
}
.lm-static li {
  list-style-type: unset;
}
.lm-static dt {
  font-weight: 700;
}
.lm-static dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.lm-static blockquote {
  margin: 0 0 1.5rem;
}
.lm-static b,
.lm-static strong {
  font-weight: bolder;
}
.lm-static small {
  font-size: 0.875em;
}
.lm-static mark {
  padding: 0.1875em;
  color: var(--neutral-1);
  background-color: var(--main-500);
}
.lm-static sub,
.lm-static sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
.lm-static sub {
  bottom: -0.25em;
}
.lm-static sup {
  top: -0.5em;
}
.lm-static a {
  color: var(--main-500);
  text-decoration: underline;
}
.lm-static a:hover {
  color: var(--main-600);
}
.lm-static a:not([href]):not([class]),
.lm-static a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
.lm-static code,
.lm-static kbd,
.lm-static pre,
.lm-static samp {
  font-family: var(--primary-font-family);
  font-size: 1em;
}
.lm-static pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1.5rem;
  overflow: auto;
  font-size: 0.875em;
}
.lm-static pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.lm-static code {
  font-size: 0.875em;
  color: var(--neutral-10);
  word-wrap: break-word;
}
.lm-static a > code {
  color: inherit;
}
.lm-static figure {
  margin: 0 0 1.5rem;
}
.lm-static img,
.lm-static svg {
  vertical-align: middle;
}
.lm-static table {
  caption-side: bottom;
  border-collapse: collapse;
}
.lm-static caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--neutral-8);
  text-align: left;
}
.lm-static th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
.lm-static tbody,
.lm-static td,
.lm-static tfoot,
.lm-static th,
.lm-static thead,
.lm-static tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.lm-static label {
  display: inline-block;
}
.lm-static button {
  border-radius: 0;
}
.lm-static button:focus:not(:focus-visible) {
  outline: 0;
}
.lm-static button,
.lm-static input,
.lm-static optgroup,
.lm-static select,
.lm-static textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.lm-static button,
.lm-static select {
  text-transform: none;
}
.lm-static [role=button] {
  cursor: pointer;
}
.lm-static select {
  word-wrap: normal;
}
.lm-static select:disabled {
  opacity: 1;
}
.lm-static [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}
.lm-static [type=button],
.lm-static [type=reset],
.lm-static [type=submit],
.lm-static button {
  -webkit-appearance: button;
}
.lm-static [type=button]:not(:disabled),
.lm-static [type=reset]:not(:disabled),
.lm-static [type=submit]:not(:disabled),
.lm-static button:not(:disabled) {
  cursor: pointer;
}
.lm-static ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.lm-static textarea {
  resize: vertical;
}
.lm-static fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.lm-static legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
.lm-static legend + * {
  clear: left;
}
.lm-static ::-webkit-datetime-edit-day-field,
.lm-static ::-webkit-datetime-edit-fields-wrapper,
.lm-static ::-webkit-datetime-edit-hour-field,
.lm-static ::-webkit-datetime-edit-minute,
.lm-static ::-webkit-datetime-edit-month-field,
.lm-static ::-webkit-datetime-edit-text,
.lm-static ::-webkit-datetime-edit-year-field {
  padding: 0;
}
.lm-static ::-webkit-inner-spin-button {
  height: auto;
}
.lm-static [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.lm-static ::-webkit-search-decoration {
  -webkit-appearance: none;
}
.lm-static ::-webkit-color-swatch-wrapper {
  padding: 0;
}
.lm-static ::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
.lm-static output {
  display: inline-block;
}
.lm-static iframe {
  border: 0;
}
.lm-static summary {
  display: list-item;
  cursor: pointer;
}
.lm-static progress {
  vertical-align: baseline;
}
.lm-static [hidden] {
  display: none !important;
}/*# sourceMappingURL=styles.css.map */