.advantages, .promo-banner {
  padding-block: 80px;
  background: #f9f9f9;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.advantages__card {
  position: relative;
  padding: 24px 24px 24px 32px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(0);
  text-align: center;
}

@keyframes advantagesBorderReveal {
  to {
    height: calc(100% - 32px);
    opacity: 1;
  }
}

@keyframes advantagesSpearTip {
  to {
    transform: rotate(45deg) scale(1);
  }
}

.advantages__card-title {
  color: #5271CD;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
}

.advantages__card-text {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/*.advantages__card:nth-child(1)::before,*/
/*.advantages__card:nth-child(1)::after {*/
/*  animation-delay: 0.1s;*/
/*}*/

/*.advantages__card:nth-child(2)::before,*/
/*.advantages__card:nth-child(2)::after {*/
/*  animation-delay: 0.2s;*/
/*}*/

/*.advantages__card:nth-child(3)::before,*/
/*.advantages__card:nth-child(3)::after {*/
/*  animation-delay: 0.3s;*/
/*}*/

/*.advantages__card:nth-child(4)::before,*/
/*.advantages__card:nth-child(4)::after {*/
/*  animation-delay: 0.4s;*/
/*}*/

/*.advantages__card:nth-child(5)::before,*/
/*.advantages__card:nth-child(5)::after {*/
/*  animation-delay: 0.5s;*/
/*}*/

@media (max-width: 1220px) {

  .advantages__grid {
    grid-template-columns:
      repeat(auto-fit, minmax(160px, 192px));

    justify-content: center;
    justify-items: center;
  }

  .advantages__card {
    width: 100%;
    max-width: 192px;
  }
}

@media (max-width: 768px) {

  .advantages, .promo-banner {
    padding-block: 60px;
  }


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

  .advantages__card {
    max-width: 100%;
    text-align: center;
    padding: 22px 20px 22px 20px;
  }

  @keyframes advantagesBorderRevealMobile {
    to {
      width: calc(100% - 32px);
      opacity: 1;
    }
  }

  .advantages__card-title {
    font-size: 40px;
    line-height: 56px;
  }

  .advantages__card-text {
    font-size: 18px;
    line-height: 26px;
  }
}

.promo-banner__slider {
  position: relative;
  overflow: hidden;
}

.promo-banner__slide {
  display: none;
  border-radius: 24px;
  background: linear-gradient(270deg, #000541 -40.33%, #5686FE 138.17%);
  padding-block: 42px;
  padding-inline: 46px;
  position: relative;
  height: 196px;
}

.promo-banner__slide.is-active {
  display: block;
}

.promo-banner__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #263D93 0.03%, rgba(41, 66, 154, 0.90) 40.14%, rgba(41, 66, 154, 0.40) 97.85%);
  pointer-events: none;
}

.promo-banner__slide-inner {
  display: flex;
  gap: 42px;
  position: relative;
  z-index: 1;
}

.promo-banner__slide-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 196px;
  border-radius: 24px;
}

.promo-banner__slide-buttons-slider-wrapper {
  right: 28px;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  position: absolute;
  z-index: 1;
}

.promo-banner__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #6C89C9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.promo-banner__dot.is-active {
  width: 14px;
  height: 14px;
  background: #FFF;
}


