@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBMPlexSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
html {
  height: 100%;
  width: 100%;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  -webkit-text-size-adjust: none;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-around;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

input, textarea, select, button {
  font-family: inherit;
  outline: none;
  background: transparent;
  border: none;
  cursor: url("images/cursor.svg"), pointer;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button, textarea::-webkit-outer-spin-button, textarea::-webkit-inner-spin-button, select::-webkit-outer-spin-button, select::-webkit-inner-spin-button, button::-webkit-outer-spin-button, button::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration, textarea::-webkit-search-decoration, textarea::-webkit-search-cancel-button, textarea::-webkit-search-results-button, textarea::-webkit-search-results-decoration, select::-webkit-search-decoration, select::-webkit-search-cancel-button, select::-webkit-search-results-button, select::-webkit-search-results-decoration, button::-webkit-search-decoration, button::-webkit-search-cancel-button, button::-webkit-search-results-button, button::-webkit-search-results-decoration {
  display: none;
}

input:focus::placeholder, textarea:focus::placeholder, select:focus::placeholder, button:focus::placeholder {
  visibility: hidden;
}

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

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

h1, h2, h3 {
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

section {
  scroll-margin-top: 80px;
}

.btn {
  position: relative;
  transition: all 0.3s ease;
}
.btn > span {
  display: flex;
  height: 56px;
  padding: 19px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  z-index: 1;
  transition: all 0.3s ease;
  background: var(--main-color);
}
.btn:before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 16px;
  opacity: 0.5;
  filter: blur(6px);
  z-index: -1;
  background: linear-gradient(72deg, var(--main-color) 0%, var(--second-color) 50%, var(--main-color) 100%);
  transition: all 0.3s ease;
}
.btn:hover > span {
  transform: translateY(-5px) !important;
}
.btn:hover:before {
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}

.main-width {
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

.circle {
  width: 384px;
  height: 384px;
  opacity: 0.07;
  background: var(--main-color);
  filter: blur(32px);
  position: absolute;
  border-radius: 100%;
  z-index: 0;
}

html[data-theme="1xbet"] {
  background: #021A35;
  --main-color: #38F;
  --second-color: #00D4FF;
}
html[data-theme="1xbet"] .btn span {
  box-shadow: 0 10px 30px -10px rgba(51, 136, 255, 0.4);
}
html[data-theme="1xbet"] .logo--1xbet {
  display: block;
}
html[data-theme="1xbet"] .logo--melbet {
  display: none;
}
html[data-theme="1xbet"] .header .lang-switcher__option--selected {
  background: rgba(51, 136, 255, 0.08);
}
html[data-theme="1xbet"] .header .lang-switcher__option--selected:after {
  background: url(images/check-icon-1xbet.svg) no-repeat center center;
}
html[data-theme="1xbet"] .top-block {
  background: url(images/top-bg.webp) top center no-repeat;
  background-size: cover;
}
html[data-theme="1xbet"] .top-block__title--1xbet {
  display: flex;
}
html[data-theme="1xbet"] .top-block__title--melbet {
  display: none;
}
html[data-theme="1xbet"] .beam-1 {
  background: radial-gradient(ellipse at center, rgba(51, 136, 255, 0.8) 0%, rgba(51, 136, 255, 0.6) 20%, rgba(51, 136, 255, 0.4) 40%, rgba(51, 136, 255, 0.2) 60%, transparent 80%);
}
html[data-theme="1xbet"] .beam-2 {
  background: radial-gradient(ellipse at center, rgba(51, 136, 255, 0.6) 0%, rgba(51, 136, 255, 0.4) 20%, rgba(51, 136, 255, 0.3) 40%, rgba(51, 136, 255, 0.1) 60%, transparent 80%);
}
html[data-theme="1xbet"] .beam-3 {
  background: radial-gradient(ellipse at center, rgba(51, 136, 255, 0.4) 0%, rgba(51, 136, 255, 0.3) 15%, rgba(51, 136, 255, 0.2) 30%, rgba(51, 136, 255, 0.1) 50%, transparent 70%);
}
html[data-theme="1xbet"] .beam-4 {
  background: radial-gradient(ellipse at center, rgba(51, 136, 255, 0.2) 0%, rgba(51, 136, 255, 0.15) 15%, rgba(51, 136, 255, 0.1) 30%, rgba(51, 136, 255, 0.05) 45%, transparent 60%);
}
html[data-theme="1xbet"] .features__icon, html[data-theme="1xbet"] .security__icon {
  background: rgba(51, 136, 255, 0.13);
}
html[data-theme="1xbet"] .comparison__td:last-child:before {
  background: url(images/check-icon-1xbet.svg) no-repeat center center;
}
html[data-theme="1xbet"] .cta__title--melbet {
  display: none;
}
html[data-theme="1xbet"] .cta__title--1xbet {
  display: flex;
}
html[data-theme="1xbet"] .footer--1xbet {
  display: flex;
}
html[data-theme="1xbet"] .footer--melbet {
  display: none;
}

html[data-theme=melbet] {
  background: #000;
  --main-color: #F5C400;
  --second-color: #F5C400;
}
html[data-theme=melbet] .btn span {
  box-shadow: 0 10px 30px -10px rgba(255, 152, 0, 0.4);
}
html[data-theme=melbet] .logo--1xbet {
  display: none;
}
html[data-theme=melbet] .logo--melbet {
  display: block;
}
html[data-theme=melbet] .header .lang-switcher__option--selected {
  background: rgba(245, 196, 0, 0.08);
}
html[data-theme=melbet] .header .lang-switcher__option--selected:after {
  background: url(images/check-icon-melbet.svg) no-repeat center center;
}
html[data-theme=melbet] .top-block {
  background: url(images/top-bg-melbet.webp) top center no-repeat;
  background-size: cover;
}
html[data-theme=melbet] .top-block__title--1xbet {
  display: none;
}
html[data-theme=melbet] .top-block__title--melbet {
  display: flex;
}
html[data-theme=melbet] .beam-1 {
  background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.8) 0%, rgba(255, 152, 0, 0.6) 20%, rgba(255, 152, 0, 0.4) 40%, rgba(255, 152, 0, 0.2) 60%, transparent 80%);
}
html[data-theme=melbet] .beam-2 {
  background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.6) 0%, rgba(255, 152, 0, 0.4) 20%, rgba(255, 152, 0, 0.3) 40%, rgba(255, 152, 0, 0.1) 60%, transparent 80%);
}
html[data-theme=melbet] .beam-3 {
  background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.4) 0%, rgba(255, 152, 0, 0.3) 15%, rgba(255, 152, 0, 0.2) 30%, rgba(255, 152, 0, 0.1) 50%, transparent 70%);
}
html[data-theme=melbet] .beam-4 {
  background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.8) 0%, rgba(255, 152, 0, 0.6) 15%, rgba(255, 152, 0, 0.4) 30%, rgba(255, 152, 0, 0.2) 45%, transparent 60%);
}
html[data-theme=melbet] .features__icon, html[data-theme=melbet] .security__icon {
  background: rgba(245, 196, 0, 0.13);
}
html[data-theme=melbet] .comparison__td:last-child:before {
  background: url(images/check-icon-melbet.svg) no-repeat center center;
}
html[data-theme=melbet] .cta__title--melbet {
  display: flex;
}
html[data-theme=melbet] .cta__title--1xbet {
  display: none;
}
html[data-theme=melbet] .footer--1xbet {
  display: none;
}
html[data-theme=melbet] .footer--melbet {
  display: flex;
}

