:root {

  --spring: #00ff7f;
  --navy: #05386b;
  --teal: #14b869;
  --mint: #00ff7f;
  --mint-soft: #7dffbe;
  --cream: #edf5e1;
  --blue: #1b6ca8;

  --iris: var(--spring);
  --iris-soft: var(--mint-soft);
  --saffron: var(--mint-soft);
  --verdant: var(--teal);
  --tether: var(--spring);

  --void: #000000;
  --bone: #edf5e1;
  --ash: #7d9a92;
  --silver: #b6cfc4;
  --hairline: rgba(0, 255, 127, 0.22);

  --u: 6px;
  --gap-xs: 6px;
  --gap-sm: 12px;
  --gap-md: 18px;
  --gap-lg: 36px;
  --section: 120px;

  --maxw: 1280px;
  --radius: 24px;

  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --check-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8.2 12.3 2.6 2.6 5-5.4'/%3E%3C/svg%3E");
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }

::selection { background: var(--iris); color: #fff; }

.display,
.h-lg,
.h,
.h-sm,
.h-xs,
.h-2xs {
  font-weight: 400;
  margin: 0;

  text-wrap: balance;
}

p,
.lede,
.rate__list li,
.about__list li {
  text-wrap: pretty;
}

.display {
  font-size: clamp(48px, 7.8vw, 113px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.h-lg {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.h {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.h-sm {
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.h-xs {
  font-size: clamp(22px, 1.9vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.h-2xs {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.body { font-size: 18px; font-weight: 300; line-height: 1.5; }

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver);
  max-width: 52ch;
}

.label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.caption {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--ash);
  text-transform: uppercase;
}

.muted { color: var(--ash); }
.dim { color: var(--silver); }
.iris { color: var(--iris); }
.saffron { color: var(--saffron); }
.tether { color: var(--tether); }
.mono-num { font-variant-numeric: tabular-nums; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 30px;
}

section { position: relative; }

.section {
  padding-block: clamp(70px, 8vw, 120px);
}

.section--tall {
  padding-block: clamp(90px, 10vw, 150px);
}

.pin {
  min-height: 150vh;
  padding-block: 0;
}

.pin > .wrap {
  position: sticky;
  top: var(--pin-top, clamp(72px, 8vh, 108px));
}

.pin--tight { min-height: 104vh; }

.pin .h-lg {
  font-size: clamp(24px, min(2.7vw, 3.4vh), 40px);
  line-height: 1.08;
}

.pin .h {
  font-size: clamp(21px, min(2.1vw, 2.7vh), 32px);
  line-height: 1.15;
}

.pin .lede {
  font-size: clamp(13.5px, min(1vw, 1.7vh), 15.5px);
  max-width: 68ch;
  line-height: 1.45;
}

.pin .stack-sm > * + * { margin-top: 7px; }

.pin .panel--blur { padding: clamp(20px, min(2.6vw, 3.4vh), 40px); }

.pin .about__text { margin-top: clamp(14px, 2vh, 24px); }
.pin .about__text p { font-size: clamp(13px, 1.6vh, 15px); line-height: 1.45; }
.pin .about__text > * + * { margin-top: 9px; }
.pin .about__list { margin-top: clamp(14px, 2vh, 24px); gap: 8px 30px; }
.pin .about__list li { font-size: 14px; }
.pin .about__claim { margin-top: clamp(14px, 2vh, 24px); font-size: 15px; }

.pin .pillar { padding: clamp(14px, 1.9vh, 19px); }
.pin .pillars { gap: clamp(10px, 1.4vh, 16px); margin-top: clamp(16px, 2.6vh, 28px); }
.pin .pillar__title { font-size: clamp(15px, 2vh, 18px); margin-bottom: 5px; }
.pin .pillar__text { font-size: clamp(12.5px, 1.6vh, 14px); line-height: 1.4; }
.pin .pillar__icon { margin-bottom: clamp(8px, 1.4vh, 14px); }

.pin .steps { margin-top: clamp(18px, 3vh, 32px); gap: clamp(10px, 1.2vw, 15px); }
.pin .step { padding: clamp(14px, 1.9vh, 20px); }
.pin .step__title { font-size: clamp(14.5px, 1.9vh, 17px); }
.pin .step__body { font-size: clamp(12.5px, 1.6vh, 14px); line-height: 1.4; }

.pin .rate { padding: clamp(14px, 1.9vh, 20px); }
.pin .rate__icon { top: 14px; left: 15px; width: 30px; height: 30px; }
.pin .rate__title {
  font-size: clamp(15px, 2vh, 18px);
  margin-bottom: 8px;
  min-height: 30px;
  padding-left: 40px;
}
.pin .rate__list { font-size: clamp(12.5px, 1.6vh, 14px); }
.pin .rate__list li { padding-block: 3px; }
.pin .rates { margin-top: clamp(16px, 2.6vh, 30px); }

.pin .aml { margin-top: clamp(16px, 2.6vh, 30px); gap: clamp(12px, 1.6vw, 22px); }
.pin .aml__panel { padding: clamp(14px, 1.9vh, 20px); }
.pin .aml__head { font-size: clamp(14.5px, 1.9vh, 17px); }
.pin .aml__text { font-size: clamp(12px, 1.55vh, 13.5px); line-height: 1.46; }
.pin .reason { padding: clamp(11px, 1.5vh, 15px); }
.pin .reason__title { font-size: clamp(14px, 1.8vh, 16px); }
.pin .reason__text { font-size: clamp(12px, 1.55vh, 13.5px); line-height: 1.4; }

.pin .scan { margin-top: clamp(10px, 1.6vh, 16px); }
.pin .scan__node { padding: 8px 5px; font-size: 10.5px; gap: 6px; }
.pin .scan__node svg { width: 18px; height: 18px; }
.pin .scan__bases { margin-top: clamp(8px, 1.2vh, 12px); }
.pin .scan__scale { margin-top: clamp(9px, 1.4vh, 14px); }

.pin .loyalty { margin-top: clamp(16px, 2.4vh, 28px); }
.pin .loyal__title { font-size: clamp(14.5px, 1.9vh, 17px); }
.pin .loyal__text { font-size: clamp(12.5px, 1.6vh, 14px); }
.pin .loyal__icon { margin-bottom: clamp(8px, 1.3vh, 12px); }
.pin .loyal__num { font-size: clamp(21px, 3.4vh, 32px); margin-bottom: clamp(4px, 0.9vh, 8px); }
.pin .partner__ref { margin-top: clamp(12px, 1.8vh, 22px); padding: 10px 14px; font-size: clamp(12.5px, 1.6vh, 14px); }

.pin .path { margin-top: clamp(14px, 2vh, 26px); }
.pin .path__step { padding-top: clamp(13px, 1.8vh, 20px); }
.pin .path__text { font-size: clamp(12.5px, 1.65vh, 14.5px); line-height: 1.45; }

.pin .reviews { margin-top: clamp(16px, 2.6vh, 30px); }

.pin .loyalty { margin-top: clamp(16px, 2.6vh, 30px); }
.pin .loyalty p { font-size: clamp(13px, 1.7vh, 15.5px); line-height: 1.5; }

.pin .faq { padding: 2px clamp(16px, 2vw, 26px); margin-top: clamp(16px, 2.6vh, 30px); }
.pin .faq__q {
  padding-block: clamp(10px, 1.6vh, 17px);
  font-size: clamp(13.5px, 1.8vh, 16px);
  gap: 14px;
}
.pin .faq__a p { font-size: clamp(12.5px, 1.6vh, 14px); line-height: 1.45; padding-bottom: 16px; }

.pin .panel__foot { margin-top: clamp(16px, 2.6vh, 30px); }
.pin .h-xs { font-size: clamp(16px, 2vh, 20px); }

.pin.is-unpinned { min-height: auto; padding-block: clamp(70px, 8vw, 120px); }
.pin.is-unpinned > .wrap { position: static; }

.chaos-gap {
  height: 56svh;
  pointer-events: none;
}

.chaos-gap--sm { height: 28svh; }

.side {
  width: min(56%, 720px);
}

.side--right { margin-left: auto; }
.side--left { margin-right: auto; }

.side--wide { width: min(74%, 940px); }

.side--center {
  width: min(92%, 1040px);
  margin-inline: auto;
}

.side--center .lede--center { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.split--reverse .split__visual { order: -1; }
.split--top { align-items: start; }

.mt-0 { margin-top: 0; }
.mt-18 { margin-top: 18px; }
.mt-30 { margin-top: 30px; }
.mt-36 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.ta-center { text-align: center; }
.ai-start { align-items: start; }
.mw-46 { max-width: 46ch; }

.footer__tagline {
  margin-top: 18px;
  max-width: 30ch;
  font-size: 15px;
}

.stack-sm > * + * { margin-top: var(--gap-sm); }
.stack > * + * { margin-top: var(--gap-md); }
.stack-lg > * + * { margin-top: var(--gap-lg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--spring);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14.4px 24px;
  border-radius: 22.5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    transform 0.35s var(--ease), opacity 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  border-radius: 22.5px;

  color: #032013;

  background:
    radial-gradient(
      120% 100% at var(--gx) var(--gy),
      rgba(255, 255, 255, 0.32),
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, #00ff7f, #00c964);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 90, 52, 0.4),
    0 14px 34px rgba(0, 0, 0, 0.45);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    transform 0.5s cubic-bezier(0.16, 1.24, 0.3, 1);
}

.btn--primary::after {

  background: conic-gradient(
    from var(--edge),
    rgba(226, 255, 238, 0.1),
    rgba(255, 255, 255, 0.62) 10%,
    rgba(226, 255, 238, 0.08) 28%,
    rgba(140, 228, 175, 0.3) 54%,
    rgba(255, 255, 255, 0.5) 76%,
    rgba(226, 255, 238, 0.1)
  );
}

.btn--primary:hover {
  background:
    radial-gradient(
      120% 100% at var(--gx) var(--gy),
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0) 64%
    ),
    linear-gradient(180deg, #7dffbe, #00e070);
  transform: perspective(1000px) scale(1.012) translateY(-1px);
}

.btn--primary:active {
  transform: perspective(1000px) scale(0.986) translateY(1px);
  transition-duration: 0.09s;
}

.btn--ghost {
  color: var(--bone);
  padding-inline: 6px;
}

.btn--ghost:hover { color: var(--ash); }

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform-origin: left;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.link-underline:hover::after { opacity: 1; transform: scaleX(1.02); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-block: 18px;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease);
}

.nav.is-stuck {
  background: rgba(4, 18, 31, 0.62);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(142, 228, 175, 0.1);
  padding-block: 12px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo__mark {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.logo__mark {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.logo--footer { font-size: 20px; }
.logo--footer .logo__mark { height: 34px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: var(--ash);
  transition: color 0.3s var(--ease);

  white-space: nowrap;
  flex-shrink: 0;
}

.nav__links a:hover { color: var(--bone); }

.nav__burger { display: none; }

.fx-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid rgba(142, 228, 175, 0.16);
  background: rgba(142, 228, 175, 0.04);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.fx-toggle:hover,
.fx-toggle:focus-visible {
  color: var(--bone);
  border-color: rgba(142, 228, 175, 0.34);
  background: rgba(142, 228, 175, 0.09);
}

html.particles-off .particle-layer { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 48px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: 100%;
}

.hero__copy { grid-column: 1; }
.hero__visual { grid-column: 2; }

.hero__copy { position: relative; z-index: 2; }

.hero__title {
  margin-bottom: 22px;
  font-size: clamp(34px, 5.4vw, 80px);

  line-height: 1.14;
}

.hero__title .line { display: block; overflow: hidden; }

.hero__title-sub {
  font-size: 0.42em;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--silver);
}

.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.15s var(--ease) forwards;
}

.hero__title .line:nth-child(1) > span { animation-delay: 0.05s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.14s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.23s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__fade {
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.45s forwards;
}

.hero__fade--2 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(24px, 3vw, 44px);
}

.usps {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 0.9vw, 13px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.usp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 13px;
  border-radius: 15px;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--silver);
}

.usp__icon {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--tether);
}

.board {
  max-width: 540px;
  margin-top: clamp(14px, 2.2vh, 20px);
  padding: clamp(12px, 1.8vh, 17px) clamp(15px, 1.6vw, 20px);
  border-radius: 18px;
}

.board__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.board__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--spring);
}

.board__time {
  font-size: 10.5px;
  letter-spacing: 0.2px;
  color: var(--ash);
}

.board__main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: clamp(6px, 1.1vh, 10px) 0 0;
}

.board__pair {
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
}

.board__rate {
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--spring);
  font-variant-numeric: tabular-nums;
}

.board__delta {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--spring);
  background: rgba(0, 255, 127, 0.12);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.board__delta.is-on { opacity: 1; }

.board__delta.is-down {
  color: var(--ash);
  background: rgba(125, 154, 146, 0.14);
}

.board__coins {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: clamp(9px, 1.4vh, 13px) 0 0;
  padding: 0;
  list-style: none;
}

.board__coin {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1px 6px;
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.04);
}

.board__sym {
  flex-basis: 100%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: var(--ash);
}

.board__price {
  font-size: 13px;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}

.board__coin .board__delta {
  align-self: flex-start;
  padding: 1px 6px;
  font-size: 9.5px;
}

.board__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: clamp(9px, 1.4vh, 13px) 0 0;
  padding-top: clamp(8px, 1.2vh, 12px);
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.board__meta li {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.board__meta span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ash);
}

