:root {
  --black: #000000;
  --white: #ffffff;
  --purple: #d4a0ff;
  --orange: #ff5300;
  --green: #6ec85c;
  --grey-50: #f5f5f5;
  --grey-100: #ebebeb;
  --grey-200: #d6d6d6;
  --grey-400: #999999;
  --grey-600: #666666;
  --grey-800: #1a1a1a;
  --grey-900: #0a0a0a;
  --grad-purple: linear-gradient(135deg, #45395c 0%, #0a0a0a 100%);
  --font: "Inter", system-ui, sans-serif;
  --mono: "HMAlphaMono", "ibm-plex-mono", "IBM Plex Mono", ui-monospace, monospace;
  --container: min(1200px, calc(100% - 48px));
  --radius: 12px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.promo-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 48px;
  background: var(--purple);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.promo-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.promo-bar__link strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  opacity: 0.7;
}

.promo-bar__close:hover {
  opacity: 1;
}

.phishing-bar {
  background: var(--grey-900);
  border-bottom: 1px solid #222;
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--grey-200);
}

.phishing-bar a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.header.is-scrolled {
  border-bottom-color: #222;
}

.header__inner {
  width: var(--container);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo img {
  height: 24px;
  width: auto;
  filter: invert(1);
}

.nav {
  flex: 1;
}

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

.nav__item > a,
.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-200);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__item > a:hover,
.nav__trigger:hover,
.nav__item.is-open .nav__trigger {
  color: var(--white);
  background: #161616;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0d0d0d;
  border-bottom: 1px solid #222;
  padding: 32px 0 40px;
  animation: fadeDown 0.25s var(--ease);
}

.mega[hidden] {
  display: none !important;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
}

.mega__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 16px;
}

.mega__devices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega__device {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #141414;
  transition: background 0.2s;
}

.mega__device:hover {
  background: #1c1c1c;
}

.mega__device img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.mega__device span {
  font-size: 14px;
  font-weight: 600;
}

.mega__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega__links a {
  font-size: 14px;
  color: var(--grey-200);
}

.mega__links a:hover {
  color: var(--white);
}

.mega__cta {
  color: var(--purple) !important;
  margin-top: 8px;
  font-weight: 600;
}

.mega__card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: #141414;
  transition: background 0.2s;
}

.mega__card:hover {
  background: #1c1c1c;
}

.mega__card img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.mega__card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.mega__card span {
  font-size: 13px;
  color: var(--grey-400);
}

.badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--purple);
  color: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--float {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}

.btn--orange:hover {
  filter: brightness(1.06);
}

.btn--primary {
  background: var(--white);
  color: #1c1d20;
}

.btn--primary:hover {
  background: #f0f0f0;
}

.btn--ghost {
  border: 1px solid #333;
  color: var(--white);
  background: transparent;
}

.btn--ghost:hover {
  border-color: #666;
}

.btn--ghost-light {
  backdrop-filter: blur(0);
  background-color: hsla(0, 0%, 100%, 0.1);
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  padding: 12px 24px;
  height: 52px;
  width: fit-content;
  align-self: flex-start;
  transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out;
}

.btn--ghost-light:hover {
  backdrop-filter: blur(8px);
  background-color: hsla(0, 0%, 100%, 0.3);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  height: auto;
  min-height: 40px;
}

