:root {
  --slide-index: 0;
  --pink: #fc0147;
  --pink-2: #ec0b58;
  --purple: #625ae2;
  --purple-2: #7a4cca;
  --white: #fbfbfb;
  --muted-white: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.20);
  --glass-border: rgba(255, 255, 255, 0.24);
  --dark-glass: rgba(0, 0, 0, 0.28);
  --shadow: 0 26px 80px rgba(38, 18, 75, 0.28);
  --radius-lg: 34px;
  --radius-md: 24px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ufo-size: clamp(118px, 11vw, 178px);
  --ufo-x: calc(100vw - var(--ufo-size) - 5vw);
  --ufo-y: 16vh;
  --ufo-rotate: -12deg;
  --ufo-scale: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--white);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(-175deg, #625ae2 0%, #fc0147 13.75%, #f20852 33.86%, #ec0b58 37.39%, #e31061 41%, #d5186e 43.83%, #c12382 46.78%, #923eb1 54.23%, #8844bc 56.65%, #784dcc 59.78%, #6856dc 63.87%, #615ae3 67.64%, #6259e2 71.22%, #6558df 75.85%, #6f52d5 79.29%, #7a4cca 81.93%, #8943bb 84.3%, #fb0349 94.38%);
  background-size: 500% 500%;
  animation: gradient 10s ease infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  background-image: url("../img/bg-pattern.svg");
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: cover;
  opacity: 0.06;
  mix-blend-mode: screen;
  transform: rotate(-1deg) scale(1.02);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.11), transparent 28%);
  filter: blur(16px);
  z-index: 0;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.flying_ufo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: var(--ufo-size);
  pointer-events: none;
  opacity: 0.86;
  transform: translate3d(var(--ufo-x), var(--ufo-y), 0) rotate(var(--ufo-rotate)) scale(var(--ufo-scale));
  transform-origin: 50% 16%;
  transition:
    transform 760ms cubic-bezier(.22, .72, .22, 1),
    opacity 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.flying_ufo__ship {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(20, 8, 50, 0.22));
  animation: ufoHover 3.8s ease-in-out infinite;
}

html.ufo-switching .flying_ufo {
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.16));
}

@keyframes ufoHover {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.4deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(1.4deg);
  }
}

button,
a {
  font: inherit;
}

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

.preloader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(-180deg, #fc0147 0%, #625ae2 100%);
  background-size: 150% 150%;
  animation: gradient 9s ease infinite;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  width: min(342px, 64vw);
  height: auto;
  animation: logoIn 0.8s ease both;
}

@keyframes logoIn {
  from { transform: scale(0.72); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.header_box {
  position: fixed;
  top: calc(18px + var(--safe-top));
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
}

.header_wrapper {
  width: min(1260px, 100%);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 22px 70px rgba(36, 12, 80, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.menu_li {
  min-width: 0;
  flex: 1 1 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.menu_li:hover {
  background: rgba(0, 0, 0, 0.12);
}

.menu_li:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.menu_li_hover {
  background: var(--dark-glass);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 30px rgba(41, 13, 73, 0.18);
}

.menu_icon {
  display: none;
  width: 22px;
  height: 22px;
}

.menu_txt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider_shell {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.slides_track {
  width: 500vw;
  height: 100%;
  display: flex;
  transform: translate3d(calc(var(--slide-index) * -100vw), 0, 0);
  transition: transform 760ms cubic-bezier(.22, .72, .22, 1);
  will-change: transform;
}

.slide {
  width: 100vw;
  height: 100svh;
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(118px + var(--safe-top)) 32px calc(118px + var(--safe-bottom));
}

.slide_inner {
  width: min(1260px, 100%);
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
}

.slide_inner--logo {
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
}

.slide_inner--download {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 450px);
}

.glass_panel {
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.hero_visual {
  min-height: clamp(250px, 30vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}

.hero_visual::before,
.download_panel::before,
.text_panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.20), transparent 42%);
  opacity: 0.55;
}

.hero_visual--logo {
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-color: var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.about_logo {
  width: min(342px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(24, 9, 50, 0.18));
}

.people_group {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.buyer,
.seller {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(40, 9, 70, 0.12));
}

.buyer--accounts {
  height: clamp(190px, 21vw, 250px);
}

.seller--accounts {
  height: clamp(190px, 25vw, 300px);
}

.buyer--single {
  height: clamp(185px, 21vw, 245px);
}

.seller--single {
  height: clamp(185px, 21vw, 245px);
}

.text_panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 34px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

h1,
h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--white);
}

h2 {
  font-size: clamp(30px, 3.4vw, 49px);
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--muted-white);
}

.slide_inner--download h2 {
  max-width: 650px;
  font-size: clamp(32px, 3.45vw, 54px);
  line-height: 1.02;
}

.slide_inner--download .text_panel {
  padding-right: clamp(26px, 4vw, 48px);
}

.feature_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.feature_card {
  min-height: 142px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.feature_num {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
}

.feature_card h3 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature_card p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.35;
  color: var(--muted-white);
}

.download_panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 26px);
}