.board__meta b {
  font-size: 13px;
  font-weight: 400;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}

.hero__visual { min-height: 62svh; }

.particle-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.glass {
  --gx: 50%;
  --gy: 0%;
  --edge: 205deg;
  --press: 0;

  position: relative;
  isolation: isolate;
  border-radius: 22px;

  background:
    radial-gradient(
      130% 96% at var(--gx) var(--gy),
      rgba(184, 240, 214, 0.085),
      rgba(184, 240, 214, 0) 58%
    ),
    linear-gradient(176deg, rgba(237, 245, 225, 0.045), rgba(0, 0, 0, 0.2));

  backdrop-filter: blur(3.5px) saturate(126%) brightness(0.8) contrast(1.04);
  -webkit-backdrop-filter: blur(3.5px) saturate(126%) brightness(0.8) contrast(1.04);

  box-shadow:
    inset 0 1px 0 rgba(226, 255, 238, 0.16),
    inset 0 -1px 0 rgba(5, 56, 107, 0.3),
    0 22px 60px rgba(0, 0, 0, 0.55);

  transform: scale(calc(1 - var(--press) * 0.008));
  transition: transform 0.55s cubic-bezier(0.16, 1.24, 0.3, 1);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    58% 40% at var(--gx) var(--gy),
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0) 72%
  );
  opacity: calc(0.55 + var(--press) * 0.35);
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--edge),
    rgba(0, 255, 127, 0.08),
    rgba(180, 255, 218, 0.5) 10%,
    rgba(0, 255, 127, 0.1) 27%,
    rgba(0, 255, 127, 0.32) 52%,
    rgba(190, 255, 224, 0.42) 74%,
    rgba(0, 255, 127, 0.08)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.btn.btn--primary {
  color: #032013;
  background:
    radial-gradient(
      120% 100% at var(--gx) var(--gy),
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, #00ff7f, #00c964);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 88, 50, 0.45),
    0 14px 34px rgba(0, 0, 0, 0.5);
}

.btn.btn--primary:hover {
  background:
    radial-gradient(
      120% 100% at var(--gx) var(--gy),
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0) 64%
    ),
    linear-gradient(180deg, #7dffbe, #00e070);
}

.btn.btn--primary::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
}