.read-more {
  display: inline-block;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.link-arrow::after {
  content: "→";
  text-decoration: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 4px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  width: fit-content;

  background-image:
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0v.5H.526V3H0V0h4z' fill='%23D4A0FF'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 3v-.5H.526V0H0v3h4z' fill='%23D4A0FF'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3v-.5h3.474V0H4v3H0z' fill='%23D4A0FF'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v.5h3.474V3H4V0H0z' fill='%23D4A0FF'/%3E%3C/svg%3E");
  background-position: 0 0, 0 100%, 100% 100%, 100% 0;
  background-repeat: no-repeat;
  background-color: transparent;
}

.tag h1 {
  margin: 0;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.tag--purple {
  color: var(--purple);
}

.tag--sm {
  font-size: 11px;
  margin: 8px 0;
}

.emphasis {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #e5e5e5;
  margin: 12px 0 0;
}

.hero {
  padding: 48px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(69, 57, 92, 0.45), transparent 70%),
    var(--black);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero__title {
  margin: 20px 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--grey-200);
  max-width: 34ch;
  line-height: 1.45;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #222;
  padding-top: 24px;
}

.hero__stats li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #222;
  font-size: 13px;
  color: var(--grey-200);
  line-height: 1.35;
  white-space: nowrap;
}

.hero__stats li:first-child {
  padding-left: 0;
}