.store_btn {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 25px;
  background: rgba(38, 16, 45, 0.64);
  transition: transform 0.25s ease, background 0.25s ease;
}

.store_btn:hover {
  transform: translateY(-2px);
  background: rgba(38, 16, 45, 0.78);
}

.logo_dwn_pic {
  width: min(190px, 66%);
  height: auto;
}

.soon_badge {
  min-width: 76px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.qr_row {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 25px;
  background: rgba(255,255,255,0.12);
}

.qr_pic {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.qr_row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.38;
  color: var(--muted-white);
}

.slide .hero_visual,
.slide .text_panel,
.slide .download_panel,
.slide .download_legal,
.slide .mobile_contacts_panel {
  opacity: 0.35;
  transform: translateX(36px) scale(0.98);
  transition: opacity 600ms ease, transform 760ms cubic-bezier(.22, .72, .22, 1);
}

.slide.is-active .hero_visual,
.slide.is-active .text_panel,
.slide.is-active .download_panel,
.slide.is-active .mobile_contacts_panel,
.slide.is-active .download_legal {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.footer_box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(18px + var(--safe-bottom));
  z-index: 21;
  display: flex;
  justify-content: center;
  padding: 0 22px;
  pointer-events: none;
}

.footer_wrapper {
  width: min(1260px, 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  pointer-events: none;
}

.download_legal,
.footer_actions,
.social_links,
.translate_wrapper {
  pointer-events: auto;
}

.download_legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile_contacts_panel {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile_contacts_panel .contact {
  width: 42px;
  height: 42px;
}

.mobile_contacts_panel .contact_icon {
  width: 24px;
  height: 24px;
}

.download_legal a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.download_legal a:first-child {
  background: rgba(0, 0, 0, 0.22);
}

.download_legal a:hover,
.contact:hover,
.current_lang:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.20);
}
.footer_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social_links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact_icon {
  width: 22px;
  height: 22px;
}

.translate_wrapper {
  position: relative;
}

.current_lang {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.current_lang img {
  width: 24px;
  height: 24px;
}

.more_lang {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 154px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(76, 53, 174, 0.74);
  box-shadow: 0 18px 54px rgba(26, 12, 60, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.translate_wrapper.active .more_lang {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.lang:hover,
.lang.selected {
  background: rgba(255, 255, 255, 0.16);
}

.delete_account_btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.delete_account_btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.20);
}

.account_delete_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.account_delete_modal.is-open {
  display: flex;
}

.account_delete_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.account_delete_dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 34px;
  border-radius: 32px;
  color: #fff;
}

.account_delete_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.account_delete_close::before,
.account_delete_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  transform-origin: center;
}

.account_delete_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.account_delete_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.account_delete_step {
  display: none;
}

.account_delete_step.is-active {
  display: block;
}

.account_delete_title {
  margin: 10px 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
}

.account_delete_text {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.45;
}

.account_delete_form {
  display: grid;
  gap: 12px;
}

.account_delete_label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
}

.account_delete_input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.account_delete_input::placeholder {
  color: rgba(255,255,255,0.46);
}

.account_delete_input:focus {
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.16);
}

.account_delete_error {
  min-height: 18px;
  margin: 0;
  color: #ffd1dc;
  font-size: 13px;
  line-height: 1.35;
}

.account_delete_submit {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 32px;
  background: #ec0b58;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.account_delete_submit:hover {
  filter: brightness(1.06);
}

body.delete-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .delete_account_btn {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .account_delete_modal {
    padding: 12px;
  }

  .account_delete_dialog {
    padding: 28px 20px 22px;
    border-radius: 26px;
  }

  .account_delete_close {
    top: 12px;
    right: 12px;
  }
}