.panel--blur {
  border-radius: 26px;
  padding: clamp(28px, 4.2vw, 72px);
}

.pillars { gap: clamp(12px, 1.4vw, 20px); }

.pillar {
  padding: 22px 20px 20px;
  border-radius: 18px;
}

.faq {
  padding: 6px 24px;
  border-radius: 20px;
}

.faq__item:first-child { border-top: 0; }
.faq__item:last-child { border-bottom: 0; }

.page { position: relative; z-index: 1; }

.rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 15px);
  margin-top: 36px;
}

.rate {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
}

.rate__icon {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 34px;
  height: 34px;
}

.rate__icon svg { width: 16px; height: 16px; }

.rate__title {
  display: flex;
  align-items: center;
  min-height: 34px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 12px;

  padding-left: 46px;
  padding-right: 104px;
}

.rate__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
}

.rate__list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-block: 4px;
}

.rate__list li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--tether);
  opacity: 0.7;
  transform: translateY(-3px);
}

.tbd {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(142, 228, 175, 0.07);
  border: 1px dashed rgba(142, 228, 175, 0.28);
}

.rate .tbd {
  position: absolute;
  top: 18px;
  right: 18px;
}

.faq__a p.is-tbd { color: var(--ash); }
.faq__a p.is-tbd .tbd { margin-right: 10px; vertical-align: 2px; }