header {
  position: fixed !important;
  top: 0 !important;
  transform: none !important;
  width: 100vw !important;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  z-index: 99;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.header__nav {
  margin: auto;
}
.header__nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1280px) and (min-width: 767px) {
  .header__nav nav {
    gap: 2.8vw;
  }
}
.header__nav nav a.nav-item {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.header__nav nav a.nav-item:hover {
  color: #FFF;
}
.header .lang-switcher {
  position: relative;
}
.header .lang-switcher__current {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  padding-top: 0;
}
.header .lang-switcher__current i {
  transition: all 0.3s ease;
  height: 22px;
}
.header .lang-switcher__label {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.header .lang-switcher__list {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  z-index: 10;
  padding: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: stretch;
  width: 224px;
  border-radius: 16px;
  border: 1.25px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.header .lang-switcher__option {
  list-style: none;
  display: flex;
  width: 100%;
  height: 56px;
  padding: 0 16px 0;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.312px;
  cursor: pointer;
}
.header .lang-switcher__option:hover {
  color: var(--main-color);
}
.header .lang-switcher__option--selected {
  color: var(--main-color);
}
.header .lang-switcher__option--selected:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.header .lang-switcher--open .lang-switcher__list {
  display: flex;
}
.header .lang-switcher--open .lang-switcher__current i {
  transform: rotate(180deg);
}
.header__nav-link {
  display: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.header__nav-link .close-nav {
  display: none;
}
.header__nav-link svg path {
  stroke: var(--main-color);
}

.progress-container {
  width: 100%;
  height: 4px; /* Толщина полосы */
  background: rgba(0, 0, 0, 0.1); /* Цвет фона полосы */
  position: absolute;
  top: 0;
  left: 0;
}

.progress-bar {
  height: 100%;
  width: 0%;
  transition: width 0.1s ease;
  background: var(--main-color);
  box-shadow: var(--main-color) 0 0 20px;
}

html[dir=rtl] .lang-switcher__list {
  right: auto;
  left: 0;
}

html[dir=rtl] .lang-switcher__option--selected:after {
  margin-left: 0;
  margin-right: auto;
}

.top-block {
  height: 100vh;
  min-height: 630px;
  padding-top: 97px;
  padding-bottom: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 98;
}
.top-block__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.top-block__label {
  display: flex;
  padding: 7px 17px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 33554400px;
  border: 1px solid rgba(51, 136, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateX(-40px);
  animation: fade-left 0.8s ease-out forwards;
  animation-delay: 0.1s;
}
.top-block__label i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--second-color);
}
.top-block__label span {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.top-block__title {
  flex-direction: column;
  gap: 12px;
  font-family: "IBM Plex Sans";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 68.4px;
  letter-spacing: -3.6px;
  opacity: 0;
  transform: translateX(-40px);
  animation: fade-left 0.8s ease-out forwards;
  animation-delay: 0.25s;
}
.top-block__title div {
  color: #FFF;
}
.top-block__title span {
  color: var(--main-color);
}
.top-block__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  max-width: 505px;
  opacity: 0;
  transform: translateX(-40px);
  animation: fade-left 0.8s ease-out forwards;
  animation-delay: 0.4s;
}
.top-block__btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up 0.8s ease-out forwards;
  animation-delay: 0.6s;
}
.top-block__digits {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.top-block__digits-item {
  display: flex;
  flex-direction: column;
}
.top-block__digits-item div {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.top-block__digits-item span {
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.top-block__cryptos {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  overflow: hidden;
  padding: 13px 0;
}
.top-block__cryptos-track {
  display: flex;
  width: max-content;
  animation: crypto-marquee-ltr 25s linear infinite;
}
.top-block__cryptos-line {
  display: flex;
  align-items: center;
}
.top-block__cryptos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  position: relative;
}
.top-block__cryptos-item:before {
  content: "";
  display: flex;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}
.top-block__cryptos-item label {
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
}
.top-block__cryptos-name {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.top-block__cryptos-price {
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.top-block__cryptos-percents {
  font-family: "IBM Plex Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-block__cryptos-percents:before {
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
}
.top-block__cryptos-percents--top {
  color: #05DF72;
}
.top-block__cryptos-percents--top:before {
  background: url(images/top-icon.webp) center no-repeat;
}
.top-block__cryptos-percents--bottom {
  color: #FF6467;
}
.top-block__cryptos-percents--bottom:before {
  background: url(images/bottom-icon.webp) center no-repeat;
}
.top-block__link {
  position: fixed;
  right: 35px;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: var(--main-color);
  animation: floatPulse1xbet 3s ease-in-out infinite;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 999;
}
.top-block__link:hover {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--second-color) 100%);
}

html[dir=rtl] .top-block__cryptos-track {
  animation-name: crypto-marquee-rtl;
}

html[data-theme=melbet] .top-block__link {
  animation: floatPulseMelbet 3s ease-in-out infinite;
}

@keyframes fade-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes crypto-marquee-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes crypto-marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@keyframes floatPulse1xbet {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(51, 136, 255, 0.3), 0 8px 24px rgba(51, 136, 255, 0.2);
  }
  25% {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(51, 136, 255, 0.4), 0 16px 40px rgba(51, 136, 255, 0.3), 0 24px 60px rgba(51, 136, 255, 0.2);
  }
  50% {
    transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(51, 136, 255, 0.5), 0 24px 56px rgba(51, 136, 255, 0.4), 0 36px 84px rgba(51, 136, 255, 0.3);
  }
  75% {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(51, 136, 255, 0.4), 0 16px 40px rgba(51, 136, 255, 0.3), 0 24px 60px rgba(51, 136, 255, 0.2);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(51, 136, 255, 0.3), 0 8px 24px rgba(51, 136, 255, 0.2);
  }
}
@keyframes floatPulseMelbet {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3), 0 8px 24px rgba(255, 152, 0, 0.2);
  }
  25% {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4), 0 16px 40px rgba(255, 152, 0, 0.3), 0 24px 60px rgba(255, 152, 0, 0.2);
  }
  50% {
    transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(255, 152, 0, 0.5), 0 24px 56px rgba(255, 152, 0, 0.4), 0 36px 84px rgba(255, 152, 0, 0.3);
  }
  75% {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4), 0 16px 40px rgba(255, 152, 0, 0.3), 0 24px 60px rgba(255, 152, 0, 0.2);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3), 0 8px 24px rgba(255, 152, 0, 0.2);
  }
}
/* Анимация подъема кнопки (только вверх) */
@keyframes lanternFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Стили для световых лучей */
.light-beam {
  position: absolute;
  top: 100%; /* Начинаются от нижнего края кнопки */
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

/* Первый луч - самый яркий и узкий */
.beam-1 {
  width: 80px;
  height: 40px;
  filter: brightness(1.1);
  animation: beamPulse 3s ease-in-out infinite;
}

/* Второй луч - шире и мягче */
.beam-2 {
  width: 120px;
  height: 60px;
  animation: beamPulse 3s ease-in-out infinite 0.2s;
}

/* Третий луч - самый широкий */
.beam-3 {
  width: 160px;
  height: 80px;
  animation: beamPulse 3s ease-in-out infinite 0.4s;
}

/* Четвертый луч - боковое свечение */
.beam-4 {
  width: 200px;
  height: 100px;
  animation: beamPulse 3s ease-in-out infinite 0.6s;
}

/* Анимация пульсации света (движение вниз и расширение в стороны) */
@keyframes beamPulse {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scaleX(0.8);
  }
  20% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(20px) scaleX(0.9);
  }
  40% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(40px) scaleX(1);
  }
  60% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(60px) scaleX(1.1);
  }
  80% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(80px) scaleX(1.2);
  }
}
/* Альтернативная анимация с более резкими переходами */
@keyframes sharpBeamPulse {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scaleX(0.7);
  }
  20% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(15px) scaleX(0.85);
  }
  40% {
    opacity: 1;
    transform: translateX(-50%) translateY(30px) scaleX(1);
  }
  60% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(45px) scaleX(1.15);
  }
  80% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(60px) scaleX(1.3);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(75px) scaleX(1.5);
  }
}
/* Вариант с треугольной формой света (как луч прожектора) */
.light-beam.triangle {
  width: 150px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(51, 136, 255, 0.8) 0%, rgba(51, 136, 255, 0.5) 30%, rgba(51, 136, 255, 0.2) 60%, transparent 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
  animation: triangleBeam 3s ease-in-out infinite;
}

