* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: #0a0a0a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.container {
  max-width: 1426px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

header .container {
  max-width: 1184px;
}

header {
  padding: 24px 0;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}

header .menu li {
  padding: 0 32px;
}

header .menu li a {
  color: rgba(10, 10, 10, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.start-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s ease;

  color: #0a0a0a;
  font-size: 14px;
  font-style: normal;
  line-height: 19.6px;
}

.start-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

:root {
  --ring: #1f2937;
  --text: #e6edf3;
  --muted: #9aa4b2;
  --green: #16a34a;
  --red: #ef4444;
}
* {
  box-sizing: border-box;
}

.hero {
  position: relative;
  place-items: center;
  overflow: hidden;
  isolation: isolate;

  border-radius: 24px;
  background: radial-gradient(99.35% 132.66% at 0% 0%, #f2f5f3 0%, #f6fef7 50%, #fff 100%);
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;

  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 120px;
}

.hero::before {
  content: url("./img/bg-image-2.png");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}

.hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 564px;

  margin-bottom: 140px;
}

.info-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 40px;
}

.hero h1 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.hero .subtitle {
  color: rgba(10, 10, 10, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}

.load-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 10px 16px;

  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */

  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #0a0a0a;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s ease;
  position: relative;
  z-index: 99;
}

.load-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

.coin-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.coin {
  position: absolute;
  width: 64px;
  height: 64px;
  animation: floatY 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: auto;
}
@keyframes floatY {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.coin-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  filter: blur(2.5px) brightness(0.95);
  opacity: 0.9;
}
.coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.label {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(15, 20, 27, 0.9);
  border: 1px solid var(--ring);
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.label .name {
  opacity: 0.85;
  margin-right: 8px;
}
.label .chg.up {
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.label .chg.down {
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.coin:hover {
  z-index: 3;
}
.coin:hover .coin-inner {
  filter: blur(0) brightness(1);
  transform: rotate(10deg) scale(1.2);
  opacity: 1;
}
.coin:hover .label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 60%),
    radial-gradient(40% 40% at 20% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(40% 40% at 80% 0%, rgba(34, 197, 94, 0.18), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}

/* crypto-change */

.shell-wrapper {
  border-radius: 28px;
  border: 1px solid rgba(15, 15, 16, 0.1);
  background: rgba(240, 241, 243, 0.48);
  padding: 12px;
  max-width: 554px;
  margin-bottom: 120px;
  position: relative;
}

.pulse-svg {
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.shell {
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #f9f9f9;

  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.shell .title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
  margin-bottom: 18px;
}

.shell-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 10px;
}

.shell .panel {
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 10, 0.04);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
}

.shell .panel .amount-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shell .panel p {
  color: rgba(10, 10, 10, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.shell .panel p.total {
  color: rgba(10, 10, 10, 0.9);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.shell .panel p.total span {
  font-weight: 400;
}

.shell .panel p.bonus {
  color: #62a430;
  font-weight: 700;
}

.shell .panel p.bonus span {
  font-weight: 400;
}

.shell .amount-wrap input {
  border: none;
  color: #0a0a0a;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;
  max-width: 260px;

  outline: none;
}

.dong-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;

  border-radius: 14px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
}

.swap-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: var(--stroke-weight-1, 1px) solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  cursor: pointer;

  margin-top: -28px;
  margin-bottom: -16px;
  position: relative;
  z-index: 2;
}

.started-btn {
  border-radius: 8px;
  background: #0a0a0a;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;

  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
  transition: all 0.2s ease;
}

.started-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

.dong-label p {
  color: #535353;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.trusted-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  max-width: 1152px;
  width: 100%;
}

.trusted-wrapper .info {
  max-width: 466px;
}

.info p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
  margin-bottom: 32px;
}

.info .title {
  font-size: 40px;
  color: #0a0a0a;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
  margin-bottom: 224px;
}

.info .trade-label {
  padding: 10px 12px;
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;

  color: #0a0a0a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  width: fit-content;
}

.trusted-wrapper .blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 564px;
}

.blocks .wrapper {
  display: flex;
  gap: 10px;
}

.blocks .wrapper .item {
  width: 50%;
}

.blocks .item {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #f9f9f9;
  padding: 28px;
}

.blocks .item p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
}

.blocks .wrapper .item p {
  margin-bottom: 45px;
}

.blocks .wrapper .item .num {
  color: #0a0a0a;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;

  margin-bottom: 0;
}

.trade {
  padding-bottom: 120px;
}

