﻿@font-face {
  font-family: "Tilda Sans";
  src: url("/assets/fonts/TildaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}



@font-face {
  font-family: "Tilda Sans";
  src: url("/assets/fonts/TildaSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("/assets/fonts/TildaSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("/assets/fonts/TildaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("/assets/fonts/TildaSans-Extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

:root {
  --lw-bg: #ffffff;
  --lw-text: #10121a;
  --lw-text-soft: #596072;
  --lw-surface: #ffffff;
  --lw-surface-dark: #09090f;
  --lw-surface-deep: #121321;
  --lw-surface-muted: #f5f6fb;
  --lw-stroke: rgba(16, 18, 26, 0.08);
  --lw-stroke-light: rgba(255, 255, 255, 0.12);
  --lw-primary: #4b37ff;
  --lw-primary-strong: #2b48ff;
  --lw-secondary: #d92bff;
  --lw-secondary-soft: #ff58c7;
  --lw-accent: #7f72ff;
  --lw-success: #71ff61;
  --lw-shadow: 0 32px 80px rgba(14, 18, 38, 0.16);
  --lw-shadow-strong: 0 32px 120px rgba(7, 7, 18, 0.32);
  --lw-radius-xl: 40px;
  --lw-radius-lg: 28px;
  --lw-radius-md: 20px;
  --lw-radius-sm: 14px;
  --lw-container: 1320px;
  --lw-mobile-client-width: 100vw;
  --lw-mobile-scale-num: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Tilda Sans", Arial, sans-serif;
  color: var(--lw-text);
  background: var(--lw-bg);
  overflow-x: clip;
}

body.lw-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

#about,
#numbers,
#how-it-works,
#video-earn {
  scroll-margin-top: 110px;
}

.lw-container {
  width: min(var(--lw-container), calc(100% - 48px));
  margin: 0 auto;
}

.lw-page,
main {
  width: 100%;
  overflow-x: clip;
}

.lw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lw-button:hover {
  transform: translateY(-1px);
}

.lw-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--lw-primary-strong), var(--lw-primary));
  box-shadow: 0 18px 40px rgba(52, 73, 255, 0.35);
}

.lw-button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lw-button--full {
  width: 100%;
}

.lw-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.lw-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.72);
  backdrop-filter: blur(8px);
}

.lw-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  padding: 28px 24px 32px;
  background: #0d0d14;
  color: #ffffff;
  box-shadow: var(--lw-shadow-strong);
}

.lw-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lw-mobile-menu__head img {
  width: 164px;
}

.lw-mobile-menu__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.lw-mobile-menu__nav {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.lw-mobile-menu__nav a {
  font-size: 18px;
  font-weight: 600;
}

.lw-footer {
  padding: 56px 0 46px;
  color: #ffffff;
  background: #000000;
  overflow: hidden;
}

.lw-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.lw-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 38px;
}

.lw-footer__nav a {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.lw-footer__copy {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.lw-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}

.lw-assistant__trigger {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe067 0%, #4b37ff 55%, #121321 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(9, 11, 24, 0.36);
}

.lw-assistant__trigger img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.lw-assistant__panel {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--lw-stroke);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--lw-shadow-strong);
  overflow: hidden;
}

.lw-assistant__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
  background: #111321;
  color: #ffffff;
}

.lw-assistant__header strong {
  display: block;
  font-size: 18px;
}

.lw-assistant__header p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.lw-assistant__header button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.lw-assistant__body {
  padding: 18px 22px 0;
}

.lw-assistant__body p {
  margin: 0;
  color: var(--lw-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.lw-assistant__form {
  padding: 18px 22px 22px;
}

.lw-assistant__form textarea {
  width: 100%;
  min-height: 110px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid var(--lw-stroke);
  border-radius: 18px;
  resize: vertical;
}

.lw-assistant__form textarea:focus {
  outline: 2px solid rgba(75, 55, 255, 0.18);
  border-color: rgba(75, 55, 255, 0.32);
}

.lw-assistant__form .lw-button[disabled] {
  cursor: default;
  opacity: 0.4;
  box-shadow: none;
  transform: none;
}

.lw-cookie {
  margin-right: 100px;
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--lw-stroke);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lw-shadow);
  backdrop-filter: blur(12px);
}

.lw-cookie p {
  margin: 0;
  color: var(--lw-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

:root {
  --lw-stage-scale: min(1.25, calc((100vw / 1200) * 1.25));
  --lw-hero-scale: min(1.25, calc((100vw / 1200) * 1.25));
}

.lw-stage {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.lw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 90;
  background: #000000;
  border: 0;
  backdrop-filter: none;
  transform: translateY(-100%);
  transition: transform 0.15s ease;
}

.lw-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, 100vw);
  height: 5px;
  transform: translateX(-50%);
  background: #4d31f7;
}

.lw-header.lw-header--visible {
  transform: translateY(0);
}

.lw-header__inner {
  position: relative;
  width: min(1200px, calc(100vw - 32px));
  min-height: 70px;
  margin: 0 auto;
}

.lw-header .lw-logo {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 156px;
  display: block;
}

.lw-header .lw-nav {
  position: absolute;
  top: 11px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
}

.lw-header .lw-nav__link {
  color: #fdfdfd;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  opacity: 1;
}

.lw-header .lw-nav__link:nth-of-type(2) {
  display: none;
}

.lw-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 28px;
  border-radius: 30px;
  background: #1c3ef6;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.lw-nav__button:hover,
.lw-hero__cta:hover {
  background: #cf32df;
}