.aml {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 30px);
  align-items: start;
  margin-top: 36px;
}

.aml__panel {
  padding: 22px 20px 20px;
  border-radius: 18px;
}

.aml__head {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.aml__text {
  margin: 16px 0 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver);
}

.scan { margin-top: 16px; }

.scan__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.scan__node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.3px;
  text-align: center;
  color: var(--ash);
}

.scan__node svg {
  width: 20px;
  height: 20px;
  color: var(--ash);
}

.scan__node--active {
  border-color: rgba(142, 228, 175, 0.34);
  background: rgba(142, 228, 175, 0.06);
  color: var(--bone);
}

.scan__node--active svg { color: var(--mint); }

.scan__arrow {
  flex: none;
  font-size: 13px;
  color: var(--ash);
  opacity: 0.7;
}

.scan__bases {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.scan__bases span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--hairline);
}

.scan__scale { margin-top: 14px; }

.scan__bar {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--mint-soft) 45%, #d8b45c 72%, #c46a5a);
  opacity: 0.75;
}

.scan__marks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ash);
}

.aml__reasons {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vh, 14px);
}

.reason {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border-radius: 16px;
}

.reason__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--iris);
  padding-top: 2px;
}

.reason__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.reason__text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.42;
  color: var(--silver);
}

.reviews {
  --rev-per: 5;
  --rev-gap: clamp(8px, 0.9vw, 14px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--rev-per) - 1) * var(--rev-gap)) / var(--rev-per));
  gap: var(--rev-gap);
  margin-top: 30px;
}

.review {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.03);

  aspect-ratio: 1080 / 1920;
}

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

.about__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
}

.about__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
}

.about__list li::before {
  content: "";
  flex: none;
  width: 15px;
  height: 15px;
  background: var(--spring);
  transform: translateY(-2px);
  -webkit-mask: var(--check-mask) center / contain no-repeat;
  mask: var(--check-mask) center / contain no-repeat;
}

.loyalty {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
  margin-top: 30px;
}

.loyal__icon {
  width: 20px;
  height: 20px;
  color: var(--tether);
  margin-bottom: 12px;
}

.loyal__num {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--tether);
}

.partner__ref {
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 255, 127, 0.28);
  border-radius: 12px;
  background: rgba(0, 255, 127, 0.07);
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
}

.loyal__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.loyal__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--silver);
}

.path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(20px, 2.6vw, 32px);
}

.path__step {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.path__dot {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ash);
}

.path__dot--now { background: var(--mint); }

.path__title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ash);
}

.path__text {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver);
}

.panel__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 36px;
}

.panel__note {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
}

.cta__note {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ash);
}

