@font-face {
  font-family: "PT Sans";
  src: url("assets/fonts/PTS55F-webfont.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/opensans-regular-webfont.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/opensans-light-webfont.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/opensans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}

:root {
  --slate: #465a73;
  --deep: #34485f;
  --soft: #8194ac;
  --cyan: #0aadef;
  --cyan-bright: #2bc2ff;
  --green: #25b02b;
  --orange: #fc8219;
  --text: #5e5e5e;
  --muted: #9aa8b9;
  --line: #e5e5e5;
  --paper: #ffffff;
  --max-width: 1354px;
  --focus: #ffffff;
  --transition: 150ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--cyan);
  border: 1px solid var(--paper);
  border-radius: 2px;
  font: 13px "PT Sans", Arial, sans-serif;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  z-index: 200;
  top: 0;
  height: 50px;
  color: var(--paper);
  background: var(--deep);
  font-family: "PT Sans", Arial, sans-serif;
}

.topbar__inner {
  width: min(1400px, calc(100% - 40px));
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: none;
}

.logo {
  display: block;
  width: 145px;
  height: 30px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 34px;
  font-size: 14px;
}

.nav a,
.nav .support-trigger {
  position: relative;
  color: var(--paper);
  transition: color var(--transition);
}

.nav a::after,
.nav .support-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav a:hover,
.nav .support-trigger:hover,
.nav a:focus-visible,
.nav .support-trigger:focus-visible,
.nav .active {
  color: #7dc6f1;
}

.nav a:hover::after,
.nav .support-trigger:hover::after,
.nav a:focus-visible::after,
.nav .support-trigger:focus-visible::after,
.nav .active::after {
  transform: scaleX(1);
}

.nav .support-trigger {
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action {
  min-height: 33px;
  padding: 7px 16px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  border: 1px solid var(--cyan);
  border-radius: 2px;
  font-size: 14px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.header-action--launch {
  background: transparent;
}

.header-action--download {
  background: var(--cyan);
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible {
  color: var(--cyan);
  background: var(--paper);
  border-color: var(--paper);
}

.app-launch-backdrop {
  position: fixed;
  z-index: 440;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(25, 43, 62, 0.78);
  backdrop-filter: blur(5px);
}

.app-launch-backdrop[hidden] {
  display: none;
}

.app-launch-dialog {
  position: relative;
  width: min(500px, 100%);
  padding: 38px;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep);
  border: 1px solid rgba(125, 198, 241, 0.42);
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(17, 31, 46, 0.56);
}

.app-launch-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 108px;
  height: 3px;
  background: var(--cyan-bright);
}

.app-launch-dialog h2 {
  max-width: 410px;
  margin: 13px 0 14px;
  color: var(--paper);
  font-size: 34px;
  line-height: 1.16;
  font-weight: 300;
}

.app-launch-dialog__close {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 40px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.app-launch-dialog__close:hover,
.app-launch-dialog__close:focus-visible {
  color: var(--paper);
  outline: 2px solid rgba(125, 198, 241, 0.58);
  outline-offset: -4px;
}

.app-launch-dialog__kicker {
  color: var(--cyan-bright);
  font: 700 11px/1.2 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-launch-dialog__copy {
  margin: 0;
  color: #b8c8d8;
  font-size: 15px;
  line-height: 1.58;
}

.app-launch-status {
  min-height: 82px;
  margin-top: 26px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(125, 198, 241, 0.22);
  border-radius: 2px;
}

.app-launch-status[hidden],
.app-launch-result[hidden] {
  display: none;
}

.app-launch-status span,
.app-launch-status strong,
.app-launch-status small {
  display: block;
}

.app-launch-status strong {
  color: var(--paper);
  font: 600 14px/1.35 "PT Sans", Arial, sans-serif;
}

.app-launch-status small {
  margin-top: 3px;
  color: #8fa4b8;
  font-size: 12px;
}

.app-launch-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(125, 198, 241, 0.24);
  border-top-color: var(--cyan-bright);
  border-radius: 50%;
  animation: app-launch-spin 0.8s linear infinite;
}

.app-launch-result {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: stretch;
  text-align: center;
}

.app-launch-download {
  width: 100%;
  min-height: 54px;
  gap: 8px;
}

.app-launch-retry {
  min-height: 42px;
  color: #d7e4ef;
  background: transparent;
  border: 1px solid rgba(125, 198, 241, 0.34);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
}

.app-launch-retry:hover,
.app-launch-retry:focus-visible {
  color: var(--paper);
  background: rgba(125, 198, 241, 0.1);
  border-color: var(--cyan-bright);
}

.app-launch-result > small {
  color: #8fa4b8;
  font-size: 12px;
}

body.app-launch-open {
  overflow: hidden;
}

@keyframes app-launch-spin {
  to { transform: rotate(360deg); }
}

.hero {
  min-height: 750px;
  color: var(--paper);
  background: var(--slate);
  overflow: hidden;
}

.hero-grid {
  min-height: 750px;
  display: grid;
  grid-template-columns: 43% 57%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 99px 55px 68px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--cyan-bright);
  font: 13px/1.1 "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(54px, 4.8vw, 72px);
  line-height: 0.99;
  font-weight: 300;
  letter-spacing: -3.6px;
}

.lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 17px;
  line-height: 1.65;
}

.benefit-line {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font: 12px/1.4 "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}

.button {
  min-height: 43px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 2px;
  font: 15px "PT Sans", Arial, sans-serif;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.text-link {
  padding-bottom: 3px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font: 15px "PT Sans", Arial, sans-serif;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan-bright);
  border-color: currentColor;
}

.hero-platforms {
  position: absolute;
  bottom: 68px;
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font: 11px "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.product-surfaces {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.product-surface {
  position: relative;
  min-width: 0;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  overflow: visible;
}

.product-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
}

.product-surface.market::before {
  height: 31%;
  background: var(--cyan-bright);
}

.product-surface.trade::before {
  height: 55%;
  background: var(--green);
}

.product-surface.wallets::before {
  height: 74%;
  background: var(--muted);
}

.product-surface.farm::before {
  height: 89%;
  background: var(--orange);
}

.product-surface.invest::before {
  height: 100%;
  background: var(--cyan);
}

.product-surface h2 {
  position: absolute;
  left: 50%;
  bottom: 82px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font: 300 31px "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-90deg);
}

.product-surface p {
  position: absolute;
  top: 39px;
  right: calc(100% + 12px);
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font: 10px/1.5 "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.product-surface.market h2 {
  color: #7bdcff;
}

.product-surface.trade h2 {
  color: #78d47c;
}

.product-surface.farm h2 {
  color: #ffad66;
}

.surface-key {
  height: 3px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.surface-key span:nth-child(1) { background: var(--cyan-bright); }
.surface-key span:nth-child(2) { background: var(--green); }
.surface-key span:nth-child(3) { background: var(--muted); }
.surface-key span:nth-child(4) { background: var(--orange); }
.surface-key span:nth-child(5) { background: var(--cyan); }

.workspace {
  position: relative;
  padding: 0 0 108px;
  color: var(--text);
  background: var(--paper);
  overflow: hidden;
}

.workspace > .shell {
  width: min(1260px, calc(100% - 64px));
}

.workspace-head {
  position: relative;
  padding: 94px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.workspace-head::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 1px;
  height: 31px;
  background: var(--slate);
}

.workspace-head .section-label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.workspace-head h2 {
  max-width: 800px;
  margin: 18px auto 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.workspace-intro {
  max-width: 770px;
  margin: 27px auto 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.trade-context {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trade-context::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--slate);
}

.trade-side {
  padding-top: 51px;
}

.trade-side.buy {
  padding-right: 73px;
}

.trade-side.sell {
  padding-left: 73px;
}

.trade-side-head {
  padding-bottom: 21px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.trade-side h3 {
  margin: 0;
  font: 400 48px "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.trade-side.buy h3 {
  color: var(--green);
}

.trade-side.sell h3 {
  color: var(--cyan);
}

.trade-side-head p {
  margin: 0;
  color: var(--muted);
  font: 600 12px "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.feature {
  min-height: 180px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.feature h4 {
  margin: 0;
  color: var(--slate);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}

.feature p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.pair-hinge {
  position: absolute;
  top: 269px;
  left: 50%;
  padding: 7px 14px;
  color: var(--cyan);
  background: var(--paper);
  font: 600 13px "PT Sans", Arial, sans-serif;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-90deg);
}

.market-section {
  position: relative;
  min-height: 756px;
  color: var(--text);
  background: var(--paper);
  overflow: hidden;
}

.market-section::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--cyan);
}

.market-section > .shell {
  width: min(1260px, calc(100% - 64px));
}

.market-section__layout {
  padding-top: 76px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(570px, 1.18fr);
  gap: 64px;
  align-items: center;
}

.market-section__copy {
  padding-bottom: 4px;
}

.market-section__copy .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.market-section__copy h2 {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.market-section__intro {
  max-width: 520px;
  margin: 27px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.market-section__supporting {
  margin: 24px 0 0;
  color: var(--slate);
  font: 600 12px/1.5 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-section__copy .button {
  margin-top: 32px;
}

.market-section__copy .button:hover,
.market-section__copy .button:focus-visible {
  color: var(--cyan);
  background: var(--paper);
  border-color: var(--cyan);
  outline-color: var(--slate);
}

.market-pair-field {
  position: relative;
  min-height: 540px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-pair-list {
  position: absolute;
  inset: 42px 38px 58px;
  display: grid;
  align-content: space-around;
}

.market-pair {
  width: max-content;
  display: flex;
  align-items: baseline;
  color: var(--slate);
  font-size: 60px;
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -3px;
  white-space: nowrap;
}

.market-pair:nth-child(1) { justify-self: start; }
.market-pair:nth-child(2) { justify-self: center; }
.market-pair:nth-child(3) { justify-self: end; }

.market-pair span {
  color: var(--cyan);
}

.market-pair i,
.market-pair b {
  font: inherit;
}

.market-pair i {
  margin: 0 9px;
  color: #ccd6e0;
}

.market-pair b {
  color: var(--slate);
}

.market-pair-caption {
  position: absolute;
  bottom: 0;
  left: 46px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font: 12px/1.4 "PT Sans", Arial, sans-serif;
}

.market-pair-caption::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--cyan);
}

.trade-section {
  position: relative;
  padding: 0 0 96px;
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid var(--cyan);
  overflow: hidden;
}

.trade-section > .shell {
  width: min(1260px, calc(100% - 64px));
}

.trade-section__intro {
  padding: 90px 0 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: 92px;
  align-items: start;
}

.trade-section__heading .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.trade-section__heading h2 {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.trade-section__body {
  max-width: 570px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.trade-section__copy {
  padding-top: 34px;
}

.trade-section__copy .button {
  margin-top: 30px;
}

.trade-section__copy .button:hover,
.trade-section__copy .button:focus-visible {
  color: var(--cyan);
  background: var(--paper);
  border-color: var(--cyan);
  outline-color: var(--slate);
}

.trade-field {
  position: relative;
  height: 350px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trade-field::before,
.trade-field::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: var(--line);
}

.trade-field::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.trade-field::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.trade-field__contexts {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.trade-field__context {
  min-width: 0;
  padding: 34px 44px;
  display: flex;
  color: var(--slate);
  font: 400 48px/1.05 "Open Sans", Arial, sans-serif;
  letter-spacing: -1.6px;
  text-transform: uppercase;
}

.trade-field__context--chart,
.trade-field__context--order-book {
  align-items: flex-start;
}

.trade-field__context--buy-sell,
.trade-field__context--history {
  align-items: flex-end;
}

.trade-field__context--order-book,
.trade-field__context--history {
  justify-content: flex-end;
  text-align: right;
}

.trade-field__context--buy-sell span {
  color: var(--green);
}

.trade-field__context--buy-sell i,
.trade-field__context--buy-sell b {
  font: inherit;
}

.trade-field__context--buy-sell i {
  margin: 0 10px;
  color: var(--line);
}

.trade-field__context--buy-sell b {
  color: var(--cyan);
}

.wallets-section {
  min-height: 756px;
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid var(--cyan);
  overflow: hidden;
}

.wallets-section > .shell {
  width: min(1260px, calc(100% - 64px));
}

.wallets-section__layout {
  min-height: 755px;
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(580px, 1.18fr);
  gap: 94px;
  align-items: center;
}

.wallets-section__content .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.wallets-section__content h2 {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.wallets-section__copy {
  padding-top: 29px;
}

.wallets-section__body {
  max-width: 570px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.wallets-section__copy .button {
  margin-top: 30px;
}

.wallets-section__copy .button:hover,
.wallets-section__copy .button:focus-visible {
  color: var(--cyan);
  background: var(--paper);
  border-color: var(--cyan);
  outline-color: var(--slate);
}

.wallets-state-field {
  position: relative;
  min-height: 565px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.wallets-state-field__anchor {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgba(70, 90, 115, 0.07);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(100px, 12vw, 170px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -9px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.wallets-state-list {
  position: absolute;
  z-index: 1;
  inset: 42px 38px;
  display: grid;
  align-content: space-between;
}

.wallets-state {
  position: relative;
  width: max-content;
  color: var(--slate);
  font-size: clamp(38px, 4.25vw, 62px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -2.6px;
  text-transform: uppercase;
}

.wallets-state:nth-child(1) {
  justify-self: start;
  color: var(--cyan);
}

.wallets-state:nth-child(2) {
  justify-self: end;
}

.wallets-state:nth-child(3) {
  justify-self: start;
}

.wallets-state:nth-child(4) {
  justify-self: end;
  color: var(--muted);
}

.ecosystem-section {
  min-height: 820px;
  color: var(--paper);
  background: var(--deep);
  border-top: 1px solid var(--cyan);
  overflow: hidden;
}

.ecosystem-section > .shell {
  width: min(1260px, calc(100% - 64px));
  padding-top: 78px;
  padding-bottom: 66px;
}

.ecosystem-section__intro {
  display: grid;
  grid-template-columns: minmax(450px, 0.95fr) minmax(480px, 1.05fr);
  gap: 92px;
  align-items: start;
}

.ecosystem-section__intro .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.ecosystem-section__intro h2 {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--paper);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.ecosystem-section__body {
  max-width: 570px;
  margin: 34px 0 0;
  color: #c6d0db;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.ecosystem-mechanisms {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ecosystem-mechanism {
  min-height: 155px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ecosystem-mechanism h3 {
  margin: 0;
  font-size: 33px;
  line-height: 1;
  font-weight: 400;
}

.ecosystem-mechanism--farm h3 {
  color: var(--orange);
}

.ecosystem-mechanism--invest h3 {
  color: var(--cyan-bright);
}

.ecosystem-mechanism__body {
  min-width: 0;
}

.ecosystem-mechanism__body > p {
  margin: 0 0 19px;
  color: #c7d1dc;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.ecosystem-mechanism__terms {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  list-style: none;
}

.ecosystem-mechanism__terms li {
  display: flex;
  align-items: center;
}

.ecosystem-mechanism__terms li + li::before {
  content: "/";
  margin-right: clamp(24px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.2);
}

.ecosystem-actions {
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ecosystem-action {
  width: 178px;
  min-height: 43px;
  flex: 0 0 178px;
}

.ecosystem-action--farm {
  background: var(--orange);
  border-color: var(--orange);
}

.ecosystem-action--invest {
  background: var(--cyan);
  border-color: var(--cyan);
}

.ecosystem-action--farm:hover,
.ecosystem-action--farm:focus-visible {
  color: var(--orange);
  background: var(--deep);
  border-color: var(--orange);
  outline-color: var(--paper);
}

.ecosystem-action--invest:hover,
.ecosystem-action--invest:focus-visible {
  color: var(--cyan-bright);
  background: var(--deep);
  border-color: var(--cyan-bright);
  outline-color: var(--paper);
}

.ecosystem-section__closing {
  margin: 26px 0 0;
  color: #c1ccd8;
  font: 600 12px/1.5 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.platforms-section {
  min-height: 900px;
  padding: 74px 0 58px;
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid var(--cyan);
  overflow: hidden;
}

.platforms-section > .shell {
  width: min(1260px, calc(100% - 64px));
}

.platforms-section__intro {
  text-align: center;
}

.platforms-section__intro .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.platforms-section__intro h2 {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.platforms-section__intro > p:last-child {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.platforms-field {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-option {
  position: relative;
  min-height: 345px;
  padding: 42px 38px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms ease;
}

.platform-option:first-child {
  border-left: 0;
}

.platform-option__icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
}

.platform-option h3 {
  margin: 20px 0 12px;
  color: var(--slate);
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -1px;
}

.platform-option__description {
  min-height: 68px;
  max-width: 315px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.platform-download {
  position: relative;
  overflow: hidden;
  width: 210px;
  min-height: 43px;
  margin-top: 25px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.platform-download::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.26) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.platform-option:hover {
  background: rgba(32, 174, 232, 0.035);
  transform: translateY(-3px);
}

.platform-option:hover .platform-option__icon {
  transform: translateY(-3px) scale(1.06);
}

.platform-download:hover,
.platform-download:focus-visible {
  color: var(--paper);
  background: #079fd9;
  border-color: #079fd9;
  box-shadow: 0 9px 22px rgba(13, 166, 223, 0.2);
  transform: translateY(-2px);
}

.platform-download:hover::after,
.platform-download:focus-visible::after {
  transform: translateX(130%);
}

.platform-download:active {
  box-shadow: 0 3px 10px rgba(13, 166, 223, 0.16);
  transform: translateY(0) scale(0.985);
}

.platforms-motion-ready .platforms-section__intro,
.platforms-motion-ready .platform-option,
.platforms-motion-ready .platforms-section__safety {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.platforms-motion-ready.is-visible .platforms-section__intro,
.platforms-motion-ready.is-visible .platform-option,
.platforms-motion-ready.is-visible .platforms-section__safety {
  opacity: 1;
  transform: translateY(0);
}

.platforms-motion-ready.is-visible .platform-option:nth-child(1) { transition-delay: 70ms; }
.platforms-motion-ready.is-visible .platform-option:nth-child(2) { transition-delay: 130ms; }
.platforms-motion-ready.is-visible .platform-option:nth-child(3) { transition-delay: 190ms; }
.platforms-motion-ready.is-visible .platforms-section__safety { transition-delay: 230ms; }

.platforms-motion-ready.is-visible .platform-option:hover {
  transform: translateY(-3px);
}

.platform-option__patch {
  margin: 17px 0 0;
  color: var(--cyan);
  font: 600 12px/1.2 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platforms-section__safety {
  margin: 29px 0 0;
  color: var(--muted);
  font: 12px/1.5 "PT Sans", Arial, sans-serif;
  text-align: center;
}

@media (min-width: 901px) {
  .platforms-section__intro h2 {
    white-space: nowrap;
  }
}

.faq-section {
  min-height: 930px;
  padding: 82px 0 76px;
  color: var(--text);
  background: #f6f7f8;
  border-top: 1px solid var(--cyan);
}

.faq-section > .shell {
  width: min(1260px, calc(100% - 64px));
}

.faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 120px;
  align-items: start;
}

.faq-intro {
  padding-top: 3px;
}

.faq-intro .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.faq-intro h2 {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.faq-list {
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 83px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 28px;
  align-items: center;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

.faq-question {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
}

.faq-disclosure {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.faq-disclosure::before,
.faq-disclosure::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 8px;
  width: 12px;
  height: 1px;
  background: var(--cyan);
  transition: transform 160ms ease;
}

.faq-disclosure::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-disclosure::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 720px;
  margin: -5px 58px 27px 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}

.final-cta {
  padding: 78px 0 82px;
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid var(--cyan);
}

.final-cta > .shell,
.site-footer > .shell {
  width: min(1260px, calc(100% - 64px));
}

.final-cta__layout {
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(470px, 1.05fr);
  gap: 112px;
  align-items: start;
}

.final-cta .section-label {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.final-cta h2 {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.final-cta__copy {
  padding-top: 32px;
}

.final-cta__copy > p:first-child {
  max-width: 570px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.final-cta__action {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.final-cta__action .button {
  width: 210px;
  min-height: 43px;
}

.final-cta__release {
  margin: 0;
  color: var(--muted);
  font: 600 12px/1.45 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--paper);
  background: var(--deep);
  border-top: 1px solid var(--cyan);
}

.footer-top {
  padding: 50px 0 43px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 116px;
}

.footer-brand {
  align-self: start;
  display: inline-flex;
  width: max-content;
}

.footer-logo {
  display: block;
  width: 145px;
  height: 30px;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 68px;
}

.footer-group h2 {
  margin: 0 0 16px;
  color: var(--cyan-bright);
  font: 600 12px/1.2 "PT Sans", Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-group a,
.footer-group button {
  padding: 0;
  color: #d7e0e9;
  background: none;
  border: 0;
  cursor: pointer;
  font: 13px/1.4 "PT Sans", Arial, sans-serif;
}

.footer-group a:hover,
.footer-group button:hover,
.footer-group a:focus-visible,
.footer-group button:focus-visible {
  color: var(--cyan-bright);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  min-height: 76px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright {
  margin: 0;
  color: #c1ccd8;
  font: 12px/1.5 "PT Sans", Arial, sans-serif;
}

.social-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
}

.social-link img {
  width: 14px;
  height: 14px;
  display: block;
}

.social-link span {
  color: #d7e0e9;
  font: 600 10px/1 "PT Sans", Arial, sans-serif;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--cyan-bright);
  outline: 2px solid transparent;
}

.support-panel {
  position: fixed;
  z-index: 420;
  right: 24px;
  bottom: 94px;
  width: min(400px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 80px));
  color: #5e5e5e;
  background: var(--paper);
  border: 1px solid #d9dfe7;
  border-top: 3px solid var(--cyan);
  border-radius: 2px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  box-shadow: 0 8px 28px rgba(26, 43, 62, 0.24);
}

.support-panel[hidden] {
  display: none;
}

.support-panel__header {
  min-height: 92px;
  padding: 17px 18px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
  background: var(--deep);
  border-bottom: 1px solid #d9dfe7;
}

.support-panel__header p {
  margin: 0 0 5px;
  color: var(--cyan-bright);
  font: 10px/1.2 "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.support-panel__header h2 {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 300;
}

.support-panel__header span {
  color: rgba(255, 255, 255, 0.62);
  font: 11px "PT Sans", Arial, sans-serif;
}

.support-close {
  width: 32px;
  height: 32px;
  flex: none;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.support-close:hover,
.support-close:focus-visible {
  color: var(--deep);
  background: var(--paper);
}

.support-close span {
  color: inherit;
  font-size: 22px;
  line-height: 1;
}

.support-thread {
  min-height: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6f7f8;
  overflow-y: auto;
}

.support-message {
  max-width: 88%;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.55;
}

.support-message.is-agent {
  align-self: flex-start;
  color: #5e5e5e;
  background: var(--paper);
}

.support-message.is-user {
  align-self: flex-end;
  color: var(--paper);
  background: var(--soft);
  border-color: var(--soft);
}

.support-message.is-error {
  color: #a30d0d;
  border-color: #e2a4a4;
  background: #fff5f5;
}

.support-form {
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.support-form input,
.support-form textarea {
  width: 100%;
  min-height: 44px;
  resize: none;
  padding: 11px 12px;
  color: #5e5e5e;
  background: var(--paper);
  border: 1px solid #d9dfe7;
  border-radius: 2px;
  outline: 0;
  font-size: 12px;
  line-height: 1.5;
}

.support-form textarea {
  max-height: 100px;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(10, 173, 239, 0.16);
}

.support-form input:disabled,
.support-form textarea:disabled {
  color: #7e8997;
  background: #f6f7f8;
}

.support-form button {
  min-height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--paper);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 2px;
}

.support-form button:hover:not(:disabled),
.support-form button:focus-visible {
  color: var(--cyan);
  background: var(--paper);
}

.support-form button:disabled {
  cursor: default;
  opacity: 0.48;
}

.support-form-error {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #a30d0d;
  font: 11px/1.45 "PT Sans", Arial, sans-serif;
}

.support-form-error[hidden] {
  display: none;
}

.support-launcher {
  position: fixed;
  z-index: 430;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--paper);
  background: var(--cyan);
  border: 1px solid #079bd6;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(26, 43, 62, 0.25);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.support-launcher:hover,
.support-launcher:focus-visible {
  color: var(--paper);
  background: #079bd6;
  border-color: var(--paper);
  outline: 2px solid var(--deep);
  outline-offset: 2px;
  transform: translateY(-2px);
}

.support-launcher:active {
  transform: translateY(0);
}

.support-launcher svg,
.support-launcher img {
  grid-area: 1 / 1;
  width: 28px;
  height: 28px;
  transition: opacity var(--transition), transform var(--transition);
}

.support-launcher svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-launcher__close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
}

.support-launcher.is-open .support-launcher__help {
  opacity: 0;
  transform: rotate(45deg) scale(0.8);
}

.support-launcher.is-open .support-launcher__close {
  opacity: 1;
  transform: none;
}

.inline-support-trigger {
  margin: 0;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
}

.inline-support-trigger:hover,
.inline-support-trigger:focus-visible {
  color: #087fab;
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(var(--max-width), calc(100% - 16px));
  }

  .topbar__inner {
    width: calc(100% - 24px);
  }

  .logo {
    width: 145px;
  }

  .header-action {
    min-height: 31px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .app-launch-dialog {
    padding: 32px 24px 26px;
  }

  .app-launch-dialog h2 {
    padding-right: 22px;
    font-size: 30px;
  }

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

  .hero-copy {
    min-height: 620px;
    padding: 76px 0 52px;
  }

  .hero-copy h1 {
    max-width: 690px;
  }

  .lead {
    max-width: 610px;
  }

  .hero-platforms {
    bottom: 42px;
  }

  .product-surfaces {
    min-height: 430px;
  }

  .product-surface h2 {
    font-size: 22px;
  }

  .workspace > .shell {
    width: min(1260px, calc(100% - 34px));
  }

  .workspace-head h2 {
    font-size: 48px;
  }

  .trade-context {
    grid-template-columns: 1fr;
  }

  .trade-context::before,
  .pair-hinge {
    display: none;
  }

  .trade-side.buy,
  .trade-side.sell {
    padding-right: 0;
    padding-left: 0;
  }

  .market-section {
    min-height: 0;
  }

  .market-section > .shell {
    width: min(1260px, calc(100% - 34px));
  }

  .market-section__layout {
    padding-top: 80px;
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .market-section__copy h2 {
    max-width: 690px;
    font-size: 48px;
  }

  .market-section__intro {
    max-width: 650px;
  }

  .market-pair-field {
    min-height: 410px;
    border-top: 1px solid var(--line);
  }

  .market-pair-list {
    inset: 48px 24px 58px;
  }

  .market-pair {
    font-size: clamp(43px, 11.5vw, 58px);
    letter-spacing: -2.4px;
  }

  .trade-section {
    padding-bottom: 78px;
  }

  .trade-section > .shell {
    width: min(1260px, calc(100% - 34px));
  }

  .trade-section__intro {
    padding: 80px 0 78px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .trade-section__heading h2 {
    max-width: 690px;
    font-size: 48px;
  }

  .trade-section__body {
    max-width: 650px;
  }

  .trade-section__copy {
    padding-top: 0;
  }

  .trade-field {
    height: 360px;
  }

  .trade-field__context {
    padding: 29px 24px;
    font-size: clamp(27px, 7.5vw, 36px);
    letter-spacing: -1px;
  }

  .trade-field__context--order-book {
    max-width: 100%;
    line-height: 1.02;
  }

  .wallets-section {
    min-height: 0;
  }

  .wallets-section > .shell {
    width: min(1260px, calc(100% - 34px));
  }

  .wallets-section__layout {
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .wallets-section__content h2 {
    max-width: 690px;
    font-size: 48px;
  }

  .wallets-state-field {
    min-height: 470px;
  }

  .ecosystem-section > .shell {
    width: min(1260px, calc(100% - 34px));
    padding-top: 76px;
    padding-bottom: 70px;
  }

  .ecosystem-section__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ecosystem-section__intro h2 {
    max-width: 690px;
    font-size: 48px;
  }

  .ecosystem-section__body {
    max-width: 650px;
    margin-top: 0;
  }

  .ecosystem-mechanism {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem-actions {
    padding: 26px 0;
  }

  .ecosystem-section__closing {
    white-space: normal;
  }

  .platforms-section {
    min-height: 0;
    padding: 60px 0 44px;
  }

  .platforms-section > .shell {
    width: min(660px, calc(100% - 34px));
  }

  .platforms-section__intro {
    text-align: left;
  }

  .platforms-section__intro h2 {
    margin-left: 0;
    font-size: 48px;
  }

  .platforms-section__intro > p:last-child {
    margin-left: 0;
  }

  .platforms-field {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .platform-option {
    min-height: 0;
    padding: 35px 0 34px;
    align-items: flex-start;
    text-align: left;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .platform-option:first-child {
    border-top: 0;
  }

  .platform-option__description {
    min-height: 0;
  }

  .platform-download {
    width: 100%;
  }

  .faq-section {
    min-height: 0;
    padding: 60px 0 56px;
  }

  .faq-section > .shell {
    width: min(660px, calc(100% - 34px));
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    padding-top: 0;
  }

  .faq-intro h2 {
    max-width: 540px;
    font-size: 48px;
  }

  .faq-item summary {
    min-height: 78px;
    padding: 22px 0;
    gap: 20px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    margin-right: 48px;
  }

  .final-cta {
    padding: 60px 0 62px;
  }

  .final-cta > .shell,
  .site-footer > .shell {
    width: min(660px, calc(100% - 34px));
  }

  .final-cta__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .final-cta h2 {
    max-width: 600px;
    font-size: 48px;
  }

  .final-cta__copy {
    padding-top: 0;
  }

  .final-cta__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .final-cta__action .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-nav {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 38px 42px;
  }

  .footer-group--legal {
    grid-column: 1 / -1;
  }

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

}

@media (max-width: 560px) {
  .brand .logo {
    width: 145px;
    height: 30px;
  }

  .hero-copy {
    min-height: 620px;
    padding-top: 72px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 12.7vw, 56px);
    line-height: 0.98;
    letter-spacing: -2.6px;
  }

  .lead {
    margin-top: 29px;
    font-size: 16px;
    line-height: 1.58;
  }

  .benefit-line {
    margin-top: 17px;
    font-size: 11px;
  }

  .button-row {
    gap: 27px;
    margin-top: 32px;
  }

  .button {
    min-width: 0;
    padding-inline: 20px;
    text-align: center;
  }

  .text-link {
    max-width: 128px;
  }

  .product-surfaces {
    min-height: 430px;
  }

  .product-surface p {
    top: 35px;
    left: 11px;
    font-size: 9px;
  }

  .product-surface h2 {
    bottom: 45px;
    font-size: 21px;
  }

  .market-section__layout {
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .market-section__supporting {
    max-width: 360px;
  }

  .market-pair-field {
    min-height: 390px;
  }

  .market-pair-list {
    right: 16px;
    left: 2px;
  }

  .market-pair-caption {
    left: 0;
  }

  .trade-section {
    padding-bottom: 70px;
  }

  .trade-section__intro {
    padding-top: 74px;
    padding-bottom: 72px;
  }

  .trade-field__context {
    padding: 27px 15px;
  }

  .trade-field__context--buy-sell i {
    margin-inline: 5px;
  }

  .wallets-state-list {
    inset: 42px 14px;
  }

  .wallets-state {
    font-size: 40px;
  }

  .wallets-state-field__anchor {
    font-size: 115px;
  }

  .ecosystem-mechanism__terms {
    display: grid;
    gap: 15px;
    font-size: 34px;
  }

  .ecosystem-mechanism__terms li + li::before {
    display: none;
  }

  .ecosystem-actions {
    gap: 12px;
  }

  .ecosystem-action {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 12px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer {
    margin-right: 0;
  }

  .footer-nav {
    gap: 34px 28px;
  }

  .support-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    height: min(520px, calc(100vh - 28px));
  }
}

@media (max-width: 380px) {
  .header-action {
    padding-inline: 9px;
    font-size: 11px;
  }

  .hero-copy {
    min-height: 650px;
  }

  .button-row {
    gap: 16px;
  }

  .button,
  .text-link {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Legal Center */
.legal-page {
  color: var(--text);
  background: #f2f4f6;
}

.legal-main {
  min-height: 70vh;
  background: #f2f4f6;
  border-top: 1px solid var(--cyan);
}

.legal-layout {
  width: min(1260px, calc(100% - 64px));
  padding: 58px 0 96px;
  display: grid;
  grid-template-columns: 314px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 24px;
  padding: 4px 28px 30px 0;
  border-right: 1px solid #ccd4dc;
}

.legal-eyebrow {
  margin: 0;
  color: var(--cyan);
  font: 600 11px/1.25 "PT Sans", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-index h1 {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -1px;
}

.legal-meta {
  margin: 30px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid #ccd4dc;
}

.legal-meta div {
  min-height: 48px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  border-bottom: 1px solid #dce2e7;
}

.legal-meta dt,
.legal-meta dd {
  margin: 0;
  font: 12px/1.45 "PT Sans", Arial, sans-serif;
}

.legal-meta dt { color: #8896a6; }
.legal-meta dd { color: var(--slate); font-weight: 600; }

.legal-index__nav {
  margin-top: 28px;
  display: grid;
}

.legal-index__nav a {
  min-height: 48px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  color: var(--slate);
  border-bottom: 1px solid #dce2e7;
  font: 600 13px/1.45 "PT Sans", Arial, sans-serif;
}

.legal-index__nav a:first-child { border-top: 1px solid #dce2e7; }
.legal-index__nav a span { color: var(--cyan); font-weight: 400; }
.legal-index__nav a:hover,
.legal-index__nav a:focus-visible { color: var(--cyan); outline-color: var(--cyan); }

.legal-index__note {
  margin: 24px 0 0;
  color: #7e8997;
  font: 12px/1.65 "PT Sans", Arial, sans-serif;
}

.legal-content {
  min-width: 0;
  padding: 46px 48px 72px;
  background: var(--paper);
  border: 1px solid #dce2e7;
  border-top: 3px solid var(--cyan);
}

.legal-intro {
  padding-bottom: 46px;
  border-bottom: 1px solid #ccd4dc;
}

.legal-intro > h2 {
  max-width: 700px;
  margin: 14px 0 20px;
  color: var(--slate);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -1.3px;
}

.legal-intro > p:not(.legal-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.legal-notice {
  margin-top: 28px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 18px;
  color: var(--slate);
  background: #f5f8fa;
  border-left: 3px solid var(--cyan);
  font-size: 13px;
  line-height: 1.6;
}

.legal-notice strong { color: var(--cyan); font-family: "PT Sans", Arial, sans-serif; }

.legal-document {
  padding-top: 58px;
  scroll-margin-top: 24px;
}

.legal-document + .legal-document {
  margin-top: 48px;
  border-top: 1px solid #ccd4dc;
}

.legal-document__heading {
  min-height: 82px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
}

.legal-document__heading > span {
  color: var(--cyan);
  font: 300 40px/1 "Open Sans", Arial, sans-serif;
}

.legal-document__heading h2 {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.7px;
}

.legal-topic {
  padding: 26px 0 29px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

.legal-topic h3 {
  margin: 0;
  color: var(--slate);
  font: 600 14px/1.5 "PT Sans", Arial, sans-serif;
}

.legal-topic p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.78;
}

.legal-topic p + p { margin-top: 14px; }

.cookie-banner {
  position: fixed;
  z-index: 190;
  right: auto;
  bottom: 22px;
  left: 50%;
  width: min(560px, calc(100% - 32px));
  min-height: 68px;
  padding: 13px 14px 13px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: #d7e0e9;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, .24);
  border-top: 2px solid var(--cyan);
  border-radius: 2px;
  box-shadow: 0 8px 26px rgba(26, 43, 62, .24);
  transform: translateX(-50%);
  transition: opacity var(--transition), visibility var(--transition);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font: 12px/1.55 "PT Sans", Arial, sans-serif; }
.cookie-banner a { color: var(--cyan-bright); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner a:hover,
.cookie-banner a:focus-visible { color: var(--paper); outline-color: var(--paper); }
.cookie-banner button {
  min-width: 84px;
  height: 36px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 2px;
  cursor: pointer;
  font: 600 12px/34px "PT Sans", Arial, sans-serif;
}
.cookie-banner button:hover,
.cookie-banner button:focus-visible { color: var(--cyan); background: var(--paper); outline-color: var(--paper); }

@media (max-width: 900px) {
  .legal-layout {
    width: min(660px, calc(100% - 34px));
    padding: 38px 0 72px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-index {
    position: static;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #ccd4dc;
  }

  .legal-index h1 { max-width: 560px; }
  .legal-meta { max-width: 520px; }
  .legal-index__nav { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .legal-index__nav a,
  .legal-index__nav a:first-child { padding: 12px 8px; grid-template-columns: 30px 1fr; border-top: 1px solid #dce2e7; }
  .legal-index__nav a + a { border-left: 1px solid #dce2e7; }
  .legal-index__note { max-width: 560px; }
  .legal-content { padding: 38px 32px 60px; }
}

@media (max-width: 560px) {
  .legal-layout { width: calc(100% - 24px); padding-top: 30px; }
  .legal-index h1 { font-size: 30px; }
  .legal-meta div { grid-template-columns: 88px 1fr; }
  .legal-index__nav { grid-template-columns: 1fr; }
  .legal-index__nav a + a { border-left: 0; border-top: 0; }
  .legal-content { padding: 30px 20px 48px; }
  .legal-intro { padding-bottom: 36px; }
  .legal-intro > h2 { font-size: 34px; }
  .legal-intro > p:not(.legal-eyebrow) { font-size: 15px; }
  .legal-notice { grid-template-columns: 1fr; gap: 6px; }
  .legal-document { padding-top: 44px; scroll-margin-top: 12px; }
  .legal-document + .legal-document { margin-top: 36px; }
  .legal-document__heading { grid-template-columns: 54px 1fr; gap: 14px; }
  .legal-document__heading > span { font-size: 32px; }
  .legal-document__heading h2 { font-size: 29px; }
  .legal-topic { grid-template-columns: 1fr; gap: 10px; padding: 22px 0 25px; }
  .legal-topic h3 { font-size: 15px; }
  .legal-topic p { font-size: 14px; line-height: 1.72; }
  .cookie-banner { bottom: 14px; width: calc(100% - 28px); gap: 12px; padding-left: 14px; }
  .cookie-banner button { min-width: 74px; padding-inline: 14px; }
}

@media (max-width: 1100px) {
  .has-cookie-banner .support-launcher {
    bottom: calc(16px + var(--cookie-clearance, 0px));
  }

  .has-cookie-banner .support-panel {
    bottom: calc(82px + var(--cookie-clearance, 0px));
    height: min(500px, calc(100vh - 104px - var(--cookie-clearance, 0px)));
  }
}

@media (max-width: 560px) {
  .support-launcher {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .support-panel {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    height: min(500px, calc(100vh - 96px));
  }

  .has-cookie-banner .support-launcher {
    bottom: calc(12px + var(--cookie-clearance, 0px));
  }

  .has-cookie-banner .support-panel {
    bottom: calc(76px + var(--cookie-clearance, 0px));
    height: min(500px, calc(100vh - 94px - var(--cookie-clearance, 0px)));
  }
}
