body.spx-landing-page {
  background: #050816;
  color: #fff;
}

body.spx-landing-page .global-wrapper {
  background: #050816;
}

body.spx-landing-page a {
  text-decoration: none;
}

body.spx-landing-page .header {
  z-index: 120;
}

.spx-landing-header {
  left: 0;
  position: fixed;
  top: 24px;
  width: 100%;
  z-index: 120;
}

.spx-landing-header .container {
  box-sizing: border-box;
  max-width: 1205px;
  padding-left: 0;
  padding-right: 0;
  width: calc(100% - 32px);
}

.spx-landing-header__inner {
  align-items: center;
  background: #020615;
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  padding: 0 32px;
}

.spx-landing-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 24px;
}

.spx-landing-brand__logo {
  display: block;
  height: 24px;
  min-width: 137px;
  width: 137px;
}

.spx-landing-nav {
  align-items: center;
  display: none;
}

.spx-landing-nav__list {
  align-items: center;
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spx-landing-nav__list > .menu-item {
  position: relative;
}

.spx-landing-nav__list > .menu-item > a {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  line-height: 1.2;
  position: relative;
}

.spx-landing-nav__list > .menu-item > a:visited {
  color: #8bda30;
}

.spx-landing-nav__list > .menu-item:hover > a,
.spx-landing-nav__list > .menu-item:focus-within > a {
  color: #8bda30;
}

.spx-landing-nav__list > .menu-item-has-children > a::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  display: inline-block;
  height: 6px;
  margin-top: -3px;
  opacity: 0.9;
  transform: rotate(45deg);
  width: 6px;
}

.spx-landing-nav .sub-menu {
  background: #020615;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  left: -16px;
  list-style: none;
  margin: 0;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 18px);
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.spx-landing-nav .sub-menu::before {
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  right: 0;
  top: -20px;
}

.spx-landing-nav .menu-item:hover > .sub-menu,
.spx-landing-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.spx-landing-nav .sub-menu a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  display: block;
  font-family: Lato, sans-serif;
  font-size: 14px;
  padding: 9px 12px;
  white-space: nowrap;
}

.spx-landing-nav .sub-menu a:visited {
  color: rgba(255, 255, 255, 0.88);
}

.spx-landing-nav .sub-menu a:hover,
.spx-landing-nav .sub-menu a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #8bda30;
}

.spx-landing-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spx-landing-mobile-nav .menu-item > a {
  color: #fff;
  display: block;
  font-family: Lato, sans-serif;
  font-size: 18px;
  padding: 12px 0;
}

.spx-landing-mobile-nav .menu-item > a:visited {
  color: #8bda30;
}

.spx-landing-mobile-nav .menu-item-has-children > a {
  padding-right: 32px;
  position: relative;
}

.spx-landing-mobile-nav .menu-item-has-children > a::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  right: 4px;
  top: 18px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  width: 7px;
}

.spx-landing-mobile-nav .menu-item-has-children.is-submenu-open > a::after {
  transform: rotate(225deg);
}

.spx-landing-mobile-nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0 0 4px;
  padding: 0 0 0 16px;
}

.spx-landing-mobile-nav .is-submenu-open > .sub-menu {
  display: block;
}

.spx-landing-mobile-nav .sub-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  padding: 9px 0;
}

.spx-landing-mobile-nav .sub-menu a:visited {
  color: rgba(255, 255, 255, 0.72);
}

.spx-landing-actions {
  display: none;
  align-items: center;
  background: rgba(3, 6, 20, 0.98);
  border: 1px solid rgba(95, 95, 95, 0.18);
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  height: 42px;
  min-height: 42px;
  position: relative;
  padding: 0;
  width: 240px;
}

.spx-landing-actions__registration {
  align-items: center;
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  height: 100%;
  width: 134px;
  white-space: nowrap;
}