.promo-banner__slide-title-text {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(32px, calc(8.74px + 3.14vw), 54px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}

.promo-banner__slide-title-subtext {
  color: #DBE4FF;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.promo-banner__slide-text {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(20px, calc(7.31px + 1.71vw), 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.promo-banner__slide-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #9DB6FF;

  font-family: 'Roboto', sans-serif;
  font-size: clamp(18.564px, calc(8.59px + 1.35vw), 28px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  margin-top: 0;
}

.promo-banner__slide-link:hover {
  color: #9DB6FF;
}

.promo-banner__slide-link::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.promo-banner__slide-link:hover::after {
  transform: scaleX(1);
}

/* =========================
   Promo Banner — Mobile
========================= */
.promo-banner__slide-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

@media (max-width: 768px) {

  .promo-banner__slide {
    padding: 20px;
    padding-bottom: 56px;
    position: relative;
  }

  .promo-banner__slide-inner {
    flex-direction: column;
    gap: 12px;
  }

  .promo-banner__slide-title-subtext,
  .promo-banner__divider {
    display: none;
  }

  .promo-banner__slide-title-text {
    line-height: 40px;
    white-space: normal;
  }

  .promo-banner__slide-text {
    line-height: 120%;
  }

  .promo-banner__slide-link {
    line-height: 120%;
  }


  .promo-banner__slide-buttons-slider-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

/* =========================
   Why Guarda is the Best Crypto Wallet
========================= */

.mo-sub-heading {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  margin-bottom: 48px;
}

.hte-trusted-grid-and-span-last {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.hte-trusted-grid-and-span-last > * {
  grid-column: span 2;
}

.hte-trusted-grid-and-span-last > *:nth-last-child(2),
.hte-trusted-grid-and-span-last > *:last-child {
  grid-column: span 3;
}

/* =========================
   Why Guarda is the Best Crypto Wallet — Mobile
========================= */

@media (max-width: 768px) {

  .hte-trusted-grid-and-span-last {
    grid-template-columns: 1fr;
  }

  .hte-trusted-grid-and-span-last > * {
    grid-column: span 1 !important;
  }

}

/* =========================
   Comparison
========================= */

.comparison {
  padding-block: 80px;
}

.comparison__title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  color: #131313;
  margin-bottom: 40px;
}

.comparison__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #FFFFFF;
  border-radius: 32px;
  /*padding-bottom: 28px;*/
}

.comparison__row:last-child td div {
  padding-bottom: 28px;
}

.comparison__th {
  padding: 16px 24px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  justify-content: end;
  vertical-align: bottom;
  color: #131313;
  font-feature-settings: 'liga' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.comparison__th:first-child,
.comparison__td:first-child {
  width: 15%;
}

.comparison__th:not(:first-child),
.comparison__td:not(:first-child) {
  width: 21.25%;
}


.comparison__th--all {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  flex: 1;
  height: 100%;
  gap: 24px;
}

.comparison__th--guarda-bg {
  background: linear-gradient(180deg, #EBEFFF 0.01%, rgba(233, 237, 253, 0.37) 29.71%, rgba(232, 236, 252, 0.00) 99.99%);
}

/*.comparison__th--others {*/
/*  color: #9E9E9E;*/
/*}*/

/*.comparison__row {*/
/*  border-bottom: 1px solid #F0F0F0;*/
/*}*/

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__td {
  padding: 16px 24px 16px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #131313;
  vertical-align: middle;
}

.comparison__td--feature {
  color: #666;
  font-feature-settings: 'liga' off;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.comparison__td--value {
  text-align: center !important;
  background: transparent;
  margin-inline: auto;
  color: #6E6E80;
  font-feature-settings: 'liga' off;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.comparison__td--value-accent {
  color: #5271CD;
}

.comparison__td--value-wrapper {
  display: flex;
  justify-content: center;
}

.comparison__note {
  color: #9F9FB5;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
}

.comparison__td--value-wrapper--touchpoints {
  display: flex;
  gap: 12px;
}

.comparison__td--value-wrapper--touchpoints-item {
  position: relative;
  color: #5271CD;
}

.comparison__td--value-wrapper--touchpoints-item:hover {
  color: #7190EB;
}

div.comparison__td--value-wrapper--touchpoints-item {
  color: #9F9FB5;
  cursor: default;
}

div.comparison__td--value-wrapper--touchpoints-item:hover {
  color: #9F9FB5;
}


.comparison__td--value-wrapper--touchpoints-item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 16px;
  background: var(--BG-Tooltip, #E8ECFC);
  backdrop-filter: blur(8px);
  color: #000;
  font-family: var(--Typography-Font-Roboto, Roboto), sans-serif;
  font-size: var(--Typography-Size-l, 16px);
  font-weight: 500;
  line-height: var(--Typography-Line-height-m, 24px);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.comparison__td--value-wrapper--touchpoints-item[data-tooltip]::before {
  display: none;
  visibility: hidden;
}

.comparison__td--value-wrapper--touchpoints-item[data-tooltip]:hover::before,
.comparison__td--value-wrapper--touchpoints-item[data-tooltip]:hover::after {
  opacity: 1;
}

/* =========================
   Comparison — Mobile slider
========================= */

.comparison__mobile-slider {
  display: none;
}

@media (max-width: 900px) {

  .comparison__table-wrapper {
    display: none;
  }

  .comparison__mobile-slider {
    display: block;
  }
}

.comparison__mobile-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-top: 32px;
}

.comparison__mobile-cards::-webkit-scrollbar {
  display: none;
}

.comparison__mobile-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #EBEBEB;
}

.comparison__mobile-card--guarda {
  border: 1px solid #5271CD;
  background: linear-gradient(180deg, #EBEFFF 0.01%, rgba(233, 237, 253, 0.37) 29.71%, rgba(232, 236, 252, 0.00) 99.99%), var(--BG-Cards-on-Primary-BG, #FFF);
}

.comparison__mobile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  color: #131313;
  margin-bottom: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.comparison__mobile-card-header img {
  width: 28px;
  height: 28px;
}

.comparison__mobile-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 0;
}

.comparison__mobile-label {
  color: #6E6E80;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.comparison__mobile-value {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.comparison__mobile-value--accent {
  color: #5271CD;
}

.comparison__mobile-indicators {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.comparison__mobile-indicator {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s;
}

.comparison__mobile-indicator--active {
  background: #5271CD;
}

@media (max-width: 768px) {

  .comparison {
    padding-block: 60px;
  }

  .comparison__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .comparison__th,
  .comparison__td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ============================================================
   Non-Custodial Security section
   ============================================================ */

.non-custodial__container {
  margin-left: auto;
}

.non-custodial__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.non-custodial__header-text {
  max-width: 640px;
}

.non-custodial__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.non-custodial__arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #7190eb;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.non-custodial__arrow:hover {
  background: #E8ECFC;
}

.non-custodial__arrow:active {
  background: #5271CD;
  color: #fff;
}

.non-custodial__steps-wrapper {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.non-custodial__steps-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(270deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

.non-custodial__steps {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.non-custodial__steps::-webkit-scrollbar {
  display: none;
}

.non-custodial__steps:active {
  cursor: default;
}

.security-card {
  flex: 0 0 auto;
  width: 420px;
  height: 368px;
  min-width: 16rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid #F4F4F8;
  background: #FFF;
  position: relative;
}

.security-card__body {
  flex: 1;
  padding: 24px;
}

.security-card__title {
  color: #1D1D1D;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}

.security-card__text {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
}

.security-card__image {
  align-self: flex-start;
  margin-top: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.security-card__image img {
  display: block;
  height: auto;
  border-radius: 16px;
  max-width: 339px;
}

/* Indicators — hidden on desktop, shown on mobile */
.non-custodial__indicators {
  display: none;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-inline: 0;
}

.non-custodial__indicator {
  flex: 1;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.non-custodial__indicator--active {
  background: #7190EB;
}

@media (max-width: 31.25rem) {
  .non-custodial__nav {
    display: none;
  }

  .non-custodial__indicators {
    display: flex;
    padding-inline: 1rem;
  }

  .non-custodial__container {
    padding-right: 1.5rem;
  }

  .non-custodial__steps {
    scroll-snap-type: x mandatory;
  }

  .non-custodial__steps-wrapper::after {
    display: none;
  }

  .security-card {
    width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: start;
  }

  .security-card__image img {
    max-width: 270px;
  }
}

/* Reviews section — mobile progress bar indicators */
.reviews__indicators {
  display: none;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-inline: 0;
}

.reviews__indicator {
  flex: 1;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.reviews__indicator--active {
  background: #7190EB;
}

.get-started__steps-wrapper {
  position: relative;
  overflow: hidden;
}

.get-started__steps-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(270deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {


  .home-reviews .get-started__nav {
    display: none;
  }

  .reviews__indicators {
    display: flex;
    padding-inline: 1rem;
  }

  .get-started__steps-wrapper::after {
    display: none;
  }

  .home-reviews .get-started__steps {
    scroll-snap-type: x mandatory;
  }

  .home-reviews .step-card {
    width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: start;
  }
}

@media (min-width: 767px) {
  .right-margin-null {
    margin-right: 0;
    padding-right: 0;
  }
}


.button-hero-styles-button {
  display: flex;
  width: fit-content;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Corner-radius-Button, 8px);
  background: #448AFF;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-inline: auto;
}

.subtext-hero-styles {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #9F9FB5;
  margin-top: 20px;
}

.button-hero-styles-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  color: #FFF;
}

.button-hero-styles-button-get-started-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.button-hero-styles-button-get-started {
  margin-inline: auto;
  margin-top: 48px;
}

/* ============================================================
   How to Buy Crypto — sticky left column
   ============================================================ */

.how-to-buy__track {
  background: #f9f9f9;
}

.how-to-buy {
  padding-block: 80px;
}

.how-to-buy .container {
  width: 100%;
}

.how-to-buy__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.how-to-buy__left {
  position: sticky;
  top: 128px;
}

html:not(.banner-hidden) .how-to-buy__left {
  top: 206px;
}

.how-to-buy__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  margin-bottom: 16px;
}

.how-to-buy__subtext {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  color: #131313;
  margin-bottom: 32px;
}

.how-to-buy__cta {
  margin-inline: 0;
}

/* --- Right column --- */

.how-to-buy__right {
  display: block;
}

.how-to-buy__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-to-buy__card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #F4F4F8;
}

/* --- Card content --- */

.how-to-buy__card-body {
  flex: 1;
  min-width: 0;
}

.how-to-buy__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--BG-Tooltip, #E8ECFC);
  font-family: 'Roboto', sans-serif;
  margin-bottom: 16px;
  color: var(--Text-colors-Text-Accent, #5271CD);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 4px;
}

.how-to-buy__card-title {
  color: #1D1D1D;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 20.92px + 0.77vw, 32px);
  line-height: clamp(32px, 28.92px + 0.77vw, 40px);
  margin-bottom: 8px;
}

.how-to-buy__card-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  color: #131313;
}

.how-to-buy__link {
  color: #5271CD;
  text-decoration: none;
}

.how-to-buy__link:hover {
  text-decoration: underline;
}

.how-to-buy__card-image {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-to-buy__card-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* --- Tablet --- */

@media (max-width: 1024px) {
  .how-to-buy__inner {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .how-to-buy__heading {
    font-size: 32px;
  }
}

/* --- Mobile --- */

@media (max-width: 768px) {
  .how-to-buy {
    padding-block: 60px;
  }

  .how-to-buy__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-to-buy__left {
    position: static;
  }

  .how-to-buy__heading {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .how-to-buy__subtext {
    margin-bottom: 24px;
  }

  .how-to-buy__panel {
    gap: 16px;
  }

  .how-to-buy__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .how-to-buy__card-image {
    width: 100%;
  }

  .button-hero-styles-button {
    width: 100%;
  }
}

/* Guarda in the Media */
.media-section {
  padding: 160px 0 80px;
}

.media-section__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #131313;
  margin: 0 0 48px;
}

.media-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  border: 1px solid #E2E1EB;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.media-card__image {
  align-self: stretch;
  aspect-ratio: 99/50;
  overflow: hidden;
  border-radius: 12px;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__body {
  flex: 1;
}

.media-card__title {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 20.92px + 0.77vw, 32px);
  line-height: clamp(32px, 28.92px + 0.77vw, 40px);
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 320px;
}

@media (max-width: 1410px) {
  .media-card__title {
    max-width: 277px;
  }
}

@media (max-width: 778px) {
  .media-card__title {
    font-weight: 600;
  }
}

.media-card__text {
  font-size: 16px;
  line-height: 24px;
  color: #555555;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.media-card__icon {
  padding-bottom: 24px;
}

.media-card__icon img {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .media-section {
    padding: 80px 0;
  }

  .media-section__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .media-section__grid {
    grid-template-columns: 1fr;
  }
}

.exchange-hero__actions-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.market-link {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #5271CD;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.market-link:hover {
  color: #1A1A1A;
}

.market-review {
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-review-digit {
  overflow: hidden;
  color: #1D1D1D;
  text-align: center;
  text-overflow: ellipsis;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.exchange-hero__actions-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   Supported Assets Section — 70+ Blockchains
   ============================================================ */

@keyframes assets-ticker-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes assets-ticker-up {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.assets-section {
  padding: 40px 0;
}

.assets-section__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.assets-section__left,
.assets-section__right {
  min-width: 0;
}

.assets-section__title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  margin: 0 0 24px;
}

.assets-section__text {
  margin: 0 0 48px;
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
}

.assets-section__btn {
  margin-inline: 0;
}

/* ---- Ticker: desktop — 3 vertical scrolling columns ---- */

.assets-ticker-wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  height: 500px;
  overflow: hidden;
  min-width: 0;
}

/* White fade top / bottom */
.assets-ticker-wrapper::before,
.assets-ticker-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}

.assets-ticker-wrapper::before {
  top: -1px;
  background: linear-gradient(to bottom, #F9F9F9 30%, transparent);
}

.assets-ticker-wrapper::after {
  bottom: -1px;
  background: linear-gradient(to top, #F9F9F9 30%, transparent);
}

.assets-ticker__col {
  flex: 0 0 88px;
  overflow: hidden;
  min-width: 0;
}

.assets-ticker__track {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
}

.assets-ticker__track img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: block;
}

.assets-ticker__col--down .assets-ticker__track {
  animation: assets-ticker-down 22s linear infinite;
}

.assets-ticker__col--up .assets-ticker__track {
  animation: assets-ticker-up 28s linear infinite;
}

.assets-ticker__col--3rd .assets-ticker__track {
  animation-duration: 25s;
}

/* ---- Mobile ---- */

@media (max-width: 768px) {
  .assets-section {
    padding: 80px 0;
  }

  .assets-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Icons above text on mobile */
  .assets-section__right {
    order: -1;
  }

  .assets-section__title {
    font-size: 28px;
    line-height: 36px;
  }

  /* 3rd column hidden on mobile */
  .assets-ticker__col--3rd {
    display: none;
  }

  /* Wrapper becomes a vertical stack of 2 horizontal rows */
  .assets-ticker-wrapper {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  /* Side fades instead of top/bottom */
  .assets-ticker-wrapper::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, #F9F9F9 30%, transparent);
  }

  .assets-ticker-wrapper::after {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, #F9F9F9 30%, transparent);
  }

  /* Each column becomes a horizontal row */
  .assets-ticker__col {
    flex: none;
    width: 100%;
    min-width: 0;
    height: 52px;
    overflow: hidden;
  }

  .assets-ticker__track {
    flex-direction: row;
    height: 52px;
  }

  .assets-ticker__track img {
    width: 52px;
    height: 52px;
  }

  /* Switch to horizontal animations */
  .assets-ticker__col--down .assets-ticker__track {
    animation-name: assets-ticker-left;
  }

  .assets-ticker__col--up .assets-ticker__track {
    animation-name: assets-ticker-right;
  }
}

/* ── Home FAQ ──────────────────────────────────────────── */

.home-faq .faq__toggle {
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 768px) {
  .home-faq .faq__question {
    font-size: 20px;
    line-height: 28px;
  }

  .home-faq .faq__answer {
    font-size: 16px;
  }
}


.bg-wave {
  background-image: url("/assets/images/home/cta/wave-bg-dark-blue.png");
}

.main-button-hero {
  display: flex;
  width: fit-content;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Corner-radius-Button, 8px);
  background: #448AFF;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.main-button-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  color: #FFF;
}

.title-h2 {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600 !important;
  font-size: clamp(32px, 28.92px + 0.77vw, 40px) !important;
  line-height: clamp(40px, 36.92px + 0.77vw, 48px) !important;
}

.title-h2--accent {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600 !important;;
  font-size: clamp(32px, 21.23px + 2.69vw, 60px) !important;
  line-height: clamp(40px, 27.69px + 3.08vw, 72px) !important;
}

.hide {
  display: none !important;
}

/* app-promo mobile overrides */
.exchange-hero {
  background: #ffffff;
}

@media (max-width: 992px) {

  .exchange-hero__container {
    text-align: left;
    gap: 32px;
  }

  .exchange-hero__title {
    margin-bottom: 16px;
  }

  .exchange-hero__text {
    margin-bottom: 16px;
  }

  .exchange-hero__content {
    align-items: flex-start;
    order: 1;
  }

  .exchange-hero__media {
    order: 2;
    margin-left: 0;
    margin-inline: 0;
  }

  .exchange-hero__stores {
    justify-content: flex-start;
  }
}

.advantages, .promo-banner {
  padding-block: 80px;
  background: #f9f9f9;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.advantages__card {
  position: relative;
  padding: 24px 24px 24px 32px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(0);
  text-align: center;
}

@keyframes advantagesBorderReveal {
  to {
    height: calc(100% - 32px);
    opacity: 1;
  }
}

@keyframes advantagesSpearTip {
  to {
    transform: rotate(45deg) scale(1);
  }
}

.advantages__card-title {
  color: #5271CD;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
}

.advantages__card-text {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 1220px) {

  .advantages__grid {
    grid-template-columns:
      repeat(auto-fit, minmax(160px, 192px));

    justify-content: center;
    justify-items: center;
  }

  .advantages__card {
    width: 100%;
    max-width: 192px;
  }
}

@media (max-width: 768px) {

  .advantages, .promo-banner {
    padding-block: 60px;
  }


  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .advantages__card {
    max-width: 100%;
    text-align: center;
    padding: 22px 20px 22px 20px;
  }

  .advantages__card:first-child {
    padding: 0 20px 22px 20px;
  }

  .advantages__card:last-child {
    padding: 22px 20px 0 20px;
  }

  @keyframes advantagesBorderRevealMobile {
    to {
      width: calc(100% - 32px);
      opacity: 1;
    }
  }

  .advantages__card-title {
    font-size: 40px;
    line-height: 56px;
  }

  .advantages__card-text {
    font-size: 18px;
    line-height: 26px;
  }
}

.promo-banner__slider {
  position: relative;
  overflow: hidden;
}

.promo-banner__slide {
  display: none;
  border-radius: 24px;
  background: linear-gradient(270deg, #000541 -40.33%, #5686FE 138.17%);
  padding-block: 42px;
  padding-inline: 46px;
  position: relative;
  height: 196px;
}

.promo-banner__slide.is-active {
  display: block;
}

.promo-banner__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #263D93 0.03%, rgba(41, 66, 154, 0.90) 40.14%, rgba(41, 66, 154, 0.40) 97.85%);
  pointer-events: none;
}

.promo-banner__slide-inner {
  display: flex;
  gap: 42px;
  position: relative;
  z-index: 1;
}

.promo-banner__slide-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 196px;
  border-radius: 24px;
}

.promo-banner__slide-buttons-slider-wrapper {
  right: 28px;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  position: absolute;
  z-index: 1;
}

.promo-banner__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #6C89C9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.promo-banner__dot.is-active {
  width: 14px;
  height: 14px;
  background: #FFF;
}


.promo-banner__slide-title-text {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(32px, calc(8.74px + 3.14vw), 54px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}

.promo-banner__slide-title-subtext {
  color: #DBE4FF;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.promo-banner__slide-text {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(20px, calc(7.31px + 1.71vw), 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.promo-banner__slide-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #9DB6FF;

  font-family: 'Roboto', sans-serif;
  font-size: clamp(18.564px, calc(8.59px + 1.35vw), 28px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  margin-top: 0;
}

.promo-banner__slide-link:hover {
  color: #9DB6FF;
}

.promo-banner__slide-link::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.promo-banner__slide-link:hover::after {
  transform: scaleX(1);
}

.promo-banner__slide-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

@media (max-width: 768px) {

  .promo-banner__slide {
    padding: 20px;
    padding-bottom: 56px;
    position: relative;
  }

  .promo-banner__slide-inner {
    flex-direction: column;
    gap: 12px;
  }

  .promo-banner__slide-title-subtext,
  .promo-banner__divider {
    display: none;
  }

  .promo-banner__slide-title-text {
    line-height: 40px;
    white-space: normal;
  }

  .promo-banner__slide-text {
    line-height: 120%;
  }

  .promo-banner__slide-link {
    line-height: 120%;
  }


  .promo-banner__slide-buttons-slider-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.mo-sub-heading {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  margin-bottom: 48px;
}

.hte-trusted-grid-and-span-last {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.hte-trusted-grid-and-span-last > * {
  grid-column: span 2;
}

.hte-trusted-grid-and-span-last > *:nth-last-child(2),
.hte-trusted-grid-and-span-last > *:last-child {
  grid-column: span 3;
}

@media (max-width: 768px) {

  .hte-trusted-grid-and-span-last {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hte-trusted-grid-and-span-last > * {
    grid-column: span 1 !important;
  }

}

.comparison {
  padding-block: 80px;
}

.comparison__title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  color: #131313;
  margin-bottom: 40px;
}

.comparison__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #FFFFFF;
  border-radius: 32px;
  /*padding-bottom: 28px;*/
}

.comparison__row:last-child td div {
  padding-bottom: 28px;
}

.comparison__th {
  padding: 16px 24px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  justify-content: end;
  vertical-align: bottom;
  color: #131313;
  font-feature-settings: 'liga' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.comparison__th:first-child,
.comparison__td:first-child {
  width: 15%;
}

.comparison__th:not(:first-child),
.comparison__td:not(:first-child) {
  width: 21.25%;
}


.comparison__th--all {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  flex: 1;
  height: 100%;
  gap: 24px;
}

.comparison__th--guarda-bg {
  background: linear-gradient(180deg, #EBEFFF 0.01%, rgba(233, 237, 253, 0.37) 29.71%, rgba(232, 236, 252, 0.00) 99.99%);
}

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__td {
  padding: 16px 24px 16px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #131313;
  vertical-align: middle;
}

.comparison__td--feature {
  color: #666;
  font-feature-settings: 'liga' off;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.comparison__td--value {
  text-align: center !important;
  background: transparent;
  margin-inline: auto;
  color: #6E6E80;
  font-feature-settings: 'liga' off;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.comparison__td--value-accent {
  color: #5271CD;
}

.comparison__td--value-wrapper {
  display: flex;
  justify-content: center;
}

.comparison__note {
  color: #9F9FB5;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
}

.comparison__td--value-wrapper--touchpoints {
  display: flex;
  gap: 12px;
}

.comparison__td--value-wrapper--touchpoints-item {
  position: relative;
  color: #5271CD;
}

.comparison__td--value-wrapper--touchpoints-item:hover {
  color: #7190EB;
}

div.comparison__td--value-wrapper--touchpoints-item {
  color: #9F9FB5;
  cursor: default;
}

div.comparison__td--value-wrapper--touchpoints-item:hover {
  color: #9F9FB5;
}


.comparison__td--value-wrapper--touchpoints-item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 16px;
  background: var(--BG-Tooltip, #E8ECFC);
  backdrop-filter: blur(8px);
  color: #000;
  font-family: var(--Typography-Font-Roboto, Roboto), sans-serif;
  font-size: var(--Typography-Size-l, 16px);
  font-weight: 500;
  line-height: var(--Typography-Line-height-m, 24px);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.comparison__td--value-wrapper--touchpoints-item[data-tooltip]::before {
  display: none;
  visibility: hidden;
}

.comparison__td--value-wrapper--touchpoints-item[data-tooltip]:hover::before,
.comparison__td--value-wrapper--touchpoints-item[data-tooltip]:hover::after {
  opacity: 1;
}

.comparison__mobile-slider {
  display: none;
}

@media (max-width: 900px) {

  .comparison__table-wrapper {
    display: none;
  }

  .comparison__mobile-slider {
    display: block;
  }
}

.comparison__mobile-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-top: 32px;
}

.comparison__mobile-cards::-webkit-scrollbar {
  display: none;
}

.comparison__mobile-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #EBEBEB;
}

.comparison__mobile-card--guarda {
  border: 1px solid #5271CD;
  background: linear-gradient(180deg, #EBEFFF 0.01%, rgba(233, 237, 253, 0.37) 29.71%, rgba(232, 236, 252, 0.00) 99.99%), var(--BG-Cards-on-Primary-BG, #FFF);
}

.comparison__mobile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  color: #131313;
  margin-bottom: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.comparison__mobile-card-header img {
  width: 28px;
  height: 28px;
}

.comparison__mobile-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 0;
}

.comparison__mobile-label {
  color: #6E6E80;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.comparison__mobile-value {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.comparison__mobile-value--accent {
  color: #5271CD;
}

.comparison__mobile-indicators {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.comparison__mobile-indicator {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s;
}

.comparison__mobile-indicator--active {
  background: #5271CD;
}

@media (max-width: 768px) {

  .comparison {
    padding-block: 60px;
  }

  .comparison__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .comparison__th,
  .comparison__td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ============================================================
   Non-Custodial Security section
   ============================================================ */

.non-custodial__container {
  margin-left: auto;
}

.non-custodial__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.non-custodial__header-text {
  max-width: 995px;
}

.non-custodial__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.non-custodial__arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #7190eb;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.non-custodial__arrow:hover {
  background: #E8ECFC;
}

.non-custodial__arrow:active {
  background: #5271CD;
  color: #fff;
}

.non-custodial__steps-wrapper {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.non-custodial__steps-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(270deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

.non-custodial__steps {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.non-custodial__steps::-webkit-scrollbar {
  display: none;
}

.non-custodial__steps:active {
  cursor: default;
}

.security-card {
  flex: 0 0 auto;
  width: 420px;
  height: 368px;
  min-width: 16rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid #F4F4F8;
  background: #FFF;
  position: relative;
}

.security-card__body {
  flex: 1;
  padding: 24px;
}

.security-card__title {
  color: #1D1D1D;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}

.security-card__text {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
}

.security-card__image {
  align-self: flex-start;
  margin-top: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.security-card__image img {
  display: block;
  height: auto;
  border-radius: 16px;
  max-width: 339px;
}

/* Indicators — hidden on desktop, shown on mobile */
.non-custodial__indicators {
  display: none;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-inline: 0;
}

.non-custodial__indicator {
  flex: 1;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.non-custodial__indicator--active {
  background: #7190EB;
}

@media (max-width: 31.25rem) {
  .non-custodial__nav {
    display: none;
  }

  .non-custodial__indicators {
    display: flex;
    padding-inline: 1rem;
  }

  .non-custodial__container {
    padding-right: 1.5rem;
  }

  .non-custodial__steps {
    scroll-snap-type: x mandatory;
  }

  .non-custodial__steps-wrapper::after {
    display: none;
  }

  .security-card {
    width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: start;
  }

  .security-card__image img {
    max-width: 270px;
  }
}

.reviews__indicators {
  display: none;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-inline: 0;
}

.reviews__indicator {
  flex: 1;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: #E0E0E0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.reviews__indicator--active {
  background: #7190EB;
}

.get-started__steps-wrapper {
  position: relative;
  overflow: hidden;
}

.get-started__steps-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(270deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-reviews .get-started__nav {
    display: none;
  }

  .reviews__indicators {
    display: flex;
    padding-inline: 1rem;
  }

  .get-started__steps-wrapper::after {
    display: none;
  }

  .home-reviews .get-started__steps {
    scroll-snap-type: none;
  }

  .non-custodial__steps-wrapper {
    margin-top: 32px;
  }

  .non-custodial__steps {
    gap: 0.5rem;
  }

  .home-reviews .step-card {
    scroll-snap-align: unset;
  }
}

@media (min-width: 767px) {
  .right-margin-null {
    margin-right: 0;
    padding-right: 0;
  }
}


.button-hero-styles-button {
  display: flex;
  width: fit-content;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Corner-radius-Button, 8px);
  background: #448AFF;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-inline: auto;
}

.subtext-hero-styles {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #9F9FB5;
  margin-top: 20px;
}

.button-hero-styles-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  color: #FFF;
}

.button-hero-styles-button-get-started-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.button-hero-styles-button-get-started {
  margin-inline: auto;
  margin-top: 48px;
}

/* ============================================================
   How to Buy Crypto — sticky left column
   ============================================================ */

.how-to-buy__track {
  background: #f9f9f9;
}

.how-to-buy {
  padding-block: 80px;
}

.how-to-buy .container {
  width: 100%;
}

.how-to-buy__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.how-to-buy__left {
  position: sticky;
  top: 128px;
}

html:not(.banner-hidden) .how-to-buy__left {
  top: 206px;
}

.how-to-buy__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  margin-bottom: 16px;
}

.how-to-buy__subtext {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  color: #131313;
  margin-bottom: 32px;
}

.how-to-buy__cta {
  margin-inline: 0;
}

/* --- Right column --- */

.how-to-buy__right {
  display: block;
}

.how-to-buy__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-to-buy__card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #F4F4F8;
}

/* --- Card content --- */

.how-to-buy__card-body {
  flex: 1;
  min-width: 0;
}

.how-to-buy__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--BG-Tooltip, #E8ECFC);
  font-family: 'Roboto', sans-serif;
  margin-bottom: 16px;
  color: var(--Text-colors-Text-Accent, #5271CD);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 4px;
}

.how-to-buy__card-title {
  color: #1D1D1D;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 20.92px + 0.77vw, 32px);
  line-height: clamp(32px, 28.92px + 0.77vw, 40px);
  margin-bottom: 8px;
}

.how-to-buy__card-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
  color: #131313;
}

.how-to-buy__link {
  color: #5271CD;
  text-decoration: none;
}

.how-to-buy__link:hover {
  text-decoration: underline;
}

.how-to-buy__card-image {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-to-buy__card-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* --- Tablet --- */

@media (max-width: 1024px) {
  .how-to-buy__inner {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .how-to-buy__heading {
    font-size: 32px;
  }
}

/* --- Mobile --- */

@media (max-width: 768px) {
  .how-to-buy {
    padding-block: 60px;
  }

  .how-to-buy__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-to-buy__left {
    position: static;
  }

  .how-to-buy__heading {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .how-to-buy__subtext {
    margin-bottom: 0;
  }

  .how-to-buy__panel {
    gap: 16px;
  }

  .how-to-buy__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
  }

  .how-to-buy__card-image {
    width: 100%;
  }

  .button-hero-styles-button {
    width: 100%;
  }
}

/* Guarda in the Media */
.media-section {
  padding: 160px 0 80px;
}

.media-section__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #131313;
  margin: 0 0 48px;
}

.media-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  border: 1px solid #E2E1EB;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.media-card__image {
  align-self: stretch;
  aspect-ratio: 99/50;
  overflow: hidden;
  border-radius: 12px;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__body {
  flex: 1;
}

.media-card__title {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 20.92px + 0.77vw, 32px);
  line-height: clamp(32px, 28.92px + 0.77vw, 40px);
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 320px;
}

@media (max-width: 1410px) {
  .media-card__title {
    max-width: 277px;
  }
}

@media (max-width: 778px) {
  .media-card__title {
    font-weight: 600;
  }
}

.media-card__text {
  font-size: 16px;
  line-height: 24px;
  color: #555555;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.media-card__icon {
  padding-bottom: 24px;
}

.media-card__icon img {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .media-section {
    padding: 60px 0;
  }

  .media-section__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .media-section__grid {
    grid-template-columns: 1fr;
  }
}

.exchange-hero__actions-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.market-link {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #5271CD;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.market-link:hover {
  color: #1A1A1A;
}

.market-review {
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-review-digit {
  overflow: hidden;
  color: #1D1D1D;
  text-align: center;
  text-overflow: ellipsis;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.exchange-hero__actions-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   Supported Assets Section — 70+ Blockchains
   ============================================================ */

@keyframes assets-ticker-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes assets-ticker-up {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.assets-section {
  padding: 40px 0;
}

.assets-section__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.assets-section__left,
.assets-section__right {
  min-width: 0;
}

.assets-section__title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  margin: 0 0 24px;
}

.assets-section__text {
  margin: 0 0 48px;
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 14.46px + 0.385vw, 20px);
  line-height: clamp(24px, 22.46px + 0.385vw, 28px);
}

.assets-section__btn {
  margin-inline: 0;
}

.assets-ticker-wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  height: 500px;
  overflow: hidden;
  min-width: 0;
}

.assets-ticker-wrapper::before,
.assets-ticker-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}

.assets-ticker-wrapper::before {
  top: -1px;
  background: linear-gradient(to bottom, #F9F9F9 30%, transparent);
}

.assets-ticker-wrapper::after {
  bottom: -1px;
  background: linear-gradient(to top, #F9F9F9 30%, transparent);
}

.assets-ticker__col {
  flex: 0 0 88px;
  overflow: hidden;
  min-width: 0;
}

.assets-ticker__track {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
}

.assets-ticker__track img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: block;
}

.assets-ticker__col--down .assets-ticker__track {
  animation: assets-ticker-down 22s linear infinite;
}

.assets-ticker__col--up .assets-ticker__track {
  animation: assets-ticker-up 28s linear infinite;
}

.assets-ticker__col--3rd .assets-ticker__track {
  animation-duration: 25s;
}


@media (max-width: 768px) {
  .assets-section {
    padding: 60px 0;
  }

  .assets-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .assets-section__right {
    order: -1;
  }

  .assets-section__title {
    font-size: 28px;
    line-height: 36px;
  }

  .assets-ticker__col--3rd {
    display: none;
  }

  .assets-ticker-wrapper {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .assets-ticker-wrapper::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, #F9F9F9 30%, transparent);
  }

  .assets-ticker-wrapper::after {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, #F9F9F9 30%, transparent);
  }

  .assets-ticker__col {
    flex: none;
    width: 100%;
    min-width: 0;
    height: 52px;
    overflow: hidden;
  }

  .assets-ticker__track {
    flex-direction: row;
    height: 52px;
  }

  .assets-ticker__track img {
    width: 52px;
    height: 52px;
  }

  .assets-ticker__col--down .assets-ticker__track {
    animation-name: assets-ticker-left;
  }

  .assets-ticker__col--up .assets-ticker__track {
    animation-name: assets-ticker-right;
  }
}

.home-faq .faq__toggle {
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 768px) {
  .home-faq .faq__question {
    font-size: 20px;
    line-height: 28px;
  }

  .home-faq .faq__answer {
    font-size: 16px;
  }
}


.bg-wave {
  background-image: url("/assets/images/home/cta/wave-bg-dark-blue.png");
}

.main-button-hero {
  display: flex;
  width: fit-content;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Corner-radius-Button, 8px);
  background: #448AFF;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.main-button-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  color: #FFF;
}

.title-h2 {
  color: #131313;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600 !important;
  font-size: clamp(32px, 28.92px + 0.77vw, 40px) !important;
  line-height: clamp(40px, 36.92px + 0.77vw, 48px) !important;
}

.title-h2--accent {
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600 !important;;
  font-size: clamp(32px, 21.23px + 2.69vw, 60px) !important;
  line-height: clamp(40px, 27.69px + 3.08vw, 72px) !important;
}

.hide {
  display: none !important;
}

.exchange-hero {
  background: #ffffff;
}

@media (max-width: 992px) {

  .exchange-hero__container {
    text-align: left;
  }

  .exchange-hero__content {
    align-items: flex-start;
    order: 1;
  }

  .exchange-hero__media {
    order: 2;
    margin-left: 0;
    margin-inline: 0;
  }

  .exchange-hero__stores {
    justify-content: flex-start;
  }
}


.hero-block {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.text-block {
  width: 490px;
  flex-shrink: 0;
}

.web-wallet-image {
  position: relative;
  flex-shrink: 0;
  width: 708px;
  height: 570px;
}

.web-wallet-image img {
  position: absolute;
  top: 0;
  width: 708px;
}

@media (max-width: 1280px) {
  .hero-block {
    gap: 60px;
  }
}

@media (max-width: 1180px) {
  .hero-block {
    gap: 40px;
  }

  .web-wallet-image {
    zoom: 0.85;
  }
}

@media (max-width: 940px) {
  .hero-block {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .text-block {
    width: 100%;
  }

  .web-wallet-image {
    zoom: 1;
  }

  .text-block * {
    text-align: center;
  }

  .ep-hero-actions-centered-mobile {
    justify-content: center;
  }

  .tp-centered-mobile {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .web-wallet-image {
    zoom: 0.85;
    height: 0
  }

  .is-vertical-hidden-mobile {
    display: none;
  }

  .tp-centered-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-block {
    gap: 24px;
  }

  .web-wallet-image {
    zoom: 0.5;
  }
}

.exchange-hero__content-padding {
  margin-bottom: 120px;
}

.default-blocks-padding {
  padding: 80px 0;
}

.promo-padding-top {
  padding-top: 120px;
}

.home-reviews-padding {
  padding-block: 80px 160px;
}

/* Reviews slider — left & right fade masks */
.get-started__steps-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}

.get-started__steps-wrapper::after {
  transition: opacity 0.2s;
}

.get-started__steps-wrapper.has-scroll-left::before {
  opacity: 1;
}

.get-started__steps-wrapper.at-scroll-end::after {
  opacity: 0;
}

@media (max-width: 767px) {
  .get-started__steps-wrapper::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .default-blocks-padding {
    padding: 60px 0;
  }
  .home-reviews-padding {
    padding-block: 60px 120px;
  }
  .promo-padding-top {
    padding-top: 60px;
  }
  .exchange-hero__content-padding {
    margin-bottom: 0;
  }

  .faq__new-padding {
    padding-block: 60px 120px;
  }

  .homepage-hero {
    padding-top: 60px !important;
  }

  .hero-mobile-image {
    margin-left: 0;
    width: 100%;
  }
}