.account_delete_summary {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.account_delete_login {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.35;
}

.account_delete_warning {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(236,11,88,0.34);
  border-radius: 18px;
  background: rgba(236,11,88,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.45;
}

.account_delete_submit:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.account_delete_submit_danger {
  background: #ec0b58;
}

.account_delete_secondary {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.account_delete_secondary:hover {
  background: rgba(255,255,255,0.16);
}

.account_delete_secondary:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}











@media (max-width: 1040px) {
  .slide_inner,
  .slide_inner--logo,
  .slide_inner--download {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(760px, 100%);
  }

  .hero_visual {
    min-height: 232px;
  }

  .about_logo {
    width: min(286px, 76vw);
  }

  .people_group {
    max-width: 280px;
  }

  .text_panel {
    text-align: center;
  }

  .lead,
  h1,
  h2 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1040px) {
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow: auto;
  }

  :root {
    --ufo-size: clamp(88px, 24vw, 132px);
  }

  .flying_ufo {
    opacity: 0.52;
  }

  body {
    overflow-x: hidden;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
  }

  body::before {
    background-size: 1600px auto;
    background-position: center top;
    opacity: 0.06;
  }

  .slider_shell {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .slides_track {
    width: 100%;
    height: auto;
    display: block;
    transform: none !important;
    transition: none;
  }

  .slide {
    width: 100%;
    min-height: 100svh;
    height: auto;
    flex: none;
  }

  .slide .hero_visual,
  .slide .text_panel,
  .slide .download_panel,
  .slide .download_legal,
  .slide .mobile_contacts_panel {
    opacity: 1 !important;
    transform: none !important;
  }

  .header_box {
    top: auto;
    bottom: calc(14px + var(--safe-bottom));
    padding: 0 10px;
  }

  .header_wrapper {
    min-height: 68px;
    width: min(620px, 100%);
    border-radius: 20px;
    gap: 4px;
    padding: 7px;
  }

  .menu_li {
    min-height: 54px;
    padding: 6px 4px;
    flex-direction: column;
    gap: 5px;
    font-size: 9px;
    letter-spacing: 0.06em;
    border-radius: 14px;
  }

  .menu_icon {
    display: block;
  }

  .menu_txt {
    max-width: 82px;
  }

  .slide {
    padding: calc(24px + var(--safe-top)) 16px calc(170px + var(--safe-bottom));
  }

  .footer_box {
    bottom: calc(92px + var(--safe-bottom));
    padding: 0 12px;
  }

  .footer_wrapper {
    width: min(620px, 100%);
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
  }

  .download_legal {
    justify-content: center;
    border-radius: 24px;
    gap: 7px;
  }

  .download_legal a,
  .delete_account_btn {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .social_links {
    display: none;
  }

  .mobile_contacts_panel {
    display: flex;
  }

  .more_lang {
    position: fixed;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(146px + var(--safe-bottom));
    width: min(220px, calc(100vw - 24px));
    max-height: min(360px, calc(100svh - 190px));
    overflow-y: auto;
    transform: translateY(8px) scale(0.98);
    transform-origin: right bottom;
    z-index: 40;
  }

  .translate_wrapper.active .more_lang {
    transform: translateY(0) scale(1);
  }

  .current_lang {
    min-height: 42px;
    padding: 7px 10px;
  }

  .current_lang img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 760px) {
  h1,
  h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.0;
  }

  .lead {
    font-size: 15px;
  }

  .feature_grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .feature_card {
    min-height: auto;
    padding: 15px;
  }

  .feature_num {
    margin-bottom: 12px;
  }

  .hero_visual {
    min-height: 190px;
    border-radius: 26px;
  }

  .text_panel,
  .download_panel {
    border-radius: 26px;
    padding: 20px;
  }

  .buyer--accounts,
  .buyer--single,
  .seller--single {
    height: 172px;
  }

  .seller--accounts {
    height: 206px;
  }

  .store_btn {
    min-height: 66px;
    border-radius: 21px;
  }

  .qr_row {
    grid-template-columns: 74px 1fr;
    gap: 12px;
  }

  .qr_pic {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 520px) {
  .footer_box {
    bottom: calc(90px + var(--safe-bottom));
  }

  .footer_wrapper {
    justify-content: flex-end;
  }

  .download_legal,
  .mobile_contacts_panel {
    padding: 8px;
    border-radius: 24px;
  }

  .download_legal a,
  .delete_account_btn {
    flex: 1 1 100%;
  }

  .slide {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 1041px) and (max-height: 940px) {
  .header_box {
    top: calc(16px + var(--safe-top));
  }

  .slide {
    padding-top: calc(108px + var(--safe-top));
    padding-bottom: calc(96px + var(--safe-bottom));
  }

  .hero_visual {
    min-height: 320px;
  }

  .about_logo {
    width: min(300px, 82%);
  }

  .buyer--accounts,
  .seller--accounts {
    height: 190px;
  }

  .buyer--single,
  .seller--single {
    height: 218px;
  }

  .text_panel {
    padding: 30px 34px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 46px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.4;
  }

  .feature_grid {
    margin-top: 18px;
  }

  .feature_card {
    min-height: 128px;
    padding: 15px;
  }

  .feature_num {
    margin-bottom: 12px;
  }

  .footer_box {
    bottom: calc(16px + var(--safe-bottom));
  }
}