@keyframes triangleBeam {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scaleY(0.5);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(50px) scaleY(1);
  }
}
/* Световые полосы (альтернативный дизайн) */
.light-stripe {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, rgba(51, 136, 255, 0.9), rgba(51, 136, 255, 0));
  transform: translateX(-50%);
  border-radius: 2px;
  animation: stripeFall 3s ease-in-out infinite;
}

.light-stripe.left {
  left: 30%;
  transform: translateX(-50%) rotate(-15deg);
  animation-delay: 0.1s;
}

.light-stripe.right {
  left: 70%;
  transform: translateX(-50%) rotate(15deg);
  animation-delay: 0.2s;
}

@keyframes stripeFall {
  0%, 100% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 80px;
    opacity: 0.6;
  }
}
.instruction {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
}
.instruction__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 78px;
  font-style: normal;
  font-weight: 700;
  line-height: 78px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}
.instruction__title span:first-child {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 92px;
}
.instruction__title span:last-child {
  color: var(--main-color);
}
.instruction__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.instruction__blocks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.instruction__block {
  display: flex;
  align-items: center;
  gap: 235px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}
.instruction__block.is-visible {
  opacity: 1;
  transform: scale(1);
}
.instruction__block--left {
  padding: 50px 90px 50px 200px;
}
.instruction__block--left .instruction__content {
  order: 1;
}
.instruction__block--left .instruction__image {
  order: 0;
  transform-origin: left bottom;
}
.instruction__block--left .instruction__image:hover {
  transform: rotate(-6deg) translateY(-4px);
}
.instruction__block--right {
  padding: 50px 200px 50px 90px;
}
.instruction__block--right .instruction__content {
  order: 0;
}
.instruction__block--right .instruction__image {
  order: 1;
  transform-origin: right bottom;
}
.instruction__block--right .instruction__image:hover {
  transform: rotate(6deg) translateY(-4px);
}
.instruction__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  flex: 1;
}
.instruction__content label {
  font-family: "IBM Plex Sans";
  font-size: 140px;
  font-style: normal;
  font-weight: 700;
  line-height: 140px;
  opacity: 0.05;
  position: absolute;
  left: -15px;
  top: -60px;
  color: var(--main-color);
}
.instruction__block-title {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 29.4px;
  font-style: normal;
  font-weight: 700;
  line-height: 37.5px;
  letter-spacing: -0.75px;
}
.instruction__text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
}
.instruction__links {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}
.instruction__image {
  width: 260px;
  display: inline-block;
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

html[dir=rtl] .instruction__content label {
  right: -15px;
  left: auto;
  text-align: right;
}

@media (max-width: 1280px) and (min-width: 768px) {
  .instruction__block {
    gap: 18vw;
  }
  .instruction__block--left {
    padding: 50px 5vw 50px 15vw;
  }
  .instruction__block--right {
    padding: 50px 15vw 50px 5vw;
  }
}
.crypto {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 32px;
}
.crypto__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.9px;
}
.crypto__title span:first-child {
  color: #FFF;
}
.crypto__title span:last-child {
  color: var(--main-color);
}
.crypto__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 15.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 12px;
}
.crypto__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 18px;
}
.crypto__list.is-visible .crypto__item {
  opacity: 1;
  transform: scale(1);
}
.crypto__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc((100% - 90px) / 6);
  height: 110px;
  border-radius: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i) * 0.08s);
  will-change: transform, opacity;
  position: relative;
}
.crypto__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: rgba(51, 136, 255, 0.125);
  transition: all 0.3s ease;
}
.crypto__item:hover {
  transform: translateY(-5px) scale(1.05) !important;
  transition-delay: 0s !important;
}
.crypto__item:hover:before {
  opacity: 0.5;
}
.crypto__item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.crypto__item div {
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.crypto__subtitle {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 13.7px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .crypto__item {
    width: calc((100% - 54px) / 4);
  }
}
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
  position: relative;
}
.features * {
  z-index: 1;
}
.features__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.features__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.features__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.2px;
}
.features__title span:first-child {
  color: #FFF;
}
.features__title span:last-child {
  color: var(--main-color);
}
.features__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 17.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
}
.features__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.features__list.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  padding: 32px;
  width: calc((100% - 96px) / 4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  position: relative;
  transition: all 0.3s ease;
}
.features__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: rgba(51, 136, 255, 0.125);
  transition: all 0.3s ease;
}
.features__item:hover {
  transform: translateY(-15px);
}
.features__item:hover:before {
  opacity: 0.5;
}
.features__item:hover .features__icon {
  transform: scale(1.1);
}
.features__icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.features__icon svg path {
  stroke: var(--main-color);
}
.features__item-title {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 19.8px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.features__item-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
}
.features .circle--1 {
  bottom: 64px;
  left: -128px;
  z-index: 0;
}
.features .circle--2 {
  top: 0;
  right: -128px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .features__list {
    flex-wrap: wrap;
  }
  .features__item {
    width: calc((100% - 32px) / 2);
    min-width: calc((100% - 32px) / 2);
  }
}
.comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 0;
  gap: 64px;
}
.comparison__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.comparison__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.comparison__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.2px;
}
.comparison__title span:first-child {
  color: #FFF;
}
.comparison__title span:last-child {
  color: var(--main-color);
}
.comparison__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 17.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
}
.comparison__tab {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.comparison__head {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px 24px 0 0;
}
.comparison__th {
  width: 33.3333%;
  padding: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.comparison__th:nth-child(2) {
  text-align: center;
}
.comparison__th:last-child {
  text-align: center;
  color: var(--main-color);
}
.comparison__tr {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}
.comparison__tr:hover {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}
.comparison__tr.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.comparison__td {
  width: 33.3333%;
  padding: 32px;
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comparison__td:first-child {
  justify-content: flex-start;
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.comparison__td:nth-child(2) {
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.comparison__td:nth-child(2):before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(images/cross-icon.svg) no-repeat center center;
}
.comparison__td:last-child {
  justify-content: center;
  text-align: center;
  color: var(--main-color);
  font-weight: 700;
}
.comparison__td:last-child:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
}
.comparison__bottom {
  padding: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 24px 24px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.security {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 0;
  gap: 64px;
}
.security * {
  z-index: 1;
}
.security__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.security__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.security__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.2px;
}
.security__title span:first-child {
  color: #FFF;
}
.security__title span:last-child {
  color: var(--main-color);
}
.security__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 17.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
}
.security__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 32px;
}
.security__list.is-visible .security__item {
  opacity: 1;
  transform: translateY(0);
}
.security__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  padding: 32px;
  width: calc((100% - 96px) / 4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i) * 0.08s);
  will-change: transform, opacity;
}
.security__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: rgba(51, 136, 255, 0.125);
  transition: all 0.3s ease;
}
.security__item:hover {
  transform: scale(1.05);
}
.security__icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border-radius: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.security__icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 100%;
  opacity: 0.3;
  background: var(--main-color);
  filter: blur(8px);
}
.security__icon svg path {
  stroke: var(--main-color);
}
.security__item-title {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 19.8px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.security__item-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
  text-align: center;
}
.security__subtitle {
  display: flex;
  padding: 13px 25px;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  border-radius: 33554400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.security__subtitle svg path {
  stroke: var(--main-color);
}
.security .circle {
  width: 500px;
  height: 500px;
  z-index: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 0;
  gap: 64px;
}
.faq * {
  z-index: 1;
}
.faq__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.faq__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.2px;
}
.faq__title span:first-child {
  color: #FFF;
}
.faq__title span:last-child {
  color: var(--main-color);
}
.faq__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 17.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 848px;
}
.faq__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease, opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
  cursor: pointer;
}
.faq__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq__item--open i {
  transform: rotate(180deg);
}
.faq__item--open .faq__answer {
  max-height: 200px;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.faq__question i {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Sans";
  font-size: 15.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: max-height 0.5s ease;
  will-change: max-height;
}
.faq__answer p {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__bottom span {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 15.9px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.faq__bottom a {
  color: var(--main-color);
  font-family: "IBM Plex Sans";
  font-size: 15.9px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 0;
  gap: 64px;
  position: relative;
}
.cta * {
  z-index: 1;
}
.cta__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.cta__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cta__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px;
}
.cta__title span:first-child {
  color: #FFF;
}
.cta__title span:last-child {
  color: var(--main-color);
}
.cta__text {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 28px;
}
.cta__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 32px;
}
.cta__list.is-visible .cta__item {
  opacity: 1;
  transform: translateY(0);
}
.cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  padding: 32px;
  width: calc((100% - 64px) / 3);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i) * 0.08s);
  will-change: transform, opacity;
}
.cta__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: rgba(51, 136, 255, 0.125);
  transition: all 0.3s ease;
}
.cta__item:hover {
  transform: scale(1.05);
}
.cta__icon {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border-radius: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.cta__icon svg path {
  stroke: var(--main-color);
}
.cta__item-title {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 19.8px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.cta__item-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
  text-align: center;
}
.cta__btn > span {
  gap: 8px;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  padding: 50px 0;
  overflow: hidden;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  height: 24px;
}
.footer__text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  font-family: "IBM Plex Sans";
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 767px) {
  .main-width {
    padding: 0 16px;
  }
  header {
    padding: 16px 0;
  }
  .header {
    gap: 2vw;
  }
  .header__nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header__nav nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__nav-link {
    display: flex;
  }
  .header--nav-open .header__nav {
    opacity: 1;
    visibility: visible;
  }
  .header--nav-open .header__nav-link .open-nav {
    display: none;
  }
  .header--nav-open .header__nav-link .close-nav {
    display: flex;
  }
  .lang-switcher {
    margin-left: auto;
  }

  html[dir=rtl]  .lang-switcher {
    margin-right: auto;
    margin-left: 0;
  }

  .top-block {
    min-height: 780px;
    padding-top: 81px;
  }
  .top-block__title {
    font-size: 9.2vw;
    line-height: 1;
    letter-spacing: -1.8px;
  }
  .top-block__text {
    font-size: 16px;
  }
  .top-block__digits {
    gap: 30px;
  }
  .top-block__digits-item div {
    font-size: 23px;
  }
  .instruction {
    padding: 48px 0;
    gap: 48px;
  }
  .instruction__title {
    font-size: 7.6vw;
    line-height: 1.2;
  }
  .instruction__title span:first-child {
    line-height: 1.2;
  }
  .instruction__block {
    padding: 25px !important;
    gap: 24px !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .instruction__content {
    padding-top: 32px;
    order: 1 !important;
  }
  .instruction__content label {
    font-size: 100px;
    left: -15px;
    top: -45px;
  }
  .instruction__block-title {
    font-size: 24px;
  }
  .instruction__image {
    width: 180px;
  }
  .crypto {
    padding: 52px 0;
  }
  .crypto__title {
    font-size: 7.6vw;
    line-height: 1.2;
  }
  .crypto__list {
    gap: 14px;
  }
  .crypto__item {
    width: calc(33.3333333333% - 9.33px);
  }
  .features {
    padding: 48px 0 32px 0;
  }
  .features__title {
    font-size: 8.1vw;
    line-height: 1.2;
  }
  .features__item {
    min-width: 100%;
  }

  .features .circle--1 {
    left: 0;
    max-width: 90vw;
    max-height: 90vw;
  }

  .features .circle--2 {
    right: 0;
    max-width: 90vw;
    max-height: 90vw;
  }
  .comparison {
    padding: 52px 0;
  }
  .comparison__title {
    font-size: 8.1vw;
    line-height: 1.2;
  }
  .comparison__th {
    padding: 24px;
    font-size: 12px;
  }
  .comparison__td {
    padding: 24px;
    font-size: 12px;
  }
  .comparison__td:nth-child(2) {
    white-space: nowrap;
  }
  .security {
    padding: 48px 0 32px 0;
  }
  .security__title {
    font-size: 8.1vw;
    line-height: 1.2;
  }
  .security__list {
    gap: 24px;
    flex-wrap: wrap;
  }
  .security__item {
    min-width: calc(50% - 12px);
  }
  .security .circle {
    max-width: 90vw;
    max-height: 90vw;
  }
  .faq {
    padding: 48px 0 32px 0;
  }
  .faq__title {
    font-size: 8.1vw;
    line-height: 1.2;
  }
  .faq__item {
    padding: 29px 25px;
  }
  .cta {
    padding: 48px 0 64px 0;
  }
  .cta__title {
    font-size: 9.2vw;
    line-height: 1.2;
  }
  .cta__list {
    flex-direction: column;
    gap: 24px;
  }
  .cta__item {
    width: 100%;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer__text {
    align-items: center;
    text-align: center;
  }
}