.hero__stats li:last-child {
  border-right: none;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero__image {
  width: min(100%, 560px);
  height: auto;
  max-width: none;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

@media (max-width: 1100px) {
  .hero {
    padding: 40px 0 0;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__image {
    width: min(100%, 460px);
  }

  .hero__stats li {
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 28px 0 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .hero__visual {
    order: -1;
    width: 100%;
  }

  .hero__image {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 520px;
    align-items: center;
    text-align: center;
  }

  .hero__title {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero__lead {
    margin: 0 auto 24px;
    max-width: 36ch;
  }

  .hero__cta {
    justify-content: center;
    margin-bottom: 28px;
  }

  .hero__stats {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px 0;
    padding-top: 20px;
  }

  .hero__stats li {
    white-space: normal;
    justify-content: center;
    padding: 0 14px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 20px 0 0;
  }

  .hero__image {
    width: min(100%, 300px);
  }

  .hero__cta {
    flex-direction: column;
    gap: 14px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero__stats li {
    border-right: none;
    padding: 0;
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  .hero__stats li + li {
    border-top: 1px solid #222;
    padding-top: 14px;
  }
}

.infos-section {
  padding: 72px 0;
}

@media (max-width: 900px) {
  .infos-section {
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  .infos-section {
    padding: 48px 0;
  }
}

.infos-section__container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
}

.infos-section__bloc {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  overflow: hidden;
}

.infos-section__divider {
  align-self: stretch;
  width: 1px;
  background-color: #525252;
  flex-shrink: 0;
}

.infos-section__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.infos-section__title h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.infos-section__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.infos-section .emphasis {
  margin: 0;
  color: #e5e5e5;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.generic-banner {
  padding-bottom: 80px;
  position: relative;
}

.generic-banner__content {
  position: relative;
  border: 1px solid #525252;
  overflow: hidden;
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.generic-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
  z-index: 1;
}

.generic-banner__bg--cashback {
  background-image: url(https://ledger-wp-website-s3-prd.ledger.com/uploads/2026/03/banner_desktop.webp);
}

.generic-banner__gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000, transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.generic-banner__title,
.generic-banner__lead,
.generic-banner__ctas,
.generic-banner__content > .btn,
.generic-banner__content > a {
  position: relative;
  z-index: 2;
}

.generic-banner__content > .btn,
.generic-banner__content > a.btn {
  width: fit-content;
  max-width: fit-content;
  align-self: flex-start;
  flex: 0 0 auto;
}

.generic-banner__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 568px;
}

.generic-banner__lead {
  margin: 0 0 20px;
  color: #fff;
  max-width: 568px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.generic-banner:hover .generic-banner__bg {
  transform: scale(1.02);
}

.generic-banner:hover .generic-banner__gradient {
  opacity: 0.8;
}

.generic-banner:hover .generic-banner__content {
  border-color: #fff;
}

.generic-banner--dual .generic-banner__content {
  height: 272px;
  min-height: 272px;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.generic-banner--dual .generic-banner__lead {
  margin-bottom: 24px;
}

.generic-banner__ctas {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.generic-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.generic-banner__cta-label {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  max-width: none;
}

.generic-banner__divider {
  align-self: stretch;
  flex: 0 0 1px;
  background-color: #525252;
  position: relative;
  z-index: 2;
}

.products {
  padding: 40px 0 80px;
  background: #000;
}

.products__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
}

.products__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.products__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: space-between;
  position: relative;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(25% - 18px);
  padding: 1px 0 24px;
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid #525252;
  border-radius: 0;
  z-index: 1;
  transition: background 0.3s ease, border 0.3s ease-out;
}

.product-card:hover {
  background: hsla(0, 0%, 100%, 0.04);
  border-color: #fff;
  transform: none;
}

.product-card:hover .product-card__img img {
  transform: translateY(-8px);
}

.white-square {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fff;
  pointer-events: none;
}

.white-square.top {
  top: -4px;
}

.white-square.bottom {
  bottom: -4px;
}

.white-square.left {
  left: -4px;
}

.white-square.right {
  right: -4px;
}

.product-card__img {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card__img > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 11px;
  background: linear-gradient(196deg, hsla(0, 0%, 100%, 0) 8.21%, hsla(0, 0%, 100%, 0.05) 89.11%);
}

.product-card__img img {
  height: 259px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transition: transform 0.3s ease-out;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 0 24px;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-card__body p {
  margin: 0;
  font-size: 14px;
  color: #e5e5e5;
  flex: 1;
  line-height: 1.5;
}

.product-card__cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  border: 1px solid var(--purple);
  background-image: none;
  background-color: transparent;
}

.rating {
  font-size: 13px;
  color: #fff;
  padding: 4px 0;
}

.stars {
  color: var(--white);
  letter-spacing: 1px;
}

.cryptos {
  padding: 40px 0 72px;
}

.cryptos__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
}

.cryptos__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.cryptos__track-wrap {
  overflow: hidden;
  position: relative;
}

.cryptos__track-wrap::before,
.cryptos__track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 64px;
  z-index: 2;
  pointer-events: none;
}

.cryptos__track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #000, hsla(0, 0%, 4%, 0));
}

.cryptos__track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #000, hsla(0, 0%, 4%, 0));
}

.cryptos__track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.cryptos__track:hover {
  animation-play-state: paused;
}

.cryptos__track a {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.cryptos__track a:hover {
  transform: none;
  border: none;
}

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

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

.cryptos__cta {
  margin-top: 32px;
  text-align: center;
}

.app-features {
  padding: 40px 0 80px;
  background: #000;
}

.app-features__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.app-features__logo {
  height: 40px;
  width: auto;
  margin: 0 auto 24px;
}

.app-features__intro h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.app-features__intro p {
  margin: 0 0 24px;
  color: #e5e5e5;
}

.app-features__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: 0;
  background: #0a0a0a;
  border: 1px solid #525252;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.app-block:hover {
  border-color: #fff;
  transform: none;
}

.app-block--reverse .app-block__text {
  order: 2;
}

.app-block--reverse .app-block__visual {
  order: 1;
}

.app-block__text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-block h3 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.app-block p {
  margin: 0 0 20px;
  color: #e5e5e5;
}

.app-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0a0a;
  min-height: 320px;
  overflow: hidden;
}

.app-block__visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.providers span {
  padding: 6px 10px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #525252;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--grey-200);
}

.testimonials {
  padding: 60px 0;
  background: #000;
  border-top: none;
}

.testimonials__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.testimonials__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.testimonials__controls {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid #525252;
  font-size: 22px;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.icon-btn:hover {
  background: transparent;
  border-color: #fff;
}

.testimonials__viewport {
  overflow: hidden;
  padding: 1px;
  margin: -1px;
}

.testimonials__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s var(--ease);
  padding: 1px;
}

.testimonial {
  position: relative;
  flex: 0 0 calc(33.333% - 11px);
  min-width: 280px;
  padding: 40px 40px 100px;
  border-radius: 4px;
  background: #000;
  border: 1px solid #525252;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 317px;
  box-shadow: 0 24px 48px 0 rgba(0, 0, 0, 0.08);
}

.testimonial p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}

.testimonial__author {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #2a2a2a;
}

.testimonial__author strong {
  display: block;
  font-size: 14px;
}

.testimonial__author span {
  font-size: 13px;
  color: var(--grey-400);
}

.faq {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(212, 160, 255, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 35% at 95% 0%, rgba(212, 160, 255, 0.12), transparent 60%),
    #0a0a0a;
}

.faq__intro {
  margin-bottom: 40px;
}

.faq__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.faq__intro p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0.1), hsla(0, 0%, 100%, 0));
  overflow: hidden;
  transition: background 0.35s ease;
}