.footer__tbd {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: var(--ash);
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.calc {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(14px, 1.6vw, 24px);
  align-items: start;
  margin-top: clamp(18px, 3vh, 34px);
}

.pin .calc__form { padding: clamp(15px, 2vh, 26px); }
.pin .calc__chart { padding: clamp(14px, 1.9vh, 24px); }
.pin .field { margin-bottom: clamp(9px, 1.3vh, 14px); }
.pin .field__row { padding: clamp(7px, 1.1vh, 10px) 14px; }
.pin .field__input { font-size: clamp(17px, 2.4vh, 22px); }
.pin .calc__sum { margin-top: clamp(10px, 1.6vh, 16px); padding-top: clamp(9px, 1.4vh, 14px); }
.pin .calc__form .btn { margin-top: clamp(10px, 1.6vh, 18px); }
.pin .chart__svg { height: clamp(150px, 26vh, 250px); }
.pin .reserves { margin-top: clamp(12px, 2vh, 20px); padding-top: clamp(11px, 1.8vh, 18px); }
.pin .reserves__list li { padding: clamp(7px, 1.1vh, 11px) 13px; }

.calc__form {
  position: relative;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: 20px;
}

.calc__form .btn { width: 100%; margin-top: 18px; }

.field { margin-bottom: 14px; }

.field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--ash);
}

.field__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.04);
  transition: border-color 0.3s var(--ease);
}

.field__row:focus-within { border-color: rgba(0, 255, 127, 0.5); }

.field__input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--bone);
}

.field__input[readonly] { color: var(--spring); }

.field__unit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--ash);
}

.picker {
  position: relative;
  margin-top: 8px;
}

.picker__btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: rgba(6, 17, 9, 0.86);
  color: var(--silver);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.picker__btn:hover { border-color: rgba(0, 255, 127, 0.45); }
.picker.is-open .picker__btn { border-color: rgba(0, 255, 127, 0.55); }

.picker__sym {
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--spring);
}

.picker__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--ash);
}

.picker__caret {
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--spring);
  transition: transform 0.35s var(--ease);
}

.picker.is-open .picker__caret { transform: rotate(180deg); }

.picker__pop {
  position: absolute;
  z-index: 8;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  background: rgba(2, 11, 6, 0.985);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.picker.is-open .picker__pop {
  display: block;
  animation: pickerIn 0.28s var(--ease);
}

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

.picker__search {
  width: 100%;
  padding: 8px 11px;
  border-radius: 9px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.05);
  color: var(--bone);
  font: inherit;
  font-size: 13px;
  outline: none;
}

.picker__search::placeholder { color: var(--ash); }
.picker__search:focus { border-color: rgba(0, 255, 127, 0.5); }

.picker__list {
  max-height: 232px;
  margin: 7px 0 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 127, 0.35) transparent;
}

.picker__list::-webkit-scrollbar { width: 6px; }
.picker__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 255, 127, 0.32);
}

.picker__opt {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--silver);
  cursor: pointer;
}

.picker__opt:hover,
.picker__opt.is-cur { background: rgba(0, 255, 127, 0.12); }

.picker__osym {
  min-width: 62px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--spring);
}

.picker__oname {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--ash);
}

.picker__empty {
  margin: 10px 4px 6px;
  font-size: 12.5px;
  color: var(--ash);
}

.calc__swap {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -4px auto 8px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.07);
  color: var(--spring);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease);
}

.calc__swap svg { width: 17px; height: 17px; }
.calc__swap:hover { transform: rotate(180deg); background: rgba(0, 255, 127, 0.16); }

.calc__sum {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

.calc__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-block: 5px;
}

.calc__row dt {
  font-size: 12.5px;
  color: var(--ash);
}

.calc__row dd {
  margin: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.calc__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ash);
}

.calc__note.is-warn { color: var(--mint-soft); }

.calc__chart {
  padding: clamp(18px, 2vw, 26px);
  border-radius: 20px;
}

.chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.chart__title {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.chart__pair {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--bone);
}

.chart__trend {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--spring);
  background: rgba(0, 255, 127, 0.12);
  font-variant-numeric: tabular-nums;
}

.chart__trend.is-down {
  color: var(--ash);
  background: rgba(125, 154, 146, 0.14);
}

.chart__ranges { display: flex; gap: 6px; }

.chart__ranges button {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--silver);
  transition: color 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.chart__ranges button:hover { color: var(--bone); }

.chart__ranges button.is-active {
  color: #032013;
  background: var(--spring);
  border-color: var(--spring);
}

.chart__plot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.chart__svg {
  display: block;
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  cursor: crosshair;
  touch-action: pan-y;
}

.chart__grid {
  fill: none;
  stroke: rgba(0, 255, 127, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart__area { fill: rgba(0, 255, 127, 0.09); stroke: none; }

.chart__line {
  fill: none;
  stroke: var(--spring);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.chart__cursor {
  stroke: rgba(0, 255, 127, 0.55);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.chart__dot {
  fill: var(--spring);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.chart__hi,
.chart__lo {
  position: absolute;
  right: 8px;
  font-size: 10.5px;
  letter-spacing: 0.3px;
  color: var(--ash);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.chart__hi { top: 6px; }
.chart__lo { bottom: 6px; }

.chart__tip {
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 11px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 127, 0.34);
  background: rgba(3, 16, 10, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  white-space: nowrap;
}

.chart__tip.is-on { opacity: 1; }

.chart__tip-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--spring);
  font-variant-numeric: tabular-nums;
}

.chart__tip-date {
  font-size: 10.5px;
  letter-spacing: 0.3px;
  color: var(--ash);
}

.chart__state {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  font-size: 13px;
  color: var(--ash);
  background: rgba(0, 0, 0, 0.45);
}

.chart__state.is-on { display: grid; }

.chart__hint {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--ash);
}

.reserves {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}

.reserves__title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--spring);
}

.reserves__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reserves__list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.035);
}