.spx-landing-actions__login {
  align-items: center;
  background: #8bda30;
  color: #08111b;
  border: 1px solid rgba(95, 95, 95, 0.18);
  border-radius: 58px;
  box-shadow: none;
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  height: 42px;
  min-height: 42px;
  min-width: 106px;
  padding: 0 20px;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.spx-landing-actions__login:hover {
  transform: translateY(-50%);
}

.spx-landing-burger {
  align-items: center;
  border: 0;
  display: flex;
  height: 22px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 26px;
}

.spx-landing-burger span,
.spx-landing-burger:before,
.spx-landing-burger:after {
  background: #fff;
  border-radius: 9999px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease,
    bottom 0.25s ease;
  width: 100%;
}

.spx-landing-burger span {
  top: 10px;
}

.spx-landing-burger:before {
  top: 0;
}

.spx-landing-burger:after {
  bottom: 0;
}

.spx-landing-burger.active-burger span {
  opacity: 0;
}

.spx-landing-burger.active-burger:before {
  top: 10px;
  transform: rotate(45deg);
}

.spx-landing-burger.active-burger:after {
  bottom: 10px;
  transform: rotate(-45deg);
}

.spx-landing-mobile-menu {
  left: 100%;
  background: #040712;
  min-height: 100dvh;
  padding-top: 100px;
}

.spx-landing-mobile-menu.mobile-menu-active {
  left: 0;
}

.spx-landing-mobile-menu__panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 4px;
}

.spx-landing-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spx-landing-mobile-nav__link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
}

.spx-landing-mobile-nav__link:hover {
  color: #8bda30;
}

.spx-landing-mobile-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spx-landing-button--mobile {
  min-height: 48px;
  padding: 0 16px;
}

.spx-hero {
  background-color: #050816;
  background-image: url("../img/spx-hero-background.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  min-height: 100svh;
  overflow: hidden;
  min-height: 973px;
  padding: 0;
  position: relative;
}

.spx-hero__container {
  min-height: 973px;
  position: relative;
  z-index: 1;
}

.spx-hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 973px;
  padding: 352px 0 80px;
  text-align: center;
}

.spx-hero__title {
  font-family: Chivo, sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 900px;
}

.spx-hero__title span {
  color: #8bda30;
}

.spx-hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 620px;
}

.spx-hero__actions {
  display: flex;
  filter: drop-shadow(0 18px 18px rgba(139, 218, 48, 0.22));
  justify-content: center;
  margin-top: 57px;
  transition: filter 0.28s ease;
}