.trade .container {
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trade .wrapper {
  display: flex;
  gap: 28px;
  position: relative;
  width: 100%;
  height: 468px;
}

.trade .wrapper .item {
  width: 49%;
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: rgba(240, 241, 243, 0.48);
  padding: 11px;
  height: 100%;
  max-height: 468px;
  transition: all 0.3s ease;
}

.trade .wrapper .item.left {
  margin-right: 14px;
}

@media (min-width: 768px) {
  .trade .wrapper .item.left:hover {
    position: absolute;
    z-index: 99;
    width: 70%;
    height: 520px;
    max-height: 520px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

.trade .wrapper .item.right {
  position: absolute;
  right: 0;
  margin-left: 14px;
}

@media (min-width: 768px) {
  .trade .wrapper .item.right:hover {
    z-index: 99;
    width: 70%;
    height: 520px;
    max-height: 520px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

.trade .inner {
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.02), 0 1px 1px -0.5px rgba(15, 15, 16, 0.02),
    0 3px 3px -1.5px rgba(15, 15, 16, 0.02), 0 6px 6px -3px rgba(15, 15, 16, 0.02),
    0 12px 12px -6px rgba(15, 15, 16, 0.02), 0 24px 24px -12px rgba(15, 15, 16, 0.02),
    0 32px 32px -16px rgba(15, 15, 16, 0.02), 0 44px 44px -16px rgba(15, 15, 16, 0.02),
    0 -0.5px 1px 0 rgba(15, 15, 16, 0.02) inset;
  transition: all 0.3s ease;
}

.trade .item .text {
  padding: 32px;
}

.trade .text p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
  min-height: 72px;
}

.trade .text .title {
  color: #0a0a0a;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px; /* 150% */
  letter-spacing: -0.18px;
  min-height: auto;
  margin-bottom: 12px;
}

.item .card-1 .wrap::before {
  content: "";
  width: 100%;
  height: 79px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
}

.item .card-1 .wrap::after {
  content: "";
  width: 100%;
  height: 112px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  position: absolute;
  bottom: 0;
}

.exchanged {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.exchanged p {
  color: #000;
  font-size: 19.44px;
  font-style: normal;
  font-weight: 700;
  line-height: 30.24px; /* 155.556% */
}

.item .img-block {
  width: 100%;
  height: 267px;
  border-radius: 0 0 18px 18px;
}

.item .img-block .img-3 {
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.globe-wrap {
  position: relative;
}

.btn-first {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  border-radius: 50%;
  border: 1px solid #eaecf0;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.item .img-block.card-1 .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}

.item .img-block.card-1 .wrap .btn-first,
.item .img-block.card-1 .wrap .btn-shadow {
  position: absolute;
  left: 50%;
  top: 27%;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s ease, opacity 0.5s ease;
}

.item .img-block.card-1 .wrap .btn-shadow {
  top: 18%;
  opacity: 0;
}

.item .img-block .wrap img {
  width: auto;
}

.item .img-block .wrap .exchanged {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.item .img-block .wrap .exchanged p {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.trade .wrapper .item.left .wrap.phase-1 .btn-first {
  transform: translateX(-50%) rotate(-180deg);

  opacity: 1;
}
.trade .wrapper .item.left .wrap.phase-1 .btn-shadow {
  opacity: 1;
}

.trade .wrapper .item.left .wrap.phase-2 .btn-first {
  transform: translateX(-50%) rotate(-360deg);
}
.trade .wrapper .item.left .wrap.phase-2 .btn-shadow {
  opacity: 0;
}

.trade .wrapper .item.left .wrap.phase-3 .top-block,
.trade .wrapper .item.left .wrap.phase-3 .bottom-block,
.trade .wrapper .item.left .wrap.phase-3 .btn-first,
.trade .wrapper .item.left .wrap.phase-3 .btn-shadow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trade .wrapper .item.left .wrap.phase-3 .exchanged {
  opacity: 1;
}

.trade .wrapper .item.left .wrap.phase-3 .exchanged p {
  animation: typingText 0.6s steps(30, end) forwards;
}

@keyframes typingText {
  from {
    max-width: 0;
  }
  to {
    max-width: 20em;
  }
}

.card-2 {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}

.card-2::before {
  content: "";
  width: 267px;
  height: 112px;
  transform: rotate(90deg);
  position: absolute;
  left: -78px;
  bottom: 76px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 99;
}

.card-2::after {
  content: "";
  width: 267px;
  height: 112px;
  transform: rotate(-90deg);
  position: absolute;
  right: -78px;
  bottom: 76px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 99;
}

.card-2 .wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-2 {
  overflow: hidden;
  position: relative;
}

.card-2 .row {
  display: flex;
  gap: 6px;
  width: max-content;
  flex-shrink: 0;
}

.card-2 .row-1 {
  margin-left: -50px;
}

.card-2 .row-2 {
  margin-left: -510px;
}

.card-2 .row-3 {
  margin-left: -150px;
}

.card-2 .row-4 {
  margin-left: -750px;
}

.item .card-2 .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: auto;
}

.item .card-2 .wrapper:nth-child(3) {
  max-width: 50px;
}

.item .card-2 .transfer {
  padding: 10px;
  border-radius: 999px;
  border: 1px solid #eaecf0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 280px;
}

.item .card-2 .transfer img {
  margin-right: 8px;
}

.item .card-2 .transfer .title {
  color: #535353;
  font-size: 12.298px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.13px; /* 155.556% */
}

.item .card-2 .transfer .wallet,
.transfer .time {
  color: #535353;
  color: #b1b4bb;
  font-size: 10.105px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.72px; /* 155.556% */
}

.item .card-2 .transfer .sum {
  color: #535353;
  font-size: 12.298px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.13px; /* 155.556% */
}

.card-2 .row {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content; /* важливо для marquee */
  flex-shrink: 0;
  will-change: transform;
}

.card-2 .row-1,
.card-2 .row-3 {
  animation: marquee-left 100s linear infinite;
  animation-play-state: paused;
}

.card-2 .row-2,
.card-2 .row-4 {
  animation: marquee-right 100s linear infinite;
  animation-play-state: paused;
}

.trade .wrapper .item.right:hover .card-2 .row {
  animation-play-state: running;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.planet {
  width: 260px;
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.5s ease;
}
.planet.hovered {
  transform: scale(1.4);
}

.item-download {
  display: flex;
  justify-content: center;
}

.card-4 {
  display: flex;
  justify-content: center;
}

.card-4 .img-wrap {
  position: relative;
  display: inline-block;
}

.card-4 .img-wrap svg {
  display: block;
}

.card-4 .blue-btn {
  width: 40px;
  height: 15px;
  border-radius: 9999px;
  background: #4d90f9;
  position: absolute;
  top: 108px;
  left: 90px;

  opacity: 1;
  box-shadow: none;
  transform: translateY(0);
}

@keyframes blue-press-bounce {
  0% {
    transform: translateY(0);
    box-shadow: none;
  }
  40% {
    transform: translateY(3px);
    box-shadow: 0 4px 14px 0 rgba(31, 72, 241, 0.6);
  }
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
}

.card-4 .blue-btn.animating {
  animation: blue-press-bounce 1.5s ease-in-out 0.5s forwards;
}

.card-4 .img-wrap svg,
.card-4 .img-wrap .blue-btn {
  transition: opacity 0.3s ease;
}

.card-4 .img-wrap.step-2 svg,
.card-4 .img-wrap.step-2 .blue-btn {
  opacity: 0;
}

/* DOWNLOAD BTN */

.card-4 .download-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  width: 520px;
  height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;

  color: #126b42;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;

  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #cecece;
  box-shadow: 0 128px 88px 0 rgba(0, 0, 0, 0.1), 0 83px 48px 0 rgba(0, 0, 0, 0.05),
    0 30px 48px 0 rgba(16, 41, 50, 0.25), 0 6px 24px 0 rgba(101, 102, 116, 0.25);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.35s ease, transform 0.35s ease;

  overflow: hidden;
}

.card-4 .download-btn span {
  position: relative;
  z-index: 1;
}

.card-4 .img-wrap.step-2 .download-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.card-4 .download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(270deg, #91ff0a 0%, #5dff7b 100%);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}

.card-4 .download-btn.loading::before {
  opacity: 1;
  transform: scaleX(1);
  transition: transform 2s ease, opacity 0.2s ease;
}

.item .card-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-5 .currencies {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.card-5 .currencies .line {
  width: 1px;
  height: 6px;
  background: #f5f5f5;
}

.card-5 .currencies p {
  color: #535353;
  font-size: 10.851px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.88px; /* 155.556% */
}

.card-5 .move {
  display: flex;
  width: 272px;
  height: 35px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  gap: 1px;
  margin-bottom: 4px;

  border-radius: 10px;
  background: #f5f5f5;
  position: relative;
  box-sizing: border-box;
}

.card-5 .move::before {
  content: "";
  display: flex;
  width: 129px;
  height: 28px;
  box-sizing: border-box;
  padding: 4px 0;
  border-radius: 8px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 3px;
  /* transition: all 3s ease; */
}

.card-5 .move div {
  width: 50%;
  color: #535353;
  text-align: center;
  font-size: 12.918px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.095px; /* 155.556% */
  position: relative;
  z-index: 9;
}

.card-5 .move div.buy {
  font-weight: 600;
}

.card-5 .img-wrap {
  position: relative;
}

.card-5 .img-wrap .ether {
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: auto;
}

.card-5 .img-wrap .bin {
  position: absolute;
  left: 92px;
  bottom: 20px;
  width: auto;
}

.card-5 .buy-btn {
  display: flex;
  width: 40px;
  height: 22px;
  /* padding: 10px; */
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  flex-shrink: 0;

  position: absolute;
  right: 34px;
  bottom: 20px;
}

.card-5 .buy-btn span {
  border-radius: 6px;
  background: #000;

  color: #fff;
  font-size: 11.833px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.408px; /* 155.556% */
}

.trade .wrapper .item.left:hover .card-5 .move::before {
  animation: toggleSlide 4s ease-in-out infinite;
}

.trade .wrapper .item.left:hover .card-5 .move div.buy {
  animation: buyWeight 4s ease-in-out infinite;
}
.trade .wrapper .item.left:hover .card-5 .move div.sell {
  animation: sellWeight 4s ease-in-out infinite;
}

@keyframes toggleSlide {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(135px);
  }
  50% {
    transform: translateX(135px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes buyWeight {
  0%,
  25%,
  100% {
    font-weight: 600;
  }
  35%,
  60% {
    font-weight: 400;
  }
}

@keyframes sellWeight {
  0%,
  25%,
  100% {
    font-weight: 400;
  }
  35%,
  60% {
    font-weight: 600;
  }
}

.buy-btn {
  position: absolute;
  right: 34px;
  bottom: 20px;
  overflow: hidden;
}

.buy-label,
.sell-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s ease;
}

.buy-btn .buy-label {
  opacity: 1;
  display: block;
  background: #000;
  border-radius: 6px;
}

.buy-btn .sell-label {
  opacity: 0;
  display: block;
  background: #000;
  border-radius: 6px;
}

.trade .wrapper .item.left:hover .card-5 .buy-btn {
  animation: btnSwap 4s ease-in-out infinite;
}

@keyframes btnSwap {
  0%,
  25%,
  100% {
    --buyOpacity: 1;
    --sellOpacity: 0;
  }

  35%,
  60% {
    --buyOpacity: 0;
    --sellOpacity: 1;
  }
}

.buy-btn .buy-label {
  opacity: var(--buyOpacity);
}
.buy-btn .sell-label {
  opacity: var(--sellOpacity);
}

.item .img-6 {
  position: relative;
  overflow-x: hidden;
}

.card-6 .coins {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 267px;
}

.card-6 .btc,
.card-6 .trc {
  position: absolute;
  top: 40px;
  width: 200px;
  transition: transform 2s ease, opacity 0.4s ease, z-index 0.2s ease;
}

.card-6 .btc {
  left: 50%;
  transform: translateX(-75%);
  z-index: 1;
}

.card-6 .trc {
  left: 50%;
  transform: translateX(-28%);
  z-index: 2;
}

.card-6 .shedule {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;

  clip-path: inset(0 100% 0 0);
  width: auto;
}

.img-6.phase-1 .btc {
  transform: translateX(-28%);
  z-index: 3;
}

.img-6.phase-1 .trc {
  transform: translateX(-75%);
  z-index: 1;
}

.img-6.phase-2 .coins,
.img-6.phase-2 .btc,
.img-6.phase-2 .trc {
  opacity: 0;
}

.img-6.phase-3 .shedule {
  animation: shedule-reveal 1.2s ease forwards;
}

@keyframes shedule-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  40% {
    opacity: 1;
    clip-path: inset(0 60% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.note .container {
  max-width: 1472px;
}

img {
  width: 100%;
}

/* faq */

:root {
  --faq-speed: 280ms;
}

.faq {
  padding: 120px 0 140px 0;
}

.faq .container {
  max-width: 1184px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
}

.faq .text {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);
  width: fit-content;
}

.faq-label p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  line-height: 19.6px;
}

.faq p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.faq .title {
  color: #0a0a0a;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
}

.faq-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  background: #fff;
  overflow: hidden;
}
.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-family: "Inter", sans-serif;
  color: #0a0a0a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}
.faq-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--faq-bd);
  border-radius: 8px;
  transition: transform var(--faq-speed) ease, background var(--faq-speed) ease;
  background: #fff;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--faq-speed) ease;
}

.faq-item[open] .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  color: #3f3f46;
}

.faq-panel-inner p {
  padding: 0px 36px 20px 0px;

  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}

footer {
  padding: 80px 0;
  background: #f7f7f7;
}

footer .container {
  max-width: 1392px;
}

footer .wrapper {
  padding: 32px;
  border-radius: 16px;
  border: 1px dashed rgba(10, 10, 10, 0.16);
}

footer .wrapper div {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

footer .copy {
  color: rgba(10, 10, 10, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
}

footer .info {
  max-width: 930px;

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.footer-logo {
  max-height: 42px;
  width: auto;
}

.cs {
  position: relative;
  width: 220px;
  font-family: inherit;
}
.cs-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.cs-button img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.cs-button .cs-symbol {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.cs-button .cs-caret {
  margin-left: auto;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
  opacity: 0.6;
}
.cs.open .cs-button .cs-caret {
  transform: rotate(180deg);
}
.cs-list {
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 6px;
  width: fit-content;
  display: none;
}
.cs.open .cs-list {
  display: block;
}
.cs-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.cs-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.cs-option .cs-symbol {
  font-weight: 600;
}
.cs-option .cs-name {
  color: rgba(10, 10, 10, 0.55);
  font-size: 12px;
}
.cs-option:hover {
  background: #f3f4f6;
}

#crypto {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

.mobile {
  display: none;
}

.toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .desk {
    display: none !important;
  }

  header .menu {
    display: none;
  }

  header .menu.visible {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 46px;
    width: 100%;
    height: calc(100vh - 80px);
    justify-content: start;
    padding: 40px;
    gap: 20px;
    background: #fff;
    z-index: 5;
  }

  header .menu li a {
    font-size: 20px;
    font-weight: 500;
  }

  .start-btn {
    font-size: 20px;
  }

  header .logo {
    display: flex;
  }

  .no-scroll {
    overflow: hidden;
  }

  .toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    background: #fff;
    box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  }

  .toggle-btn span {
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.2s ease;
  }

  .toggle-btn.toggled span:first-child {
    transform: rotate(-45deg);
    margin-bottom: -3px;
  }

  .toggle-btn.toggled span:nth-child(2) {
    display: none;
  }

  .toggle-btn.toggled span:nth-child(3) {
    transform: rotate(45deg);
    margin-top: -3px;
  }

  .hero {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 80px;
  }

  .hero .container {
    padding: 40px 10px;
  }

  .hero h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.9px;
    margin-bottom: 20px;
  }

  .hero .content {
    margin-bottom: 120px;
    position: relative;
    z-index: 99;
  }

  .pulse-svg {
    position: absolute;
    top: -175px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }

  .shell-wrapper {
    padding: 8px;
    max-width: 554px;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
  }

  .shell {
    padding: 12px;
  }

  .shell .title {
    font-size: 24px;
    line-height: 28px;
  }

  .shell .panel {
    flex-direction: column;
    padding: 28px 10px;
    gap: 10px;
  }

  .shell .amount-wrap input {
    font-size: 24px;
    line-height: 28px;
  }

  .cs {
    width: 100%;
  }

  .coin {
    display: none;
  }

  .trusted-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .trusted-wrapper .blocks {
    min-width: auto;
  }

  .info .title {
    font-size: 32px;
    color: #0a0a0a;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.799px;
    margin-bottom: 32px;
  }

  .blocks .item {
    padding: 12px;
  }

  .blocks .wrapper {
    flex-direction: column;
  }

  .blocks .wrapper .item {
    width: 100%;
  }

  .blocks .wrapper .item p {
    margin-bottom: 24px;
  }

  .blocks .wrapper .item .num {
    font-size: 24px;
    line-height: 28px;
  }

  .trade {
    padding-bottom: 80px;
  }

  .trade .wrapper {
    flex-direction: column;
  }

  .trade .wrapper .item {
    width: 100%;
  }

  .trade .item .text {
    padding: 12px;
  }

  .item .img-block {
    width: 100%;
    height: 180px;
  }

  .faq {
    padding: 60px 0 80px 0;
  }

  .faq .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .faq .title {
    font-size: 32px;
    line-height: 38px;
  }

  footer {
    padding: 40px 0;
    background: #f7f7f7;
  }

  footer .wrapper {
    padding: 12px;
    flex-direction: column;
    gap: 40px;
  }

  footer .wrapper div {
    gap: 20px;
  }

  .trade .wrapper .item.right,
  .trade .wrapper .item.left {
    position: relative !important;
  }

  .trade .wrapper .item.left {
    margin-right: 0;
  }

  .trade .wrapper .item.right {
    margin-left: 0;
  }

  .trade .wrapper {
    height: auto;
  }
}