.reserves__list span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--ash);
}

.reserves__list b {
  font-size: 15px;
  font-weight: 400;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}

.reviews-wrap { position: relative; }

.reviews {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.reviews::-webkit-scrollbar { display: none; }

.reviews > .review { scroll-snap-align: start; }

.reviews__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  background: rgba(3, 16, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--spring);
  opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.reviews__nav svg { width: 18px; height: 18px; }
.reviews__nav--prev { left: -14px; }
.reviews__nav--next { right: -14px; }

.reviews-wrap:hover .reviews__nav,
.reviews__nav:focus-visible { opacity: 1; }

.reviews__nav:hover { background: rgba(0, 255, 127, 0.2); }
.reviews__nav[disabled] { opacity: 0 !important; pointer-events: none; }

.legal-block {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}

.legal-block__title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--ash);
}

.legal-block__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 30px;
}

.legal-block__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-block__item--wide { grid-column: span 2; }

.legal-block__item span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ash);
}

.legal-block__item b {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--silver);
}

.footer__legal {
  padding: 0;
  font-size: 15px;
  font-weight: 300;
  font-family: inherit;
  text-align: left;
  color: var(--silver);
  transition: color 0.3s var(--ease);
}

.footer__legal:hover,
.footer__legal:focus-visible { color: var(--bone); }

.modal {
  width: min(860px, calc(100vw - 32px));
  max-height: min(90vh, 960px);
  padding: 0;
  border: 1px solid rgba(0, 255, 127, 0.24);
  border-radius: 22px;
  background: #05100b;
  color: var(--bone);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.modal[open] {
  animation: modalIn 0.4s cubic-bezier(0.16, 1.1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.965); }
  to { opacity: 1; transform: none; }
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal[open]::backdrop { animation: fadeIn 0.35s var(--ease); }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 36px) 16px;
  border-bottom: 1px solid var(--hairline);
}

.modal__title {
  margin: 0;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.modal__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--ash);
  border: 1px solid var(--hairline);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.modal__close svg { width: 16px; height: 16px; }

.modal__close:hover,
.modal__close:focus-visible {
  color: var(--spring);
  border-color: rgba(0, 255, 127, 0.45);
  background: rgba(0, 255, 127, 0.08);
}

.modal__body {
  padding: 22px clamp(20px, 3vw, 36px) 32px;
  overflow-y: auto;
  max-height: calc(min(90vh, 960px) - 78px);
  overscroll-behavior: contain;
}

.doc__meta {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ash);
}

.doc h3 {
  margin: 26px 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--spring);
}

.doc h3:first-of-type { margin-top: 0; }

.doc p {
  margin: 0 0 10px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--silver);
  max-width: 78ch;
}

.doc b { font-weight: 600; color: var(--bone); }

.modal--flow { width: min(680px, calc(100vw - 32px)); }

.flow__lede {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--silver);
}

.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow__step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: rgba(0, 255, 127, 0.035);

  animation: flowIn 0.5s var(--ease) backwards;
}

.flow__step:nth-child(1) { animation-delay: 0.1s; }
.flow__step:nth-child(2) { animation-delay: 0.2s; }
.flow__step:nth-child(3) { animation-delay: 0.3s; }

@keyframes flowIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.flow__num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #032013;
  background: linear-gradient(180deg, #00ff7f, #00c964);
}

.flow__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.flow__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--silver);
}

.flow__ref {
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 255, 127, 0.28);
  border-radius: 12px;
  background: rgba(0, 255, 127, 0.07);
}

.flow__ref b { font-weight: 600; color: var(--bone); }

.flow__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 26px;
  animation: flowIn 0.5s var(--ease) 0.4s backwards;
}

.modal--shot {
  width: auto;
  max-width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.modal--shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.modal--shot img.is-in { opacity: 1; }

.shot__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  background: rgba(3, 16, 10, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--spring);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.shot__nav:hover {
  background: rgba(0, 255, 127, 0.18);
  transform: scale(1.08);
}

.shot__nav svg { width: 20px; height: 20px; }
.shot__nav--prev { left: -54px; }
.shot__nav--next { right: -54px; }

.shot__count {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 127, 0.26);
  background: rgba(3, 16, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--silver);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .modal--shot { max-width: calc(100vw - 110px); }
  .shot__nav--prev { left: -50px; }
  .shot__nav--next { right: -50px; }
}

.modal--shot[open] {
  animation: shotIn 0.46s cubic-bezier(0.16, 1.16, 0.3, 1);
}

@keyframes shotIn {
  from { opacity: 0; transform: scale(0.82) translateY(26px) rotate(-1.2deg); }
  60% { opacity: 1; }
  to { opacity: 1; transform: none; }
}

.modal--shot[open] .modal__close--float {
  animation: fadeIn 0.5s var(--ease) 0.22s backwards;
}