.lw-header .lw-menu-toggle {
  position: absolute;
  top: 9px;
  right: 0;
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lw-header .lw-menu-toggle span {
  width: 18px;
}

.lw-hero {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: calc(659px * var(--lw-hero-scale));
  color: #ffffff;
  background-color: #000000;
  background-image: url("/assets/listenworld/Group_2085663164.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lw-hero__stage {
  flex: 0 0 1200px;
  height: 659px;
  transform: scale(var(--lw-hero-scale));
  transform-origin: top center;
}

.lw-hero-mobile {
  display: none;
}

.lw-hero__topline {
  position: absolute;
  top: 0;
  left: 20px;
  width: 1160px;
  height: 5px;
  background: #4d31f7;
}

.lw-hero__topbar {
  position: absolute;
  inset: 0;
}

.lw-logo--hero {
  position: absolute;
  top: 63px;
  left: 152px;
  width: 131px;
  display: block;
}

.lw-hero__actions {
  position: absolute;
  inset: 0;
}

.lw-hero__nav-link {
  position: absolute;
  top: 60px;
  left: 931px;
  color: #fdfdfd;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  white-space: nowrap;
}

.lw-hero__cta {
  position: absolute;
  top: 53px;
  left: 1027px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 38px;
  border-radius: 30px;
  background: #4831f7;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.lw-hero__shape {
  position: absolute;
  z-index: 1;
}

.lw-hero__shape--left {
  top: 152px;
  left: 148px;
  width: 171px;
  height: 48px;
  background: #c021cd;
}

.lw-hero__shape--right {
  top: 474px;
  left: 605px;
  width: 276px;
  height: 48px;
  background: #4d31f7;
}

.lw-hero__headline {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 53px;
  line-height: 0.83;
  letter-spacing: -4px;
  font-weight: 700;
}

.lw-hero__headline--left {
  top: 153px;
  left: 148px;
  width: 522px;
}

.lw-hero__headline--right {
  top: 475px;
  left: 608px;
  width: 522px;
}

.lw-hero__image {
  position: absolute;
  z-index: 2;
}

.lw-hero__image--left {
  top: 227px;
  left: 307px;
  width: 249px;
}

.lw-hero__image--right {
  top: 244px;
  left: 567px;
  width: 269px;
}

.lw-about {
  position: relative;
  display: flex;
  justify-content: center;
  height: calc(653px * var(--lw-stage-scale));
  background: #ffffff;
}

.lw-about__stage {
  flex: 0 0 1200px;
  height: 653px;
  transform: scale(var(--lw-stage-scale));
  transform-origin: top center;
  overflow: clip;
  contain: layout paint;
}

.lw-about__ghost,
.lw-about__label,
.lw-about__title,
.lw-about__lead,
.lw-about__body {
  position: absolute;
  margin: 0;
}

.lw-about__ghost {
  color: #f3f3f3;
  font-size: 100px;
  line-height: 0.78;
  letter-spacing: -4px;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

.lw-about__ghost--new {
  top: 345px;
  left: 242px;
  width: 447px;
}

.lw-about__ghost--listen {
  top: 203px;
  left: 780px;
  width: 620px;
}

.lw-about__ghost--money {
  top: 353px;
  left: 780px;
  width: 620px;
}

.lw-about__label {
  top: 70px;
  left: 620px;
  width: auto;
  white-space: nowrap;
  color: #444444;
  font-size: 70px;
  line-height: 1.14;
  font-weight: 700;
}

.lw-about__title {
  top: 185px;
  left: 321px;
  width: 250px;
  color: #444444;
  font-size: 19px;
  line-height: 1.21;
  font-weight: 700;
}

.lw-about__lead,
.lw-about__body {
  color: #2259fb;
  font-size: 14px;
  line-height: 1.43;
  font-weight: 700;
}

.lw-about__lead {
  top: 185px;
  left: 620px;
  width: 301px;
}

.lw-about__body--left {
  top: 335px;
  left: 320px;
  width: 250px;
}

.lw-about__body--right {
  top: 334px;
  left: 620px;
  width: 304px;
}

.lw-community {
  padding: 180px 0 0;
  background: #ffffff;
}

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

.lw-community .lw-community__title {
  max-width: 760px;
  margin: 0 auto;
  color: #000000;
  font-size: 36px;
  line-height: 1.23;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lw-community__image {
  width: min(100%, 542px);
  margin: 60px auto 0;
  border-radius: 30px;
}

.lw-community .lw-community__text {
  max-width: 760px;
  margin: 60px auto 0;
  color: #444444;
  font-size: 20px;
  line-height: 1.55;
}

.lw-telegram {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.lw-telegram__title {
  max-width: 900px;
  margin: 0 auto;
  color: #000000;
  font-size: 48px;
  line-height: 1.23;
  font-weight: 600;
}

.lw-telegram__text {
  max-width: 600px;
  margin: 25px auto 0;
  color: #444444;
  font-size: 24px;
  line-height: 1.5;
}

.lw-telegram__actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 70px;
}

.lw-telegram__arrow {
  width: 45px;
  height: 102px;
  background: url("/assets/icons/telegram-arrow.svg") center center / contain no-repeat;
}

.lw-telegram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 60px;
  padding: 0 44px;
  border-radius: 100px;
  background: #1f5bff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 959px) {
  .lw-community {
    padding-top: 140px;
  }

  .lw-community .lw-community__title {
    font-size: 32px;
  }

  .lw-community .lw-community__text {
    font-size: 18px;
  }

  .lw-telegram__title {
    font-size: 44px;
  }

  .lw-telegram__text {
    font-size: 22px;
  }
}


.lw-numbers-exact {
  padding: 150px 0;
  background: #ffffff;
}

.lw-numbers-exact__title {
  margin: 0 0 105px;
  color: #000000;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
}

.lw-numbers-exact__grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 540px) 1fr;
  align-items: center;
  column-gap: 38px;
}

.lw-numbers-exact__column {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.lw-numbers-exact__item h3 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.lw-numbers-exact__item p {
  margin: 18px 0 0;
  color: #222222;
  font-size: 14px;
  line-height: 1.57;
}

.lw-numbers-exact__visual img {
  width: 100%;
  display: block;
}

.lw-process-exact {
  display: flex;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.lw-process-exact__stage {
  position: relative;
  flex: 0 0 1200px;
  height: 867px;
  transform: scale(var(--lw-stage-scale));
  transform-origin: top center;
}

.lw-process-exact__title,
.lw-process-exact__ghost,
.lw-process-exact__step {
  position: absolute;
  margin: 0;
}

.lw-process-exact__title {
  top: 80px;
  left: 316px;
  width: 529px;
  color: #444444;
  font-size: 70px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -4px;
}

.lw-process-exact__ghost {
  color: #f3f3f3;
  font-size: 218px;
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}

.lw-process-exact__ghost--just {
  top: 421px;
  left: 246px;
  width: 423px;
}

.lw-process-exact__ghost--listen {
  top: 626px;
  left: 615px;
  width: 504px;
}

.lw-process-exact__step {
  width: 242px;
}

.lw-process-exact__step h3 {
  margin: 0;
  color: #444444;
  font-size: 19px;
  line-height: 1.21;
  font-weight: 700;
}

.lw-process-exact__step p {
  margin: 22px 0 0;
  color: #4d31f7;
  font-size: 14px;
  line-height: 1.43;
}

.lw-process-exact__step--1 {
  top: 260px;
  left: 321px;
}

.lw-process-exact__step--2 {
  top: 260px;
  left: 621px;
}

.lw-process-exact__step--3 {
  top: 458px;
  left: 322px;
}

.lw-process-exact__step--4 {
  top: 462px;
  left: 621px;
  width: 242px;
}

.lw-places-exact {
  display: flex;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.lw-places-exact__stage {
  position: relative;
  flex: 0 0 1200px;
  height: 642px;
  transform: scale(var(--lw-stage-scale));
  transform-origin: top center;
}

.lw-places-exact__title,
.lw-places-exact__ghost,
.lw-places-exact__card {
  position: absolute;
  margin: 0;
}

.lw-places-exact__title {
  top: 93px;
  left: 275px;
  width: 295px;
  color: #444444;
  font-size: 69px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -4px;
}

.lw-places-exact__ghost {
  top: 236px;
  left: 613px;
  width: 505px;
  color: #777777;
  font-size: 100px;
  line-height: 0.8;
  font-weight: 700;
  opacity: 0.18;
  user-select: none;
}

.lw-places-exact__card {
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.21;
  font-weight: 700;
}

.lw-places-exact__card--spotify {
  top: 216px;
  left: 278px;
  width: 288px;
  height: 135px;
  background: #c021cd;
}

.lw-places-exact__card--socials {
  top: 365px;
  left: 279px;
  width: 288px;
  height: 136px;
  background: #394cb5;
}

.lw-benefits-exact {
  display: flex;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.lw-benefits-exact__stage {
  position: relative;
  flex: 0 0 1200px;
  height: 801px;
  transform: scale(var(--lw-stage-scale));
  transform-origin: top center;
}

.lw-benefits-exact__ghost,
.lw-benefits-exact__heading,
.lw-benefits-exact__item {
  position: absolute;
  margin: 0;
}

.lw-benefits-exact__ghost {
  color: #f3f3f3;
  font-size: 218px;
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}

.lw-benefits-exact__ghost--bene {
  top: 311px;
  left: 2px;
  width: 508px;
}

.lw-benefits-exact__ghost--fits {
  top: 481px;
  left: 265px;
  width: 302px;
}

.lw-benefits-exact__heading {
  color: #4d31f7;
  font-size: 70px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -3px;
}

.lw-benefits-exact__heading--artists {
  top: 42px;
  left: 105px;
  width: 374px;
}

.lw-benefits-exact__heading--listeners {
  top: 379px;
  left: 188px;
  width: 424px;
  color: #c021cd;
}

.lw-benefits-exact__item {
  width: 250px;
}

.lw-benefits-exact__item h3 {
  margin: 0;
  color: #444444;
  font-size: 19px;
  line-height: 1.21;
  font-weight: 700;
}

.lw-benefits-exact__item p {
  margin: 18px 0 0;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 1.43;
}

.lw-benefits-exact__item--1 {
  top: 123px;
  left: 520px;
}

.lw-benefits-exact__item--2 {
  top: 121px;
  left: 804px;
}

.lw-benefits-exact__item--3 {
  top: 463px;
  left: 623px;
}

.lw-benefits-exact__item--4 {
  top: 463px;
  left: 922px;
  width: 229px;
}

@media (max-width: 959px) {
  .lw-numbers-exact {
    padding: 110px 0;
  }

  .lw-numbers-exact__title {
    margin-bottom: 64px;
    font-size: 42px;
  }

  .lw-numbers-exact__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .lw-numbers-exact__column {
    gap: 36px;
    text-align: center;
  }

  .lw-numbers-exact__visual {
    max-width: 520px;
    margin: 0 auto;
    order: -1;
  }
}


.lw-join-exact {
  display: flex;
  justify-content: center;
  background: #324fef;
  overflow: hidden;
}

.lw-join-exact__stage {
  position: relative;
  flex: 0 0 1200px;
  height: 800px;
  transform: scale(var(--lw-stage-scale));
  transform-origin: top center;
}

.lw-join-exact__ghost,
.lw-join-exact__asterisk,
.lw-join-exact__title,
.lw-join-exact__text,
.lw-join-exact__button {
  position: absolute;
  margin: 0;
}

.lw-join-exact__ghost {
  color: rgba(255, 255, 255, 0.14);
  font-size: 218px;
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}

.lw-join-exact__ghost--listen {
  top: 130px;
  left: 11px;
  width: 618px;
}

.lw-join-exact__ghost--to {
  top: 490px;
  left: 50px;
  width: 198px;
}

.lw-join-exact__ghost--earn {
  top: 418px;
  left: 612px;
  width: 559px;
}

.lw-join-exact__asterisk {
  top: 171px;
  left: 1138px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1;
  animation: lw-join-spin 4s ease-in-out infinite;
}

.lw-join-exact__title {
  top: 319px;
  left: 320px;
  width: 446px;
  color: #ffffff;
  font-size: 70px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -4px;
}

.lw-join-exact__text {
  top: 419px;
  left: 325px;
  width: 226px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.43;
}

.lw-join-exact__button {
  top: 488px;
  left: 320px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 163px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #c021cd;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

@keyframes lw-join-spin {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }
}


.lw-video-exact {
  padding: 150px 0;
  background: #ffffff;
}

.lw-video-exact__title {
  margin: 0 0 105px;
  color: #000000;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
}

.lw-video-exact__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
}

.lw-video-exact__step {
  text-align: center;
}

.lw-video-exact__icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
}

.lw-video-exact__icon-wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.lw-video-exact__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 18px;
  transform: translateY(-50%);
}

.lw-video-exact__arrow::before,
.lw-video-exact__arrow::after {
  content: "";
  position: absolute;
  background: #000000;
}

.lw-video-exact__arrow::before {
  top: 8px;
  left: 0;
  width: 46px;
  height: 2px;
}

.lw-video-exact__arrow::after {
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  background: transparent;
  transform: rotate(45deg);
}

.lw-video-exact__step p {
  max-width: 320px;
  margin: 28px auto 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.57;
}

.lw-video-stats-exact {
  padding: 90px 0;
  background: #692974;
}

.lw-video-stats-exact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 24px;
}

.lw-video-stats-exact__item {
  color: #ffffff;
}

.lw-video-stats-exact__item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.lw-video-stats-exact__item p {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.43;
}

@media (max-width: 959px) {
  .lw-video-exact {
    padding: 110px 0;
  }

  .lw-video-exact__title {
    margin-bottom: 64px;
    font-size: 42px;
  }

  .lw-video-exact__steps,
  .lw-video-stats-exact__grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .lw-video-exact__arrow {
    display: none;
  }
}


.lw-app-exact {
  padding: 112px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

.lw-app-exact__title {
  margin: 0 0 72px;
  color: #000000;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
}

.lw-app-exact__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(440px, 610px);
  align-items: center;
  justify-content: space-between;
  column-gap: 28px;
}

.lw-app-exact__content {
  max-width: 560px;
  padding-left: 0;
}

.lw-app-exact__text {
  margin: 0;
  color: #111111;
  font-size: 22px;
  line-height: 1.72;
}

.lw-app-exact__text-tail {
  display: block;
}

.lw-app-exact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 263px;
  min-height: 76px;
  margin-top: 48px;
  padding: 0 44px;
  border-radius: 38px;
  background: linear-gradient(90deg, #4d31f7 0%, #5330ff 100%);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.lw-app-exact__visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}

.lw-app-exact__visual img {
  width: min(100%, 600px);
  display: block;
}

@media (max-width: 959px) {
  .lw-app-exact {
    padding: 110px 0;
  }

  .lw-app-exact__title {
    margin-bottom: 64px;
    font-size: 42px;
  }

  .lw-app-exact__grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
}


@media (max-width: 389px) {
  .lw-hero-mobile__shape--right {
    left: auto;
    right: 56px;
    width: 172px;
  }

  .lw-hero-mobile__headline--right {
    left: auto;
    right: 18px;
    width: 202px;
  }

  .lw-hero-mobile__image--right {
    left: auto;
    right: 0;
    width: 210px;
  }
}

:root {
  --lw-desktop-scrollbar: 15.2px;
  --lw-screen-width: calc(100vw - (100vw - 100%));
}

html,
body,
.lw-page,
main {
  overflow-x: visible;
}

.lw-video-exact__arrow {
  width: 56px;
  height: 18px;
  right: 0;
  background:
    linear-gradient(#000000, #000000) left center / 42px 2px no-repeat,
    linear-gradient(45deg, transparent 42%, #000000 43% 57%, transparent 58%) right 0 top 0 / 12px 12px no-repeat,
    linear-gradient(-45deg, transparent 42%, #000000 43% 57%, transparent 58%) right 0 bottom 0 / 12px 12px no-repeat;
}

.lw-video-exact__arrow::before,
.lw-video-exact__arrow::after {
  display: none;
}

@media (min-width: 1200px) {
  .lw-hero {
    height: 100svh;
    min-height: calc(659px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    align-items: flex-start;
  }

  .lw-hero__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-about {
    height: calc(653px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    overflow: hidden;
  }

  .lw-about__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-process-exact {
    height: calc(867px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
  }

  .lw-process-exact__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-places-exact {
    height: calc(642px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
  }

  .lw-places-exact__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-benefits-exact {
    height: calc(801px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
  }

  .lw-benefits-exact__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-join-exact {
    height: calc(800px * ((100vw - var(--lw-desktop-scrollbar)) / 1200px));
  }

  .lw-join-exact__stage {
    transform: scale(calc((100vw - var(--lw-desktop-scrollbar)) / 1200px));
    transform-origin: top center;
  }

  .lw-community {
    padding: 200px 0 100px;
  }

  .lw-community__image {
    width: min(100%, 760px);
    margin-top: 80px;
  }

  .lw-community .lw-community__text {
    max-width: 820px;
    margin-top: 80px;
    font-size: 24px;
    line-height: 1.5;
  }

  .lw-numbers-exact__grid {
    grid-template-columns: 1fr minmax(420px, 600px) 1fr;
    column-gap: 48px;
  }

  .lw-numbers-exact__visual img {
    width: min(100%, 600px);
    height: 631px;
    object-fit: fill;
  }

  .lw-app-exact {
    padding: 160px 0 144px;
  }

  .lw-app-exact__title {
    margin-bottom: 88px;
  }

  .lw-app-exact__text {
    font-size: 24px;
    line-height: 1.5;
  }

  .lw-app-exact__visual img {
    width: min(100%, 560px);
  }

  .lw-video-stats-exact {
    padding: 110px 0;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  :root {
    --lw-stage-scale: 1;
    --lw-hero-scale: 1;
  }

  .lw-header {
    overflow: visible;
    contain: none;
  }

  .lw-header::before {
    width: min(720px, calc(100vw - 48px));
  }

  .lw-hero {
    height: 611px;
    min-height: 611px;
  }

  .lw-hero__stage {
    width: min(720px, calc(100vw - 32px));
    flex: 0 0 auto;
    height: 611px;
    transform: none;
  }

  .lw-hero__topline {
    left: 0;
    width: 100%;
    height: 4px;
  }

  .lw-logo--hero {
    top: 80px;
    left: 88px;
    width: 154px;
  }

  .lw-hero__nav-link {
    top: 82px;
    left: auto;
    right: 153px;
    font-size: 14px;
  }

  .lw-hero__cta {
    top: 72px;
    left: auto;
    right: 0;
    width: 136px;
    height: 44px;
    font-size: 13px;
  }

  .lw-hero__shape--left {
    top: 179px;
    left: 62px;
    width: 128px;
    height: 32px;
  }

  .lw-hero__shape--right {
    top: 354px;
    left: 414px;
    width: 210px;
    height: 32px;
  }

  .lw-hero__headline {
    font-size: 59px;
    line-height: 0.8;
    letter-spacing: -4px;
  }

  .lw-hero__headline--left {
    top: 179px;
    left: 62px;
    width: 348px;
  }

  .lw-hero__headline--right {
    top: 352px;
    left: 390px;
    width: 332px;
  }

  .lw-hero__image--left {
    top: 281px;
    left: 90px;
    width: 188px;
  }

  .lw-hero__image--right {
    top: 192px;
    left: 380px;
    width: 204px;
  }

  .lw-about,
  .lw-process-exact,
  .lw-places-exact,
  .lw-benefits-exact {
    display: block;
    height: auto;
    overflow: hidden;
  }

  .lw-about {
    padding: 120px 0 140px;
  }

  .lw-about__stage {
    position: relative;
    display: grid;
    width: min(688px, calc(100vw - 64px));
    height: auto;
    min-height: 0;
    transform: none;
    overflow: visible;
    contain: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 48px;
  }

  .lw-about__ghost,
  .lw-about__label,
  .lw-about__title,
  .lw-about__lead,
  .lw-about__body {
    position: static;
    width: auto;
  }

  .lw-about__ghost {
    position: absolute;
    z-index: 0;
    font-size: 120px;
    line-height: 0.78;
    letter-spacing: -4px;
  }

  .lw-about__ghost--new {
    top: 262px;
    left: 0;
    width: 286px;
  }

  .lw-about__ghost--listen {
    top: 126px;
    left: 394px;
    width: 320px;
  }

  .lw-about__ghost--money {
    top: 302px;
    left: 394px;
    width: 320px;
  }

  .lw-about__label,
  .lw-about__title,
  .lw-about__lead,
  .lw-about__body {
    position: relative;
    z-index: 1;
  }

  .lw-about__label {
    grid-column: 1 / -1;
    text-align: center;
  }

  .lw-about__title {
    grid-column: 1;
    font-size: 24px;
  }

  .lw-about__lead {
    grid-column: 2;
  }

  .lw-about__body--left {
    grid-column: 1;
  }

  .lw-about__body--right {
    grid-column: 2;
  }

  .lw-about__lead,
  .lw-about__body {
    font-size: 18px;
    line-height: 1.45;
  }

  .lw-community {
    padding: 160px 0 120px;
  }

  .lw-community .lw-community__title {
    max-width: 720px;
    font-size: 36px;
  }

  .lw-community__image {
    width: min(100%, 600px);
    margin-top: 72px;
  }

  .lw-community .lw-community__text {
    max-width: 688px;
    margin-top: 72px;
    font-size: 22px;
    line-height: 1.55;
  }

  .lw-numbers-exact__visual img {
    width: min(100%, 540px);
    height: 561px;
    object-fit: fill;
  }

  .lw-numbers-exact__visual {
    width: 540px;
    max-width: 100%;
  }

  .lw-process-exact {
    padding: 136px 0 144px;
  }

  .lw-process-exact__stage {
    position: relative;
    display: grid;
    width: min(688px, calc(100vw - 64px));
    height: auto;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 72px;
  }

  .lw-process-exact__title,
  .lw-process-exact__ghost,
  .lw-process-exact__step {
    position: static;
    width: auto;
  }

  .lw-process-exact__title {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .lw-process-exact__ghost {
    position: absolute;
    z-index: 0;
  }

  .lw-process-exact__ghost--just {
    top: 254px;
    left: 0;
  }

  .lw-process-exact__ghost--listen {
    top: 498px;
    left: 382px;
  }

  .lw-process-exact__step {
    position: relative;
    z-index: 1;
    min-height: 172px;
  }

  .lw-process-exact__step h3 {
    font-size: 24px;
  }

  .lw-process-exact__step p {
    font-size: 18px;
    line-height: 1.5;
  }

  .lw-places-exact {
    padding: 120px 0 148px;
  }

  .lw-places-exact__stage {
    position: relative;
    display: grid;
    width: min(688px, calc(100vw - 64px));
    height: auto;
    transform: none;
    grid-template-columns: 270px minmax(0, 1fr);
    column-gap: 48px;
    row-gap: 32px;
    align-items: start;
  }

  .lw-places-exact__title,
  .lw-places-exact__ghost,
  .lw-places-exact__card {
    position: static;
    width: auto;
  }

  .lw-places-exact__title {
    grid-row: 1 / span 2;
    align-self: start;
  }

  .lw-places-exact__ghost {
    grid-column: 2;
    font-size: 96px;
    line-height: 0.82;
  }

  .lw-places-exact__card {
    min-height: 184px;
    padding: 0 28px;
    font-size: 24px;
  }

  .lw-benefits-exact {
    padding: 112px 0 124px;
  }

  .lw-benefits-exact__stage {
    position: relative;
    display: grid;
    width: min(688px, calc(100vw - 64px));
    height: auto;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 52px;
  }

  .lw-benefits-exact__ghost,
  .lw-benefits-exact__heading,
  .lw-benefits-exact__item {
    position: static;
    width: auto;
  }

  .lw-benefits-exact__ghost {
    position: absolute;
    z-index: 0;
  }

  .lw-benefits-exact__ghost--bene {
    top: 188px;
    left: -36px;
  }

  .lw-benefits-exact__ghost--fits {
    top: 374px;
    left: 186px;
  }

  .lw-benefits-exact__heading,
  .lw-benefits-exact__item {
    position: relative;
    z-index: 1;
  }

  .lw-benefits-exact__heading {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .lw-benefits-exact__item h3 {
    font-size: 24px;
  }

  .lw-benefits-exact__item p {
    font-size: 18px;
    line-height: 1.5;
  }

  .lw-join-exact {
    display: block;
  }

  .lw-join-exact__stage {
    width: min(688px, calc(100vw - 64px));
    height: 802px;
    transform: none;
  }

  .lw-join-exact__ghost {
    font-size: 170px;
    letter-spacing: -4px;
  }

  .lw-join-exact__ghost--listen {
    top: 196px;
    left: 0;
    width: 500px;
  }

  .lw-join-exact__ghost--to {
    top: 402px;
    left: 402px;
    width: 180px;
  }

  .lw-join-exact__ghost--earn {
    top: 562px;
    left: 58px;
    width: 520px;
  }

  .lw-join-exact__asterisk {
    top: 62px;
    left: 542px;
  }

  .lw-join-exact__title {
    top: 116px;
    left: 0;
    width: 520px;
    font-size: 86px;
    letter-spacing: -4px;
  }

  .lw-join-exact__text {
    top: 302px;
    left: 0;
    width: 320px;
    font-size: 22px;
    line-height: 1.45;
  }

  .lw-join-exact__button {
    top: 406px;
    left: 0;
    min-width: 190px;
    min-height: 54px;
    font-size: 22px;
  }

  .lw-video-stats-exact {
    padding: 82px 0;
  }
}

@media (max-width: 639px) {
  :root {
    --lw-mobile-stage-width: min(414px, var(--lw-mobile-client-width));
    --lw-mobile-content-width: calc(var(--lw-mobile-stage-width) - 40px);
  }

  #about,
  #numbers,
  #how-it-works,
  #video-earn,
  #listenworld-footer {
    scroll-margin-top: 72px;
  }

  .lw-assistant {
    right: 14px;
    bottom: 14px;
    z-index: 100001;
  }

  .lw-assistant__trigger {
    width: 56px;
    height: 56px;
  }

  .lw-assistant__trigger img {
    width: 24px;
    height: 24px;
  }

  .lw-assistant__panel {
    right: 0;
    bottom: 70px;
    width: min(386px, calc(var(--lw-mobile-client-width) - 28px));
  }

  .lw-header {
    left: 0;
    width: var(--lw-mobile-client-width);
  }

  .lw-header .lw-nav,
  .lw-hero__stage {
    display: none;
  }

  .lw-header .lw-menu-toggle span {
    display: none;
  }

  .lw-header::before,
  .lw-header__inner,
  .lw-hero-mobile,
  .lw-about__stage,
  .lw-process-exact__stage,
  .lw-places-exact__stage,
  .lw-benefits-exact__stage,
  .lw-join-exact__stage,
  .lw-numbers-exact .lw-container,
  .lw-video-exact .lw-container,
  .lw-video-stats-exact .lw-container,
  .lw-app-exact .lw-container,
  .lw-footer .lw-container {
    width: var(--lw-mobile-stage-width);
    max-width: 100%;
  }

  .lw-about__stage,
  .lw-process-exact__stage,
  .lw-places-exact__stage,
  .lw-benefits-exact__stage,
  .lw-join-exact__stage {
    flex: none;
    transform: none;
  }

  .lw-cookie {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 20px;
    border: 0;
    border-radius: 0;
    background: #e9e9e9;
    box-shadow: none;
    backdrop-filter: none;
  }

  .lw-cookie p {
    max-width: 235px;
    color: #666666;
    font-size: 12px;
    line-height: 17px;
  }

  .lw-cookie .lw-button {
    min-height: 40px;
    padding: 0 22px;
    background: transparent;
    color: #6c6c6c;
    border: 1px solid #a8a8a8;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
  }

  .lw-header {
    height: 92px;
    background: #000000;
  }

  .lw-header::before {
    width: var(--lw-mobile-stage-width);
    height: 4px;
  }

  .lw-header__inner {
    width: var(--lw-mobile-stage-width);
    min-height: 92px;
  }

  .lw-header .lw-logo {
    top: calc(52.734375px * var(--lw-mobile-scale-num));
    left: calc(45.703125px * var(--lw-mobile-scale-num));
    width: calc(130.078125px * var(--lw-mobile-scale-num));
  }

  .lw-header .lw-menu-toggle {
    top: calc(33.984375px * var(--lw-mobile-scale-num));
    right: calc(11.6875px * var(--lw-mobile-scale-num));
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(51.5625px * var(--lw-mobile-scale-num));
    height: calc(51.5625px * var(--lw-mobile-scale-num));
    padding: 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 19px;
    background: #4d31f7;
  }

  .lw-header .lw-menu-toggle::before {
    content: none;
  }

  .lw-header .lw-menu-toggle .lw-menu-toggle__label {
    display: block;
    width: auto;
    min-width: max-content;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 9px;
    line-height: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .lw-header.lw-header--hero {
    background: transparent;
  }

  .lw-header:not(.lw-header--hero) {
    height: 60px;
  }

  .lw-header:not(.lw-header--hero)::before {
    width: min(300px, calc(var(--lw-mobile-client-width) - 20px));
  }

  .lw-header:not(.lw-header--hero) .lw-header__inner {
    width: min(320px, calc(var(--lw-mobile-client-width) - 20px));
    min-height: 60px;
  }

  .lw-header:not(.lw-header--hero) .lw-logo {
    top: 25px;
    left: 17px;
    width: 92px;
  }

  .lw-header:not(.lw-header--hero) .lw-menu-toggle {
    display: none;
  }

  .lw-mobile-menu__backdrop {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
  }

  .lw-mobile-menu__panel {
    inset: 0;
    width: 100%;
    padding: 10px 25px 26px;
    background: #ffffff;
    color: #000000;
    box-shadow: none;
    display: flex;
    flex-direction: column;
  }

  .lw-mobile-menu__head {
    justify-content: flex-end;
    min-height: 32px;
  }

  .lw-mobile-menu__close {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 42px;
    line-height: 1;
  }

  .lw-mobile-menu__nav {
    justify-items: start;
    gap: 15px;
    margin-top: 0;
  }

  .lw-mobile-menu__nav a {
    display: inline-block;
    color: #000000;
    font-size: 25px;
    line-height: normal;
    font-weight: 600;
  }

  .lw-mobile-menu__socials {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 6px;
  }

  .lw-mobile-menu__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
  }

  .lw-hero {
    min-height: calc(620px * var(--lw-mobile-scale-num));
  }

  .lw-hero-mobile {
    position: relative;
    display: block;
    width: var(--lw-mobile-stage-width);
    height: calc(620px * var(--lw-mobile-scale-num));
    margin: 0 auto;
  }

  .lw-hero-mobile__topline {
    height: calc(5px * var(--lw-mobile-scale-num));
  }

  .lw-hero-mobile__shape,
  .lw-hero-mobile__headline,
  .lw-hero-mobile__image {
    position: absolute;
    display: block;
  }

  .lw-hero-mobile__shape {
    display: none;
  }

  .lw-hero-mobile__headline {
    z-index: 4;
    margin: 0;
    color: #ffffff;
    font-size: calc(23px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-1px * var(--lw-mobile-scale-num));
    font-weight: 700;
  }

  .lw-hero-mobile__headline span {
    display: inline-block;
    padding: calc(1px * var(--lw-mobile-scale-num)) calc(6px * var(--lw-mobile-scale-num)) calc(2px * var(--lw-mobile-scale-num));
    line-height: 1;
  }

  .lw-hero-mobile__headline--left span {
    background: #4831f7;
  }

  .lw-hero-mobile__headline--right span {
    background: #c021cd;
  }

  .lw-hero-mobile__headline--left {
    top: calc(131.25px * var(--lw-mobile-scale-num));
    left: calc(36.328125px * var(--lw-mobile-scale-num));
    width: calc(185.171875px * var(--lw-mobile-scale-num));
  }

  .lw-hero-mobile__headline--right {
    top: calc(500.4375px * var(--lw-mobile-scale-num));
    left: calc(141.796875px * var(--lw-mobile-scale-num));
    width: calc(199.234375px * var(--lw-mobile-scale-num));
    text-align: right;
  }

  .lw-hero-mobile__image--left {
    top: calc(176.96875px * var(--lw-mobile-scale-num));
    left: calc(134.765625px * var(--lw-mobile-scale-num));
    width: calc(168.765625px * var(--lw-mobile-scale-num));
    height: calc(155.015625px * var(--lw-mobile-scale-num));
  }

  .lw-hero-mobile__image--right {
    top: calc(349.25px * var(--lw-mobile-scale-num));
    left: calc(76.171875px * var(--lw-mobile-scale-num));
    width: calc(180.484375px * var(--lw-mobile-scale-num));
    height: calc(136.34375px * var(--lw-mobile-scale-num));
  }

  .lw-hero-mobile__image {
    z-index: 3;
  }

  .lw-about {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .lw-about__stage {
    height: calc(1397px * var(--lw-mobile-scale-num));
    min-height: calc(1397px * var(--lw-mobile-scale-num));
    overflow: hidden;
  }

  .lw-about__ghost,
  .lw-about__label,
  .lw-about__title,
  .lw-about__lead,
  .lw-about__body {
    position: absolute;
    margin: 0;
  }

  .lw-about__label {
    top: calc(202px * var(--lw-mobile-scale-num));
    left: calc(55px * var(--lw-mobile-scale-num));
    width: calc(265px * var(--lw-mobile-scale-num));
    font-size: calc(55px * var(--lw-mobile-scale-num));
    line-height: calc(63px * var(--lw-mobile-scale-num));
    text-align: center;
  }

  .lw-about__title {
    top: calc(353px * var(--lw-mobile-scale-num));
    left: calc(83px * var(--lw-mobile-scale-num));
    width: calc(210px * var(--lw-mobile-scale-num));
    margin-top: 0;
    font-size: calc(16px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
    text-align: center;
  }

  .lw-about__lead,
  .lw-about__body {
    margin-top: 0;
    font-size: calc(13px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
    text-align: center;
  }

  .lw-about__lead {
    top: calc(536px * var(--lw-mobile-scale-num));
    left: calc(48px * var(--lw-mobile-scale-num));
    width: calc(283px * var(--lw-mobile-scale-num));
  }

  .lw-about__body--left {
    top: calc(779px * var(--lw-mobile-scale-num));
    left: calc(50px * var(--lw-mobile-scale-num));
    width: calc(276px * var(--lw-mobile-scale-num));
  }

  .lw-about__body--right {
    top: calc(1067px * var(--lw-mobile-scale-num));
    left: calc(31px * var(--lw-mobile-scale-num));
    width: calc(313px * var(--lw-mobile-scale-num));
  }

  .lw-about__ghost {
    font-size: calc(94px * var(--lw-mobile-scale-num));
    line-height: calc(73px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-4px * var(--lw-mobile-scale-num));
  }

  .lw-about__ghost--listen {
    top: calc(516px * var(--lw-mobile-scale-num));
    left: calc(35px * var(--lw-mobile-scale-num));
    width: calc(306px * var(--lw-mobile-scale-num));
  }

  .lw-about__ghost--new {
    top: calc(724px * var(--lw-mobile-scale-num));
    left: calc(59px * var(--lw-mobile-scale-num));
    width: calc(258px * var(--lw-mobile-scale-num));
  }

  .lw-about__ghost--money {
    top: calc(1004px * var(--lw-mobile-scale-num));
    left: calc(35px * var(--lw-mobile-scale-num));
    width: calc(306px * var(--lw-mobile-scale-num));
  }

  .lw-community {
    padding: 120px 0;
  }

  .lw-community__container {
    width: var(--lw-mobile-content-width);
  }

  .lw-community .lw-community__title {
    max-width: var(--lw-mobile-content-width);
    font-size: 28px;
    line-height: 34.44px;
  }

  .lw-community__image {
    width: var(--lw-mobile-content-width);
    margin-top: 60px;
  }

  .lw-community .lw-community__text {
    max-width: var(--lw-mobile-content-width);
    margin-top: 60px;
    font-size: 16px;
    line-height: 23.2px;
    color: #000000;
  }

  .lw-telegram {
    padding: 60px 0 85px;
  }

  .lw-telegram__container {
    width: var(--lw-mobile-content-width);
  }

  .lw-telegram__title {
    font-size: 30px;
    line-height: 36.9px;
  }

  .lw-telegram__text {
    color: #000000;
    font-size: 20px;
    line-height: 28px;
  }

  .lw-telegram__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 28px;
    gap: 18px;
  }

  .lw-telegram__arrow {
    display: block;
    width: 23px;
    height: 39px;
  }

  .lw-telegram__button {
    width: 100%;
    padding: 0;
  }

  .lw-numbers-exact {
    padding: 90px 0 91px;
  }

  .lw-numbers-exact .lw-container {
    width: var(--lw-mobile-stage-width);
    padding: 0 20px;
  }

  .lw-numbers-exact__title {
    margin: 0 0 45px;
    font-size: 30px;
    line-height: 36.9px;
  }

  .lw-numbers-exact__grid {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }

  .lw-numbers-exact__column {
    width: var(--lw-mobile-content-width);
    margin: 0 auto;
    gap: 45px;
    text-align: left;
  }

  .lw-numbers-exact__visual {
    order: 0;
    width: var(--lw-mobile-content-width);
    margin: 45px auto;
  }

  .lw-numbers-exact__visual img {
    width: calc(301.5px + (var(--lw-mobile-stage-width) - 375px) * 0.9);
    height: calc(282.03125px + (var(--lw-mobile-stage-width) - 375px) * 1.0512820513);
    margin: 0 auto;
    object-fit: contain;
  }

  .lw-numbers-exact__item h3 {
    font-size: 30px;
    line-height: 40.5px;
  }

  .lw-numbers-exact__item p {
    margin-top: 10px;
    color: #000000;
    font-size: 12px;
    line-height: 17.4px;
  }

  .lw-process-exact,
  .lw-places-exact,
  .lw-benefits-exact,
  .lw-join-exact {
    display: flex;
    justify-content: center;
    padding-top: 0;
  }

  .lw-process-exact__stage {
    position: relative;
    height: calc(1062px * var(--lw-mobile-scale-num));
    margin: 0 auto;
  }

  .lw-process-exact__title,
  .lw-process-exact__ghost,
  .lw-process-exact__step {
    position: absolute;
    margin: 0;
  }

  .lw-process-exact__title {
    top: calc(54px * var(--lw-mobile-scale-num));
    left: calc(7px * var(--lw-mobile-scale-num));
    width: calc(368px * var(--lw-mobile-scale-num));
    font-size: calc(55px * var(--lw-mobile-scale-num));
    line-height: calc(63px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-3px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__ghost {
    color: #f3f3f3;
    font-size: calc(95px * var(--lw-mobile-scale-num));
    line-height: calc(95px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-4px * var(--lw-mobile-scale-num));
    opacity: 1;
  }

  .lw-process-exact__ghost--just {
    top: calc(243px * var(--lw-mobile-scale-num));
    left: calc(151px * var(--lw-mobile-scale-num));
    width: calc(203px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__ghost--listen {
    top: calc(387px * var(--lw-mobile-scale-num));
    left: calc(94px * var(--lw-mobile-scale-num));
    width: calc(248px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step {
    left: calc(12px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step--1 {
    top: calc(275px * var(--lw-mobile-scale-num));
    width: calc(307px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step--2 {
    top: calc(455px * var(--lw-mobile-scale-num));
    width: calc(302px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step--3 {
    top: calc(634px * var(--lw-mobile-scale-num));
    width: calc(299px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step--4 {
    top: calc(813px * var(--lw-mobile-scale-num));
    width: calc(303px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step h3 {
    font-size: calc(19px * var(--lw-mobile-scale-num));
    line-height: calc(23px * var(--lw-mobile-scale-num));
  }

  .lw-process-exact__step p {
    margin-top: calc(26px * var(--lw-mobile-scale-num));
    font-size: calc(13px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
  }

  .lw-places-exact__stage {
    position: relative;
    height: calc(750px * var(--lw-mobile-scale-num));
    margin: 0 auto;
    overflow: hidden;
  }

  .lw-places-exact__title,
  .lw-places-exact__ghost,
  .lw-places-exact__card {
    position: absolute;
    margin: 0;
  }

  .lw-places-exact__title {
    top: calc(50px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(346px * var(--lw-mobile-scale-num));
    font-size: calc(55px * var(--lw-mobile-scale-num));
    line-height: calc(63px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-3px * var(--lw-mobile-scale-num));
  }

  .lw-places-exact__ghost {
    top: calc(149px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(var(--lw-mobile-stage-width) - calc(24px * var(--lw-mobile-scale-num)));
    font-size: calc(70px * var(--lw-mobile-scale-num));
    line-height: calc(56px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-4px * var(--lw-mobile-scale-num));
    opacity: 1;
  }

  .lw-places-exact__card {
    top: calc(493px * var(--lw-mobile-scale-num));
    display: flex;
    align-items: center;
    min-height: calc(153px * var(--lw-mobile-scale-num));
    padding: 0 calc(24px * var(--lw-mobile-scale-num));
  }

  .lw-places-exact__card--spotify {
    left: calc(20px * var(--lw-mobile-scale-num));
    width: calc(151px * var(--lw-mobile-scale-num));
  }

  .lw-places-exact__card--socials {
    left: calc(184px * var(--lw-mobile-scale-num));
    width: calc(157px * var(--lw-mobile-scale-num));
  }

  .lw-places-exact__card span {
    font-size: calc(15px * var(--lw-mobile-scale-num));
    line-height: calc(18px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__stage {
    position: relative;
    height: calc(1047px * var(--lw-mobile-scale-num));
    margin: 0 auto;
    overflow: hidden;
  }

  .lw-benefits-exact__ghost,
  .lw-benefits-exact__heading,
  .lw-benefits-exact__item {
    position: absolute;
    margin: 0;
  }

  .lw-benefits-exact__ghost {
    font-size: calc(100px * var(--lw-mobile-scale-num));
    line-height: calc(78px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-4px * var(--lw-mobile-scale-num));
    opacity: 1;
  }

  .lw-benefits-exact__ghost--bene {
    top: calc(629px * var(--lw-mobile-scale-num));
    left: calc(94px * var(--lw-mobile-scale-num));
    width: calc(242px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__ghost--fits {
    top: calc(776px * var(--lw-mobile-scale-num));
    left: calc(203px * var(--lw-mobile-scale-num));
    width: calc(139px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__heading {
    font-size: calc(55px * var(--lw-mobile-scale-num));
    line-height: calc(63px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-3px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__heading--artists {
    top: calc(13px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(303px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__heading--listeners {
    top: calc(555px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(297px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item--1 {
    top: calc(190px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(326px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item--2 {
    top: calc(369px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(322px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item--3 {
    top: calc(731px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(335px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item--4 {
    top: calc(880px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(348px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item h3 {
    font-size: calc(16px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
  }

  .lw-benefits-exact__item p {
    margin-top: calc(17px * var(--lw-mobile-scale-num));
    font-size: calc(13px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__stage {
    position: relative;
    height: calc(700px * var(--lw-mobile-scale-num));
    margin: 0 auto;
  }

  .lw-join-exact__ghost,
  .lw-join-exact__asterisk,
  .lw-join-exact__title,
  .lw-join-exact__text,
  .lw-join-exact__button {
    position: absolute;
    margin: 0;
  }

  .lw-join-exact__asterisk {
    top: calc(36px * var(--lw-mobile-scale-num));
    left: calc(293px * var(--lw-mobile-scale-num));
    width: calc(35px * var(--lw-mobile-scale-num));
    height: calc(35px * var(--lw-mobile-scale-num));
    font-size: calc(35px * var(--lw-mobile-scale-num));
    line-height: calc(35px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__title {
    top: calc(117px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(357px * var(--lw-mobile-scale-num));
    font-size: calc(41px * var(--lw-mobile-scale-num));
    line-height: calc(47px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__ghost {
    color: rgba(255, 255, 255, 0.14);
    font-size: calc(100px * var(--lw-mobile-scale-num));
    line-height: calc(78px * var(--lw-mobile-scale-num));
    letter-spacing: calc(-4px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__ghost--listen {
    top: calc(172px * var(--lw-mobile-scale-num));
    left: calc(47px * var(--lw-mobile-scale-num));
    width: calc(317px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__ghost--to {
    top: calc(343px * var(--lw-mobile-scale-num));
    left: calc(230px * var(--lw-mobile-scale-num));
    width: calc(124px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__ghost--earn {
    top: calc(482px * var(--lw-mobile-scale-num));
    left: calc(36px * var(--lw-mobile-scale-num));
    width: calc(327px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__text {
    top: calc(264px * var(--lw-mobile-scale-num));
    left: calc(12px * var(--lw-mobile-scale-num));
    width: calc(244px * var(--lw-mobile-scale-num));
    font-size: calc(13px * var(--lw-mobile-scale-num));
    line-height: calc(19px * var(--lw-mobile-scale-num));
  }

  .lw-join-exact__button {
    top: calc(327px * var(--lw-mobile-scale-num));
    left: calc(19px * var(--lw-mobile-scale-num));
    width: calc(191px * var(--lw-mobile-scale-num));
    min-height: calc(39px * var(--lw-mobile-scale-num));
    padding: 0;
    font-size: calc(20px * var(--lw-mobile-scale-num));
    line-height: calc(31px * var(--lw-mobile-scale-num));
  }

  .lw-video-exact {
    padding: 90px 0 89px;
  }

  .lw-video-exact .lw-container,
  .lw-video-stats-exact .lw-container,
  .lw-app-exact .lw-container,
  .lw-footer .lw-container {
    padding: 0 20px;
  }

  .lw-video-exact__title {
    margin-bottom: 50px;
    font-size: 30px;
    line-height: 36.9px;
  }

  .lw-video-exact__icon-wrap {
    min-height: 100px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .lw-video-exact__icon-wrap img {
    width: 100px;
    height: 100px;
  }

  .lw-video-exact__step:nth-child(n + 2) .lw-video-exact__icon-wrap {
    position: relative;
    display: block;
    min-height: 218px;
  }

  .lw-video-exact__step:nth-child(1) .lw-video-exact__arrow {
    display: none;
  }

  .lw-video-exact__step:nth-child(n + 2) .lw-video-exact__icon-wrap img {
    position: absolute;
    top: 118px;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
  }

  .lw-video-exact__step:nth-child(2) .lw-video-exact__arrow,
  .lw-video-exact__step:nth-child(3) .lw-video-exact__arrow {
    position: absolute;
    display: block;
    top: 29px;
    left: calc(50% - 14px);
    width: 28px;
    height: 60px;
    margin: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 60' fill='none'%3E%3Cpath d='M14 4V48' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8 42L14 48L20 42' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 28px 60px no-repeat;
  }

  .lw-video-exact__steps {
    row-gap: 0;
  }

  .lw-video-exact__step p {
    max-width: none;
    width: var(--lw-mobile-content-width);
    margin-top: 25px;
    font-size: 12px;
    line-height: 17.4px;
    font-weight: 300;
  }

  .lw-video-stats-exact {
    padding: 90px 0;
  }

  .lw-video-stats-exact__grid {
    row-gap: 20px;
  }

  .lw-video-stats-exact__item h3 {
    font-size: 30px;
    line-height: 34px;
    padding-top: 8px;
    padding-bottom: 6px;
  }

  .lw-video-stats-exact__item p {
    margin-top: 31px;
    padding-top: 14px;
    padding-bottom: 6px;
    border-top: 2px solid #ffffff;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
    line-height: 25px;
  }

  .lw-app-exact {
    padding: 90px 0;
  }

  .lw-app-exact__title {
    margin: 0 0 60px;
    font-size: 30px;
    line-height: 36.9px;
  }

  .lw-app-exact__grid {
    row-gap: 0;
  }

  .lw-app-exact__text {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    font-weight: 300;
  }

  .lw-app-exact__text-tail {
    display: inline;
  }

  .lw-app-exact__button {
    width: 100%;
    min-height: 60px;
    margin-top: 45px;
    font-size: 16px;
  }

  .lw-app-exact__visual {
    margin-top: 45px;
  }

  .lw-app-exact__visual img {
    width: min(var(--lw-mobile-content-width), calc(100vw - 40px));
    height: auto;
  }

  .lw-footer {
    padding: 60px 0 132px;
  }

  .lw-footer__inner {
    gap: 0;
  }

  .lw-footer__nav {
    gap: 21px 33px;
  }

  .lw-footer__nav a {
    font-size: 14px;
    line-height: normal;
  }

  .lw-footer__copy {
    width: var(--lw-mobile-content-width);
    margin-top: 30px;
    line-height: 1.5;
  }
}