.faq__q::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #a3a3a3;
  border-bottom: 2px solid #a3a3a3;
  transform: rotate(-45deg);
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.faq__q::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  opacity: 0;
  box-shadow: 0 0 18px 4px rgba(255, 255, 255, 0.55);
  transition: opacity 0.25s ease;
}

.faq__q:hover {
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0.18), hsla(0, 0%, 100%, 0));
}

.faq__q:hover::after,
.faq__q.is-active::after {
  border-color: #fff;
}

.faq__q.is-active::before {
  opacity: 1;
}

.faq__panel {
  min-height: 220px;
}

.faq__answer {
  color: #e5e5e5;
  font-size: 15px;
  line-height: 1.65;
}

.faq__answer[hidden] {
  display: none;
}

.faq__answer p {
  margin: 0 0 14px;
}

.faq__answer a {
  color: #fff;
  text-decoration: underline;
}

.disclaimer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--grey-600);
}

@media (max-width: 900px) {
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq__q::after {
    transform: rotate(45deg);
  }
}

.footer {
  padding: 64px 0 40px;
  background: #080808;
  border-top: 1px solid #1a1a1a;
  color: var(--grey-400);
  font-size: 14px;
}

.footer a:hover {
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer__logo {
  display: inline-flex;
  margin-top: 4px;
}

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

.footer__cols h4 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__cols h4:not(:first-child) {
  margin-top: 24px;
}

.footer__cols a {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
  font-size: 12px;
  color: var(--grey-600);
}

.footer__bottom p {
  margin: 0 0 8px;
  max-width: 80ch;
}

.footer__payments {
  margin-top: 20px;
  max-width: 360px;
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.check-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.35s linear;
}

.check-modal.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.check-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

.check-modal.is-open .check-modal__backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.check-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 44px 42px 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.check-modal.is-open .check-modal__dialog {
  opacity: 1;
}

.check-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #999;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}

.check-modal__close:hover {
  color: #fff;
}

.check-modal__logo {
  display: block;
  margin: 0 auto 20px;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.check-modal__title {
  margin: 0 0 24px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}

.check-modal__models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.check-modal__model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.check-modal__model img {
  height: 92px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
}

.check-modal__model:hover {
  border-color: var(--orange);
  background: #161616;
}

.check-modal__model.is-selected,
.check-modal__model[aria-checked="true"] {
  border-color: var(--orange);
  background: #161616;
}

.check-modal__step {
  opacity: 1;
  transition: opacity 0.22s ease;
}

.check-modal__step.is-fading {
  opacity: 0;
}

.check-modal__step[hidden] {
  display: none;
}

.check-modal__warning {
  margin: -10px 0 20px;
  padding: 10px 12px;
  border: 1px solid #3b2a20;
  border-radius: 12px;
  color: #ffb38f;
  background: #17100d;
  font-size: 13px;
  line-height: 1.4;
}

.check-modal__lengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.check-modal__lengths button {
  padding: 12px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: #999;
  background: #111;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.check-modal__lengths button:hover,
.check-modal__lengths button.is-active {
  border-color: var(--orange);
  color: #fff;
}

.check-modal__phrase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.check-modal__phrase.is-fading {
  opacity: 0;
}

.check-modal__phrase label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #222;
  border-radius: 12px;
  color: #d6d6d6;
  background: #0d0d0d;
  font-family: var(--mono);
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.check-modal__phrase label.is-valid {
  border-color: rgba(76, 175, 80, 0.45);
}

.check-modal__phrase label.is-invalid {
  border-color: rgba(255, 90, 90, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 90, 90, 0.15);
}

.check-modal__phrase label.is-invalid input {
  color: #ff8a8a;
}

.check-modal__phrase b {
  color: #666;
  font-weight: 400;
}

.check-modal__phrase input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: #d6d6d6;
  background: transparent;
  font: inherit;
}

.check-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  background: #333;
  color: #999;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    opacity 0.35s ease,
    filter 0.2s ease;
}

.check-modal__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.check-modal__submit:not(:disabled) {
  background: var(--orange);
  color: #fff;
  opacity: 1;
}

.check-modal__submit:not(:disabled):hover {
  filter: brightness(1.06);
}

body.check-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 520px) {
  .check-modal__dialog {
    padding: 32px 20px 20px;
  }

  .check-modal__models {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .check-modal__model {
    padding: 12px 8px;
  }

  .check-modal__model img {
    height: 56px;
  }

  .check-modal__phrase {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .check-modal__phrase label {
    padding: 8px 6px;
    font-size: 10px;
  }
}

@media (max-width: 1200px) {
  .products__grid {
    flex-wrap: wrap;
  }

  .product-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 1100px) {
  .testimonial {
    flex-basis: calc(50% - 8px);
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .infos-section__container {
    flex-direction: column;
    gap: 24px;
  }

  .infos-section__divider {
    width: 100%;
    height: 1px;
  }

  .products__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
  }

  .products__grid {
    flex-direction: column;
    gap: 16px;
  }

  .product-card {
    width: 100%;
  }

  .product-card__img img {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0d0d0d;
    border-bottom: 1px solid #222;
    padding: 16px 24px 24px;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .mega {
    position: static;
    padding: 8px 0 16px;
    border: none;
    background: transparent;
  }

  .mega__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .hero__grid,
  .app-block,
  .faq__layout,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .app-block--reverse .app-block__text,
  .app-block--reverse .app-block__visual {
    order: unset;
  }

  .cryptos__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cryptos__head .btn--ghost-light {
    display: none;
  }
}

@media (max-width: 768px) {
  .generic-banner {
    padding-bottom: 60px;
  }

  .generic-banner__content {
    padding: 24px;
    min-height: 240px;
  }

  .generic-banner__bg {
    background-position: 70% center;
  }

  .generic-banner__gradient {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
  }

  .generic-banner--dual {
    padding: 0 0 60px;
  }

  .generic-banner--dual .generic-banner__content {
    height: auto;
    min-height: 0;
    background: linear-gradient(126deg, #000 -0.95%, #454545);
  }

  .generic-banner--dual .generic-banner__bg,
  .generic-banner--dual .generic-banner__gradient {
    display: none;
  }

  .generic-banner__ctas {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .generic-banner__divider {
    height: 1px;
    width: 100%;
    flex: 0 0 1px;
  }

  .generic-banner__bg--cashback {
    background-image: url(https://ledger-wp-website-s3-prd.ledger.com/uploads/2026/03/banner_mobile.webp);
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
  }

  .promo-bar {
    padding: 10px 36px 10px 16px;
    font-size: 12px;
  }

  .testimonial {
    flex-basis: 85%;
    padding: 40px 30px 105px;
  }

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

  .cryptos__track {
    gap: 24px;
  }

  .cryptos__track a {
    width: 56px;
    height: 56px;
  }

  .cryptos__track-wrap::before,
  .cryptos__track-wrap::after {
    width: 100px;
    height: 56px;
  }
}