.modal__close--float {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.review {
  cursor: zoom-in;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.review:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(0, 255, 127, 0.5);
}

.pillar,
.rate,
.step,
.usp,
.reason,
.aml__panel {
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.pillar:hover,
.rate:hover,
.step:hover,
.usp:hover,
.reason:hover {
  transform: translateY(-4px);
}

.icon-plate,
.pillar__icon,
.loyal__icon,
.usp__icon {
  transition: transform 0.5s cubic-bezier(0.16, 1.2, 0.3, 1);
}

.rate:hover .icon-plate,
.pillar:hover .pillar__icon,
.usp:hover .usp__icon { transform: scale(1.12); }

.step__num {
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    color 0.4s var(--ease);
}

.step:hover .step__num {
  background: rgba(0, 255, 127, 0.16);
  border-color: rgba(0, 255, 127, 0.55);
}

.btn.btn--primary { overflow: hidden; }

.btn.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 0;
}

.btn.btn--primary:hover::before { animation: sheen 0.75s var(--ease); }

@keyframes sheen {
  to { transform: translateX(120%); }
}

.btn.btn--primary > * { position: relative; z-index: 1; }

.about__list.is-in li {
  animation: liIn 0.55s var(--ease) backwards;
}

.about__list.is-in li:nth-child(1) { animation-delay: 0.05s; }
.about__list.is-in li:nth-child(2) { animation-delay: 0.13s; }
.about__list.is-in li:nth-child(3) { animation-delay: 0.21s; }
.about__list.is-in li:nth-child(4) { animation-delay: 0.29s; }

@keyframes liIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}

.nav__links a {
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--spring);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__links a:hover::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .review:hover,
  .pillar:hover,
  .rate:hover,
  .step:hover,
  .usp:hover,
  .reason:hover { transform: none; }
}

.footer__icon {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--spring);
}

.cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}

.cta-bar .btn { width: 100%; }
.cta-bar.is-in { opacity: 1; transform: none; pointer-events: auto; }

@media (max-width: 900px) {
  .cta-bar { display: block; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 15px);
  margin-top: 42px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background:
    radial-gradient(
      130% 96% at 50% 0%,
      rgba(184, 240, 214, 0.06),
      rgba(184, 240, 214, 0) 60%
    ),
    linear-gradient(176deg, rgba(237, 245, 225, 0.035), rgba(0, 0, 0, 0.16));
  border: 1px solid var(--hairline);
}

.step {
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: calc(-1 * clamp(10px, 1.1vw, 15px));
  width: clamp(10px, 1.1vw, 15px);
  height: 1px;
  background: linear-gradient(90deg, rgba(142, 228, 175, 0.4), rgba(142, 228, 175, 0.1));
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--iris);
  border: 1px solid rgba(142, 228, 175, 0.28);
  background: rgba(142, 228, 175, 0.07);
}

.step__title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.step__body {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.45;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 60px;
  margin-top: 48px;
}

.pillar__title {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 9px;
}

.pillar__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
  margin: 0;
}

.icon-plate {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  background: rgba(0, 255, 127, 0.07);
  color: var(--spring);
  flex: none;
}

.icon-plate svg { width: 18px; height: 18px; }

.pillar__icon {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--tether);
}

.faq { margin-top: 48px; }

.faq__item {
  border-top: 1px solid var(--hairline);
}

.faq__item:last-child { border-bottom: 1px solid var(--hairline); }

.faq--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  align-content: start;
}

.faq--split .faq__item:nth-child(2) { border-top: 0; }
.faq--split .faq__item:last-child { border-bottom: 0; }

.faq-block > .faq { margin-top: 36px; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 27px;
  text-align: left;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bone);
  transition: color 0.3s var(--ease);
}

.faq__q:hover { color: var(--silver); }

.faq__sign {
  flex: none;
  width: 14px;
  height: 14px;
  position: relative;
  align-self: center;
  transition: transform 0.45s var(--ease);
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
}

.faq__sign::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq__sign::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease);
}

.faq__item.is-open .faq__sign { transform: rotate(180deg); }
.faq__item.is-open .faq__sign::after { opacity: 0; }

.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.5s var(--ease);
}

.faq__a p {
  margin: 0;
  padding: 0 60px 30px 0;
  max-width: 74ch;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--silver);
}

.cta {
  text-align: center;
  padding-block: clamp(90px, 12vw, 168px);
}

.cta .display {
  margin-bottom: 30px;
  font-size: clamp(38px, 6.4vw, 92px);
}

.cta .lede { margin-inline: auto; }

.footer {
  padding-block: 60px 42px;
  border-top: 1px solid var(--hairline);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ash);
  margin: 0 0 18px;
}

.footer__col ul { list-style: none; margin: 0; padding: 0; }

.footer__col li + li { margin-top: 12px; }

.footer__col a {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover { color: var(--bone); }

.footer__copy {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  font-family: inherit;
  color: var(--silver);
  text-align: left;
  transition: color 0.3s var(--ease);
}

.footer__copy:hover,
.footer__copy:focus-visible { color: var(--bone); }

.footer__copy-label { position: relative; }

.footer__copy.is-copied .footer__copy-label { color: var(--mint-soft); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--ash);
  font-weight: 300;
}