.spx-hero__button {
  align-items: center;
  background: #8bda30;
  border-radius: 9999px;
  box-shadow: none;
  color: #08111b;
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  min-height: 58px;
  min-width: 184px;
  padding: 0 36px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

/* Clean background-reveal CTA treatment with no layout changes. */
.theme-btn,
.spx-landing-actions__registration,
.spx-landing-actions__login,
.spx-landing-button--mobile {
  clip-path: inset(0 round 9999px);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.28s ease,
    color 0.32s ease;
}


.spx-landing-actions__registration:visited,
.spx-landing-actions__registration:focus,
.spx-landing-actions__registration:active,
.spx-landing-button--ghost:visited,
.spx-landing-button--ghost:focus,
.spx-landing-button--ghost:active {
  color: #8bda30;
}

.theme-btn > span,
.spx-landing-actions__registration > span,
.spx-landing-actions__login > span,
.spx-landing-button--mobile > span {
  position: relative;
  z-index: 1;
}

.theme-btn::before,
.spx-landing-actions__registration::before,
.spx-landing-actions__login::before,
.spx-landing-button--mobile::before {
  border-radius: inherit;
  content: "";
  inset: -4px;
  pointer-events: none;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.42s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.theme-btn::before,
.spx-landing-actions__login::before,
.spx-landing-button--primary::before {
  background-color: #111827;
}

.spx-landing-actions__registration::before,
.spx-landing-button--ghost::before {
  background-color: #8bda30;
}

@media (hover: hover) and (pointer: fine) {
  .theme-btn:hover,
  .spx-landing-actions__login:hover,
  .spx-landing-button--primary:hover {
    color: #fff;
  }

  .spx-hero__actions:has(.theme-btn:hover) {
    filter: drop-shadow(0 0 0 transparent);
  }

  .spx-landing-actions__registration:hover,
  .spx-landing-button--ghost:hover {
    color: #08111b;
  }

  .theme-btn:hover::before,
  .spx-landing-actions__registration:hover::before,
  .spx-landing-actions__login:hover::before,
  .spx-landing-button--mobile:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.theme-btn:focus-visible,
.spx-landing-actions__registration:focus-visible,
.spx-landing-actions__login:focus-visible,
.spx-landing-button--mobile:focus-visible {
  outline: 2px solid #8bda30;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .theme-btn,
  .spx-landing-actions__registration,
  .spx-landing-actions__login,
  .spx-landing-button--mobile,
  .theme-btn::before,
  .spx-landing-actions__registration::before,
  .spx-landing-actions__login::before,
  .spx-landing-button--mobile::before {
    transition-duration: 0.01ms;
  }
}

.benefits,
.markets,
.why,
.big-links,
.cta {
  scroll-margin-top: 120px;
}

/* Homepage feature section */
.feature {
  background: #fff;
  color: #070813;
  padding: 68px 0 72px;
}

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

.feature__title {
  font-family: Chivo, sans-serif;
  font-size: clamp(38px, 4.1vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
  max-width: 650px;
}

.feature__grid {
  display: grid;
  gap: 48px;
  margin-top: 68px;
}

.feature__cards {
  display: grid;
  gap: 28px 33px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  padding: 27px 23px 25px;
}

.feature-card--empty {
  background: linear-gradient(228.75deg, rgba(234, 239, 255, 0.62) 14.22%, rgba(255, 255, 255, 0) 70.97%);
  border-color: transparent;
  display: none;
}

.feature-card__icon {
  height: 40px;
  width: 40px;
}

.feature-card__body {
  max-width: 238px;
}

.feature-card__title,
.support-card__title {
  font-family: Chivo, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 0.96;
  margin: 0;
}

.feature-card__text,
.support-card__text {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 17px 0 0;
}

.feature-card__text {
  color: #777a81;
}

.support-card {
  background: #111c60;
  border: 1px solid #dedede;
  border-radius: 24px;
  color: #fff;
  display: flex;
  min-height: 498px;
  overflow: hidden;
  padding: 0 24px 25px;
  position: relative;
}

.support-card__layers {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.support-card__layer {
  height: auto;
  left: 50%;
  max-width: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  will-change: transform;
}

.support-card__layer--top {
  animation: spx-feature-shape-float 7s ease-in-out infinite;
  top: 34px;
}

.support-card__layer--middle {
  animation: spx-feature-shape-float 7s ease-in-out -2.1s infinite;
  top: 119px;
}

.support-card__layer--bottom {
  animation: spx-feature-shape-float 7s ease-in-out -4.2s infinite;
  top: 229px;
}

.support-card__body {
  align-self: flex-end;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.support-card__text {
  color: #fff;
  margin-top: 17px;
}

@keyframes spx-feature-shape-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -8px);
  }
}

@media (min-width: 1000px) {
  .feature {
    padding: 94px 0 91px;
  }

  .feature__wrap {
    padding: 0;
  }

  .feature__grid {
    grid-template-columns: 600px 482px;
  }

  .feature-card--empty {
    display: flex;
  }
}

@media (max-width: 999px) {
  .feature__title br {
    display: block;
  }

  .feature__grid {
    gap: 28px 33px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .feature__cards {
    display: contents;
  }

  .support-card {
    border-radius: 16px;
    min-height: 235px;
  }

  .support-card__layer--top {
    top: 10px;
  }

  .support-card__layer--middle {
    top: 62px;
  }

  .support-card__layer--bottom {
    top: 124px;
  }

  .support-card__body {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .feature {
    padding: 64px 0;
  }

  .feature__title {
    font-size: 34px;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .feature__cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature__grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--empty {
    min-height: 220px;
  }

  .support-card {
    border-radius: 18px;
    min-height: 430px;
  }

  .support-card__layer--top {
    top: 30px;
  }

  .support-card__layer--middle {
    top: 112px;
  }

  .support-card__layer--bottom {
    top: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-card__layer {
    animation: none;
  }
}

/* One-stop markets section */
.one-stop {
  background: #fff;
  padding: 40px 0 48px;
}

.one-stop__wrap {
  display: grid;
  gap: 36px;
  margin: 0 auto;
  max-width: 1360px;
  padding: 0 16px;
}

.one-card,
.market-card {
  border-radius: 24px;
  min-height: 824px;
  overflow: hidden;
  position: relative;
}

.one-card {
  background-color: #17246f;
  background-image: var(--one-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
}

.one-card::before {
  backdrop-filter: blur(2px);
  background: rgba(12, 24, 98, 0.28);
  content: "";
  inset: 0;
  position: absolute;
}

.one-card__body {
  align-self: center;
  padding: 24px 70px 20px 114px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.one-card__title {
  font-family: Chivo, sans-serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
}

.one-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  margin: 36px 0 0;
  max-width: 510px;
}

.one-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
}

.one-card__item {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  font-family: Lato, sans-serif;
  font-size: 16px;
  gap: 24px;
  line-height: 1.4;
  min-height: 59px;
}

.one-card__item img {
  flex: 0 0 auto;
  height: 23px;
  width: 21px;
}

.one-card__btn {
  align-items: center;
  background: #8bda30;
  border-radius: 9999px;
  color: #07100e;
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  margin-top: 50px;
  min-height: 59px;
  min-width: 158px;
  padding: 0 28px;
}

.market-card {
  background: #e7e7e7;
}

.market-card__photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.market-stat {
  animation: market-stat-float 4s ease-in-out infinite;
  background: #fff;
  border-radius: 16px;
  bottom: 54px;
  color: #090b12;
  min-height: 180px;
  padding: 26px 31px 22px;
  position: absolute;
  right: 53px;
  width: 253px;
  z-index: 1;
}

.market-stat__title {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.market-stat__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 13px;
}

.market-stat__bar {
  background: #f1f3fb;
  border-radius: 6px;
  display: block;
  height: 17px;
  overflow: hidden;
  position: relative;
  width: var(--value);
}

.market-stat__bar::after {
  background: linear-gradient(90deg, #eef2ff, #e4e9fb);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.market-stat.is-active .market-stat__bar::after {
  transform: scaleX(1);
}

.market-stat__foot {
  align-items: center;
  display: flex;
  font-family: Lato, sans-serif;
  font-size: 16px;
  justify-content: space-between;
  margin-top: 30px;
}

.market-stat__foot strong {
  font-weight: 700;
}

.market-stat__profit {
  background: #efffdf;
  border-radius: 9999px;
  color: #8bda30;
  font-weight: 700;
  min-width: 89px;
  padding: 7px 10px;
  text-align: center;
}

@keyframes market-stat-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 1200px) {
  .one-stop__wrap {
    grid-template-columns: 679px 645px;
    padding: 0;
  }
}

@media (max-width: 1199px) {
  .one-stop__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .one-card,
  .market-card {
    min-height: 680px;
  }

  .one-card__body {
    padding: 48px 40px;
  }

  .one-card__title {
    font-size: 44px;
  }

  .one-card__text {
    margin-top: 28px;
  }

  .one-card__list {
    margin-top: 38px;
  }

  .one-card__btn {
    margin-top: 40px;
  }

  .market-stat {
    bottom: 32px;
    right: 24px;
    width: 230px;
  }
}

@media (max-width: 899px) {
  .one-stop__wrap {
    grid-template-columns: 1fr;
  }

  .one-card,
  .market-card {
    min-height: 680px;
  }

  .one-card__body {
    padding: 64px;
  }

  .market-stat {
    right: 40px;
    width: 253px;
  }
}

@media (max-width: 575px) {
  .one-stop {
    padding: 24px 0 40px;
  }

  .one-stop__wrap {
    gap: 20px;
  }

  .one-card,
  .market-card {
    border-radius: 18px;
  }

  .one-card {
    min-height: auto;
  }

  .one-card__body {
    padding: 56px 24px;
  }

  .one-card__title {
    font-size: 40px;
    line-height: 1;
  }

  .one-card__text {
    margin-top: 28px;
  }

  .one-card__list {
    margin-top: 34px;
  }

  .one-card__item {
    gap: 16px;
  }

  .market-card {
    min-height: 560px;
  }

  .market-stat {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-stat {
    animation: none;
  }

  .market-stat__bar::after {
    transition: none;
  }
}

/* Power links and funfacts */
.power {
  background: #0d0d0d;
  color: #fff;
  padding: 92px 0 164px;
}

.power__wrap {
  margin: 0 auto;
  max-width: 1132px;
  padding: 0 16px;
}

.power__title,
.stats-title {
  font-family: Chivo, sans-serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.power__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 76px;
}

.power-link {
  align-items: center;
  background: #121212;
  border: 1px solid #303030;
  border-radius: 24px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 147px;
  padding: 22px 32px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.power-link:hover,
.power-link:focus-visible {
  background: #161616;
  border-color: rgba(139, 218, 48, 0.55);
}

.power-link__body {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

.power-link__body strong {
  font-family: Chivo, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.power-link__body > span {
  color: #858585;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 16px;
}

.power-link__arrow {
  align-items: center;
  display: inline-flex;
  flex: 0 0 24px;
  margin-right: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.power-link__arrow img {
  height: 24px;
  width: 24px;
}

.power-link:hover .power-link__arrow {
  color: #8bda30;
  transform: translateX(5px);
}

.stats-title {
  margin-top: 124px;
  max-width: 680px;
  scroll-margin-top: 120px;
}

.stats {
  display: flex;
  margin-top: 61px;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.stats__dark {
  background: #101010;
  border-radius: 16px 0 0 16px;
  flex: 0 0 826px;
  overflow: hidden;
  position: relative;
}

.stats__pixels {
  display: grid;
  grid-template-columns: repeat(25, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  inset: 0;
  position: absolute;
}

.stats__pixels i {
  background: #121212;
  display: block;
  opacity: 1;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.stats__pixels i:nth-child(4n),
.stats__pixels i:nth-child(11n) {
  background: #1b1b1b;
}

.stats__pixels i:nth-child(7n),
.stats__pixels i:nth-child(13n) {
  background: #151515;
}

.stats.is-active .stats__pixels i {
  animation: stat-pixel-glow var(--speed) ease-in-out var(--delay) infinite;
}

.stats__pixels i:hover {
  animation-play-state: paused;
  background: rgba(139, 218, 48, 0.42) !important;
  box-shadow: inset 0 0 18px rgba(139, 218, 48, 0.2);
}

.stats__pair {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  padding: 0 62px;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat strong {
  font-family: Chivo, sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat span {
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.stats__green {
  align-items: center;
  background: #8bda30;
  border-radius: 0 16px 16px 0;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 10% 76%, 0 76%, 0 63%, 10% 63%, 10% 38%, 0 38%, 0 25%, 10% 25%);
  color: #07100e;
  display: flex;
  flex: 0 0 339px;
  justify-content: center;
  margin-left: -33px;
  position: relative;
  z-index: 2;
}

.stat--dark {
  min-width: 210px;
}

@keyframes stat-pixel-glow {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: inset 0 0 0 rgba(139, 218, 48, 0);
  }

  50% {
    filter: brightness(1.35);
    box-shadow: inset 0 0 16px rgba(139, 218, 48, 0.035);
  }
}

@media (min-width: 1000px) {
  .power__wrap {
    padding: 0;
  }
}

@media (max-width: 999px) {
  .power {
    padding: 80px 0 100px;
  }

  .power__title br,
  .stats-title br {
    display: block;
  }

  .power__title,
  .stats-title {
    font-size: 46px;
  }

  .power-link {
    min-height: 135px;
  }

  .stats {
    flex-direction: column;
    overflow: visible;
  }

  .stats__dark,
  .stats__green {
    flex-basis: auto;
    min-height: 240px;
    width: 100%;
  }

  .stats__dark {
    border-radius: 16px 16px 0 0;
    display: flex;
  }

  .stats__pair {
    min-height: 240px;
    width: 100%;
  }

  .stats__green {
    border-radius: 0 0 16px 16px;
    clip-path: none;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .power {
    padding: 64px 0 80px;
  }

  .power__title,
  .stats-title {
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
  }

  .power__list {
    margin-top: 48px;
  }

  .power-link {
    border-radius: 18px;
    min-height: 0;
    padding: 24px 20px;
  }

  .power-link__body strong {
    font-size: 26px;
  }

  .power-link__body > span {
    font-size: 15px;
    padding-right: 12px;
  }

  .stats-title {
    margin-top: 80px;
  }

  .stats {
    margin-top: 44px;
  }

  .stats__pair {
    gap: 28px;
    padding: 40px 24px;
  }

  .stat strong {
    font-size: 46px;
  }

  .stat span {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats__pixels i,
  .stats.is-active .stats__pixels i {
    animation: none;
    opacity: 1;
  }
}

/* Demo CTA */
.cta {
  background: #0d2267 var(--cta-bg) center / cover no-repeat;
  color: #fff;
  min-height: 448px;
  overflow: hidden;
  position: relative;
}

.cta__wrap {
  display: grid;
  grid-template-columns: 500px 556px;
  height: 448px;
  margin: 0 auto;
  max-width: 1132px;
  position: relative;
}

.cta__copy {
  align-self: center;
  padding-bottom: 2px;
  position: relative;
  z-index: 2;
}

.cta__title {
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.02;
  max-width: 430px;
}

.cta__text {
  color: rgba(255, 255, 255, 0.78);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 430px;
}

.cta__btn {
  align-items: center;
  background: #8bda30;
  border-radius: 999px;
  color: #07100e;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  margin-top: 31px;
  min-height: 59px;
  min-width: 264px;
  padding: 0 32px;
}

.cta__art {
  align-self: end;
  height: 426px;
  justify-self: end;
  mix-blend-mode: lighten;
  width: 556px;
}

.cta__art img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 1199px) {
  .cta__wrap {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    padding: 0 48px;
  }

  .cta__art {
    width: min(100%, 556px);
  }
}

@media (max-width: 999px) {
  .cta,
  .cta__wrap {
    min-height: 680px;
  }

  .cta__wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 330px;
    height: auto;
    padding: 72px 40px 0;
    text-align: center;
  }

  .cta__copy {
    justify-self: center;
  }

  .cta__title,
  .cta__text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta__art {
    height: 330px;
    justify-self: center;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .cta,
  .cta__wrap {
    min-height: 620px;
  }

  .cta__wrap {
    grid-template-rows: auto 280px;
    padding: 64px 20px 0;
  }

  .cta__title {
    font-size: 42px;
    letter-spacing: -0.6px;
  }

  .cta__text {
    font-size: 15px;
    margin-top: 18px;
  }

  .cta__btn {
    margin-top: 26px;
    min-height: 56px;
    min-width: 230px;
  }

  .cta__art {
    height: 280px;
    margin-top: 24px;
    width: 100%;
  }
}

@media (min-width: 1000px) {
  .spx-landing-nav,
  .spx-landing-actions {
    display: flex;
  }

  .spx-landing-burger {
    display: none;
  }

}

@media (max-width: 999px) {
  .spx-landing-header {
    top: 14px;
  }

  .spx-landing-header__inner {
    height: 64px;
    min-height: 64px;
    padding: 0 22px;
  }

  .spx-landing-header .container {
    width: calc(100% - 28px);
  }

  .spx-landing-actions {
    min-height: 86px;
    padding-left: 54px;
    padding-right: 12px;
  }

  .spx-landing-actions__registration {
    font-size: 15px;
    padding-right: 112px;
  }

  .spx-landing-actions__login {
    min-height: 40px;
    min-width: 105px;
    padding: 0 18px;
    right: 10px;
  }

  .spx-hero {
    min-height: 760px;
  }

  .spx-hero__container,
  .spx-hero__content {
    min-height: 760px;
  }

  .spx-hero__title {
    font-size: 48px;
  }

  .spx-hero__subtitle {
    font-size: 16px;
  }

  .spx-hero__content {
    padding: 230px 0 64px;
  }
}

@media (max-width: 575px) {
  .spx-landing-mobile-actions {
    grid-template-columns: 1fr;
  }

  .spx-hero__title {
    font-size: 38px;
  }

  .spx-hero__subtitle {
    font-size: 15px;
  }
}