.footer__note {
  max-width: 68ch;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #6a6a6a;
  margin-top: 30px;
}

.about__logo {
  width: clamp(56px, 6vw, 84px);
  height: auto;
  opacity: 0.92;
  margin-top: 6px;
}

.about__text { margin-top: clamp(20px, 2.4vw, 32px); }

.about__text > * + * { margin-top: 12px; }

.about__text p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver);
  max-width: 56ch;
}

.about__claim {
  margin: 28px 0 0;
  max-width: 62ch;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--mint-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (min-width: 901px) and (max-height: 980px) {
  .hero { padding-top: 84px; padding-bottom: 36px; }
  .hero__grid { row-gap: 18px; }
  .hero__title { margin-bottom: 16px; font-size: clamp(34px, 4.5vw, 64px); }
  .hero .lede { font-size: 16px; }
  .hero__visual { min-height: 48svh; }
  .hero__foot { margin-top: 20px; }
  .board__rate { font-size: clamp(24px, 2.4vw, 32px); }
}

@media (max-width: 1080px) {
  .reviews { --rev-per: 4; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side--wide { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav__links a { font-size: 12.5px; letter-spacing: 0.2px; }
  .nav .btn--primary { padding-inline: 18px; }
  .logo { font-size: 16px; }
  .logo__mark { height: 26px; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .wrap { padding-inline: 20px; }

  .pin { min-height: auto; padding-block: clamp(64px, 12vw, 110px); }
  .pin > .wrap { position: static; }
  .pin--tight { min-height: auto; }

  .panel--blur { padding: 24px 20px; border-radius: 22px; }

  .nav__links { display: none; }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__visual { order: -1; min-height: 46svh; }

  .hero__copy { display: flex; flex-direction: column; }
  .hero__fx { order: -1; margin-top: 0; margin-bottom: 20px; }

  .hero__copy,
  .hero__visual,
  .hero__foot { grid-column: 1; }

  .hero__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

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

  .side { width: 100%; }
  .chaos-gap { height: 52svh; }

  .about__text p { font-size: 15px; }
  .about__list { grid-template-columns: 1fr; }
  .panel--blur { border-radius: 22px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__visual { order: 0; }

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

  .aml { grid-template-columns: 1fr; }
  .faq--split { grid-template-columns: 1fr; }
  .faq--split .faq__item:nth-child(2) { border-top: 1px solid var(--hairline); }

  .pillars { grid-template-columns: 1fr; gap: 14px; }

  .rates { grid-template-columns: 1fr; }
  .reviews { --rev-per: 3; }
  .calc { grid-template-columns: 1fr; }
  .reserves__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-block__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-block__item--wide { grid-column: span 2; }
  .loyalty { grid-template-columns: 1fr; gap: 20px; }
  .path { grid-template-columns: 1fr; gap: 20px; }
  .side--center { width: 100%; }

  .scan__arrow { display: none; }
  .scan__flow { gap: 8px; }

  .footer { padding-bottom: 96px; }

  .faq__a p { padding-right: 0; }
}

@media (max-width: 900px) {
  .split > *,
  .usps > *,
  .rates > *,
  .reviews > *,
  .steps > *,
  .pillars > *,
  .aml > *,
  .aml__reasons > *,
  .loyalty > *,
  .path > *,
  .scan__flow > *,
  .footer__grid > * {
    min-width: 0;
  }

  .step:not(:last-child)::after { display: none; }

  .step__body,
  .pillar__text,
  .aml__text,
  .reason__text,
  .rate__list li,
  .faq__a p,
  .lede,
  p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .reviews { --rev-per: 2; }
  .legal-block__grid { grid-template-columns: 1fr; }
  .legal-block__item--wide { grid-column: span 1; }
  .board__coins { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .board__meta { gap: 6px 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__actions { gap: 12px; }

  .hero__actions .btn--primary,
  .panel__foot .btn,
  .cta .btn {
    width: 100%;
  }

  .panel__foot { gap: 14px; }

  .nav .btn--primary { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__title .line > span { transform: none; }
  .hero__fade { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

html.fx-lean .glass:not(.btn--primary) {
  backdrop-filter: blur(2px) saturate(120%) brightness(0.82);
  -webkit-backdrop-filter: blur(2px) saturate(120%) brightness(0.82);
}

html.fx-lean .nav.is-stuck {
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

html.fx-lean .btn--primary {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.fx-min .glass,
html.fx-min .nav.is-stuck,
html.fx-min .btn--primary {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.fx-min .glass:not(.btn--primary) {
  background:
    radial-gradient(
      130% 96% at var(--gx) var(--gy),
      rgba(184, 240, 214, 0.085),
      rgba(184, 240, 214, 0) 58%
    ),
    linear-gradient(176deg, rgba(237, 245, 225, 0.05), rgba(0, 0, 0, 0.34)),
    rgba(3, 12, 20, 0.55);
}

html.fx-min .nav.is-stuck { background: rgba(4, 18, 31, 0.9); }
