:root {
  --ink: #0c1424;
  --ink-soft: #1b2739;
  --muted: #5f6b7b;
  --muted-light: #8490a0;
  --line: #dce4ee;
  --line-strong: #c8d3df;
  --blue: #245fd1;
  --blue-deep: #1749ab;
  --blue-light: #5c8ff0;
  --ice: #eaf1ff;
  --paper: #f4f7fb;
  --paper-blue: #edf3fc;
  --white: #fff;
  --navy: #0c1a30;
  --navy-soft: #122744;
  --success: #16845b;
  --warning: #9b6710;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-card: 0 24px 70px rgba(20, 39, 72, .09);
  --shadow-float: 0 36px 90px rgba(20, 48, 96, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: #cbdcff;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(36, 95, 209, .38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  padding: 7px 9px 7px 13px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 40px rgba(25, 45, 78, .09);
  backdrop-filter: blur(22px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 120px;
  min-height: 54px;
  text-decoration: none;
}

.brand-logo {
  width: 122px;
  height: 60px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #3d4b5e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 2px;
  background: var(--blue);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-button {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 12px 0 19px;
  border: 0;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.login-button:hover {
  transform: translateY(-1px);
  background: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(12, 20, 36, .18);
}

.login-button span:last-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
}

.login-button svg,
.primary-button svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .74fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
  min-height: 900px;
  padding: 132px max(28px, calc((100vw - 1180px) / 2)) 86px;
  background:
    radial-gradient(circle at 76% 18%, rgba(70, 125, 232, .19), transparent 27%),
    radial-gradient(circle at 12% 91%, rgba(70, 125, 232, .1), transparent 31%),
    linear-gradient(137deg, #fff 0%, #f8faff 48%, #edf3fc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .26;
  background-image:
    linear-gradient(rgba(39, 74, 127, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 74, 127, .1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 34%, #000 82%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin-bottom: 4px;
}

.hero-logo {
  width: 190px;
  height: 108px;
  object-fit: contain;
}

.hero-brand-lockup > span {
  padding-left: 19px;
  border-left: 1px solid var(--line-strong);
  color: #677487;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px 0 24px;
  color: #46566b;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(36, 95, 209, .12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 5.45vw, 78px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.062em;
}

.hero h1 em,
.section-heading h2 em,
.business-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p {
  max-width: 610px;
  min-height: 76px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.01em;
}

.audience-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: 27px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
}

.audience-switch button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #576477;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.audience-switch button.active {
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(12, 20, 36, .16);
  color: #fff;
}

.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  color: #748094;
  font-size: 12px;
  line-height: 1.45;
}

.hero-meta b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -.02em;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -8%;
  width: 700px;
  height: 700px;
  opacity: .48;
}

.orbit {
  position: absolute;
  inset: 15%;
  transform: rotate(28deg);
  border: 1px solid rgba(36, 95, 209, .23);
  border-radius: 50%;
}

.orbit-two {
  inset: 24%;
  transform: rotate(-22deg);
  border-style: dashed;
}

.orbit-three {
  inset: 4% 28%;
  transform: rotate(61deg);
  border-color: rgba(36, 95, 209, .16);
}

.orbit-core {
  display: none;
}

.node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 5px 18px rgba(36, 95, 209, .42);
}

.node-one { top: 22%; left: 39%; }
.node-two { top: 52%; right: 18%; }
.node-three { bottom: 20%; left: 31%; }
.node-four { right: 32%; bottom: 12%; width: 8px; height: 8px; }

.exchange-card {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-float), inset 0 0 0 1px rgba(255, 255, 255, .5);
  backdrop-filter: blur(26px) saturate(135%);
}

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 24px;
}

.card-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-heading h2 {
  margin: 7px 0 0;
  font-size: 25px;
  letter-spacing: -.035em;
}

.live-rate {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #6f7c8f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.live-rate i,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24a875;
  box-shadow: 0 0 0 4px rgba(36, 168, 117, .11);
}

.amount-field {
  display: block;
  padding: 17px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #f7f9fc;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.amount-field:focus-within {
  border-color: rgba(36, 95, 209, .48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(36, 95, 209, .07);
}

.amount-field > span {
  color: #697689;
  font-size: 14px;
  font-weight: 600;
}

.amount-field > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 5px;
}

.amount-field input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 31px;
  font-weight: 650;
  letter-spacing: -.035em;
}

.amount-field input[readonly] {
  color: var(--ink-soft);
}

.currency-button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.currency-button strong {
  font-size: 14px;
}

.amount-field > small {
  display: block;
  margin-top: 7px;
  color: #7c8797;
  font-size: 13px;
}

.coin {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-style: normal;
}

.coin.usdt { background: #168a68; }
.coin.rub { background: var(--blue); }

.swap-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -9px auto;
  padding: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  transition: transform .24s ease, background .2s ease;
}

.swap-button:hover {
  background: var(--blue);
}

.swap-button.reversed {
  transform: rotate(180deg);
}

.swap-button svg {
  width: 19px;
  height: 19px;
}

.primary-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  padding: 0 15px 0 21px;
  border: 0;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(36, 95, 209, .22);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 20px 36px rgba(36, 95, 209, .28);
}

.primary-button span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .15);
}

.card-note {
  margin: 14px 0 0;
  color: #7d8897;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.market-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: -27px auto 0;
  padding: 21px 26px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.market-intro {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-items > span {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.market-items > span:last-child {
  border: 0;
}

.market-items b,
.market-items small {
  display: block;
}

.market-items b {
  font-size: 14px;
}

.market-items small {
  margin-top: 4px;
  color: #7d8898;
  font-size: 12px;
}

.market-line > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.instruments-section {
  padding: 140px 0 72px;
}

.instrument-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.instrument-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.instrument-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 95, 209, .16), transparent 68%);
  pointer-events: none;
}

.ruble-instrument {
  background: linear-gradient(145deg, #0c1729, #123463);
  color: #fff;
}

.ruble-instrument::before {
  background: radial-gradient(circle, rgba(93, 146, 255, .5), transparent 68%);
}

.cfa-instrument {
  background: linear-gradient(150deg, #eef4ff, #fff 68%);
}

.instrument-topline,
.news-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #738096;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ruble-instrument .instrument-topline {
  color: rgba(255, 255, 255, .6);
}

.instrument-topline i {
  font-style: normal;
}

.instrument-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 52px 0 40px;
  border: 1px solid rgba(36, 95, 209, .16);
  border-radius: 28px;
  background: var(--ice);
  color: var(--blue);
  font-size: 34px;
  font-weight: 720;
  box-shadow: 0 18px 42px rgba(36, 95, 209, .12);
}

.ruble-instrument .instrument-symbol {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  color: #9dbdff;
  box-shadow: none;
}

.instrument-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 29px;
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.instrument-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.ruble-instrument p {
  color: rgba(255, 255, 255, .68);
}

.instrument-card > a,
.news-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.ruble-instrument > a {
  color: #a9c6ff;
}

.instrument-card > a span,
.news-card > a span {
  transition: transform .2s ease;
}

.instrument-card > a:hover span,
.news-card > a:hover span {
  transform: translate(2px, -2px);
}

.instrument-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
}

.instrument-note b {
  font-size: 13px;
  white-space: nowrap;
}

.instrument-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.clients-section {
  padding: 88px 0 74px;
}

.section-heading {
  display: grid;
  grid-template-columns: 136px minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading.compact {
  grid-template-columns: 136px 1fr;
}

.section-index {
  align-self: start;
  padding-top: 11px;
  color: #738096;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 640;
  line-height: 1.03;
  letter-spacing: -.052em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.client-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 32px;
  border-radius: var(--radius-xl);
}

.people-card {
  border: 1px solid rgba(255, 255, 255, .94);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.business-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft) 68%, #174eaa);
  color: #fff;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-topline i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .4;
  font-size: 11px;
  font-style: normal;
}

.client-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin: 20px auto 14px;
  border: 1px solid rgba(36, 95, 209, .16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 95, 209, .12), transparent 64%);
}

.client-symbol::before,
.client-symbol::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(36, 95, 209, .22);
  border-radius: 50%;
}

.client-symbol::before { inset: 25px; }
.client-symbol::after { inset: 58px; }

.client-symbol span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(36, 95, 209, .22);
  color: var(--blue);
  font-size: 27px;
  font-weight: 800;
}

.client-symbol i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.client-symbol i:nth-of-type(1) { top: 18px; left: 73px; }
.client-symbol i:nth-of-type(2) { right: 19px; bottom: 77px; }

.business-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 12px;
  height: 230px;
  margin: 4px 0 11px;
  perspective: 500px;
}

.business-visual span {
  width: 82px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px 22px 9px 9px;
  background: linear-gradient(180deg, rgba(103, 158, 255, .48), rgba(36, 95, 209, .04));
  box-shadow: inset 0 0 24px rgba(143, 190, 255, .13);
  transform: rotateX(12deg);
}

.business-visual span:nth-child(1) { height: 90px; }
.business-visual span:nth-child(2) { height: 150px; }
.business-visual span:nth-child(3) { height: 200px; }

.business-visual b {
  position: absolute;
  top: 57px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  font-size: 25px;
  backdrop-filter: blur(12px);
}

.client-card h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.043em;
}

.client-card > p {
  max-width: 480px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.business-card > p {
  color: rgba(255, 255, 255, .68);
}

.client-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #4e5d70;
  font-size: 14px;
}

.business-card li {
  color: rgba(255, 255, 255, .76);
}

.client-card li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 7px;
  background: var(--ice);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.business-card li::before {
  background: rgba(255, 255, 255, .12);
  color: #a8c6ff;
}

.client-card > button,
.business-copy > button,
.process-cta,
.cta-actions button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin-top: 27px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.client-card > button:hover,
.business-copy > button:hover,
.process-cta:hover,
.cta-actions button:hover {
  transform: translateY(-1px);
}

.business-card > button {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.business-card > button:hover {
  background: rgba(255, 255, 255, .08);
}

.advantages-section {
  padding: 92px 0 140px;
}

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

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 29px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.bento-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--ice);
  color: var(--blue);
}

.bento-icon svg {
  width: 23px;
  height: 23px;
}

.bento-card > span {
  color: #748196;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bento-card h3 {
  margin: 14px 0 0;
  font-size: 31px;
  font-weight: 640;
  line-height: 1.09;
  letter-spacing: -.042em;
}

.mini-chart {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 180px;
  padding: 26px 31px 0;
  background: linear-gradient(transparent, rgba(36, 95, 209, .05));
}

.mini-chart i {
  flex: 1;
  min-height: 20px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(#77a3f6, #245fd1);
  opacity: .76;
}

.mini-chart i:nth-child(1) { height: 24%; }
.mini-chart i:nth-child(2) { height: 36%; }
.mini-chart i:nth-child(3) { height: 31%; }
.mini-chart i:nth-child(4) { height: 58%; }
.mini-chart i:nth-child(5) { height: 50%; }
.mini-chart i:nth-child(6) { height: 79%; }
.mini-chart i:nth-child(7) { height: 96%; }

.manager-card {
  background: linear-gradient(145deg, #eef4ff, #fff);
}

.manager-bubble {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(36, 95, 209, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 15px 42px rgba(36, 95, 209, .09);
}

.manager-bubble b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}

.manager-bubble p {
  margin: 0;
  color: #46566a;
  font-size: 14px;
  line-height: 1.5;
}

.manager-bubble small {
  color: #7f8a9a;
  font-size: 12px;
}

.document-stack {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 215px;
}

.document-stack i,
.document-stack b {
  position: absolute;
  right: 50%;
  width: 270px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 20px 45px rgba(13, 17, 23, .08);
}

.document-stack i:first-child { transform: translateX(46%) rotate(-8deg); }
.document-stack i:nth-child(2) { transform: translateX(56%) rotate(8deg); }

.document-stack b {
  bottom: 0;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 25px;
  transform: translateX(50%);
}

.document-stack b span {
  color: var(--blue);
  font-size: 14px;
}

.document-stack b em {
  font-size: 14px;
  font-style: normal;
}

.network-coins {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 215px;
  padding-top: 31px;
}

.network-coins::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(36, 95, 209, .17), transparent 61%);
}

.network-coins i {
  position: relative;
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  margin: 35px -6px 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 50px rgba(36, 95, 209, .15);
  color: var(--blue);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.network-coins i:nth-child(2) { margin-top: 0; color: #c77614; }
.network-coins i:nth-child(3) { margin-top: 50px; color: #6671a8; }
.network-coins i:nth-child(4) { margin-top: 17px; color: #168a68; }

.process-section {
  background: var(--navy);
  color: #fff;
}

.process-inner {
  padding: 135px 0;
}

.section-heading.light .section-index {
  color: rgba(255, 255, 255, .52);
}

.section-heading.light h2 em {
  color: #8eb4ff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.process-step {
  min-height: 325px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.process-step:last-child {
  border: 0;
}

.process-step > span {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 700;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 58px 0 34px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
  color: #8db4ff;
}

.step-icon svg {
  width: 23px;
  height: 23px;
}

.process-step h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.02em;
}

.process-step p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.65;
}

.process-cta {
  width: 250px;
  margin: 36px 0 0 auto;
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.process-cta:hover {
  background: rgba(255, 255, 255, .07);
}

.business-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ecf2fb, #fff 66%);
}

.business-section::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 95, 209, .18), transparent 63%);
}

.business-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 84px;
  align-items: center;
  min-height: 750px;
  padding: 115px 0;
}

.business-copy h2 {
  margin: 23px 0 25px;
  font-size: clamp(46px, 5vw, 67px);
  font-weight: 640;
  line-height: 1;
  letter-spacing: -.055em;
}

.business-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.business-copy > button {
  width: 250px;
  margin-top: 34px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.business-copy > button:hover {
  background: var(--ink-soft);
}

.business-dashboard {
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(20px);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.dashboard-head b {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dashboard-head i {
  padding: 7px 8px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.dashboard-head > span {
  color: #687587;
}

.dashboard-balance {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 17px 0;
  padding: 25px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}

.dashboard-balance small {
  color: rgba(255, 255, 255, .63);
  font-size: 13px;
}

.dashboard-balance strong {
  font-size: 36px;
  letter-spacing: -.04em;
}

.dashboard-balance em {
  position: absolute;
  right: 21px;
  bottom: 27px;
  color: #79dfb3;
  font-size: 12px;
  font-style: normal;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-stats span {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.dashboard-stats small {
  color: #6f7b8c;
  font-size: 12px;
}

.dashboard-stats b {
  font-size: 22px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
}

.dashboard-row span {
  display: grid;
  gap: 4px;
}

.dashboard-row span b {
  font-size: 14px;
}

.dashboard-row span small {
  color: #748093;
  font-size: 12px;
}

.dashboard-row > strong {
  font-size: 14px;
}

.trust-section {
  padding: 140px 0 125px;
}

.trust-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 92px;
}

.trust-layout .section-heading {
  display: block;
  margin: 0;
}

.trust-layout .section-heading h2 {
  margin: 27px 0 25px;
}

.trust-layout .section-heading p {
  max-width: 470px;
}

.trust-list {
  border-top: 1px solid var(--line-strong);
}

.trust-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
}

.trust-list article > span {
  color: #758296;
  font-size: 12px;
  font-weight: 700;
}

.trust-list h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.02em;
}

.trust-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.risk-banner {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 68px;
  padding: 23px;
  border: 1px solid #ead6ac;
  border-radius: 20px;
  background: #fffaf0;
}

.risk-banner > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f2c86f;
  color: #5c400a;
  font-weight: 850;
}

.risk-banner p {
  margin: 0;
  color: #6f5a30;
  font-size: 14px;
  line-height: 1.6;
}

.risk-banner a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #765113;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.news-section {
  padding: 18px 0 118px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 56px rgba(30, 49, 83, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 95, 209, .24);
  box-shadow: 0 26px 70px rgba(30, 49, 83, .11);
}

.news-card.featured-news {
  border-color: transparent;
  background: linear-gradient(150deg, #eaf2ff, #fff 76%);
}

.news-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue);
  white-space: nowrap;
}

.news-meta time {
  color: #7b8798;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.news-card h3 {
  margin: 50px 0 17px;
  font-size: 26px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.news-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.67;
}

.news-disclaimer {
  max-width: 820px;
  margin: 22px 0 0;
  color: #7c8796;
  font-size: 12px;
  line-height: 1.6;
}

.faq-section {
  padding: 68px 0 140px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

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

.faq-item > button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.faq-item > button span {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.faq-item > button i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--blue);
  font-style: normal;
  transition: transform .25s ease, background .25s ease;
}

.faq-item > button i svg {
  width: 20px;
  height: 20px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.faq-answer p {
  min-height: 0;
  max-width: 780px;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 28px;
}

.faq-item.open > button i {
  transform: rotate(45deg);
  background: var(--ice);
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  width: min(1240px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto 20px;
  padding: 68px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 20%, rgba(77, 132, 243, .82), transparent 33%),
    linear-gradient(140deg, #0c1729, #102b50 70%, #16499d);
  color: #fff;
}

.cta-orbit {
  position: absolute;
  top: -210px;
  right: 4%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.cta-orbit i {
  position: absolute;
  inset: 70px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.cta-orbit i:nth-child(2) { inset: 138px; }
.cta-orbit i:nth-child(3) { inset: 205px; }

.cta-orbit span {
  position: absolute;
  bottom: 68px;
  left: 230px;
  color: #a5c2ff;
  font-size: 14px;
  font-weight: 800;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy > span {
  color: #a7c2fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.cta-copy h2 {
  margin: 21px 0;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 630;
  line-height: 1;
  letter-spacing: -.052em;
}

.cta-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 10px;
  width: 260px;
}

.cta-actions button {
  margin: 0;
  border: 0;
  background: #fff;
  color: var(--ink);
}

.cta-actions button.secondary {
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.site-footer {
  padding: 68px max(20px, calc((100vw - 1180px) / 2)) 28px;
  background: #080f1b;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding-bottom: 58px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 155px;
  height: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand b {
  font-size: 15px;
}

.footer-brand small {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links b {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  min-height: 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.footer-bottom p {
  max-width: 850px;
  margin: 0;
  line-height: 1.65;
}

.footer-bottom span {
  white-space: nowrap;
}

.app-dialog {
  width: min(480px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 27px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 40px 120px rgba(7, 18, 40, .35);
  backdrop-filter: blur(24px);
}

.app-dialog::backdrop {
  background: rgba(6, 11, 19, .58);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: #5e6a7b;
  font-size: 22px;
}

.dialog-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dialog-logo {
  width: 108px;
  height: 62px;
  object-fit: contain;
}

.dialog-brand small {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: #637084;
  font-size: 13px;
}

.app-dialog h2 {
  margin: 25px 0 9px;
  font-size: 36px;
  letter-spacing: -.045em;
}

.app-dialog > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.dialog-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: #eef2f7;
}

.dialog-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #677386;
  font-size: 14px;
  font-weight: 700;
}

.dialog-tabs button.active {
  background: #fff;
  box-shadow: 0 5px 14px rgba(18, 30, 50, .08);
  color: var(--ink);
}

.dialog-form {
  display: grid;
  gap: 15px;
  margin-top: 21px;
}

.dialog-form label {
  display: grid;
  gap: 8px;
}

.dialog-form label span {
  color: #526075;
  font-size: 14px;
  font-weight: 650;
}

.dialog-form input {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.dialog-form input:focus {
  border-color: rgba(36, 95, 209, .56);
  box-shadow: 0 0 0 4px rgba(36, 95, 209, .08);
}

.dialog-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  margin-top: 4px;
  padding: 0 17px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.text-button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.form-success {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: var(--ice);
}

.form-success b {
  color: var(--blue-deep);
  font-size: 16px;
}

.form-success p {
  margin: 8px 0 0;
  color: #4d607c;
  font-size: 14px;
  line-height: 1.6;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .orbit-one { animation: orbit 24s linear infinite; }
  .orbit-two { animation: orbit 32s linear infinite reverse; }

  @keyframes orbit {
    to { transform: rotate(388deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 60px rgba(23, 38, 66, .16);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: var(--paper-blue);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .exchange-card {
    max-width: 600px;
  }

  .hero-orbit {
    top: 90px;
    right: -300px;
  }

  .market-line {
    grid-template-columns: 1fr auto;
  }

  .market-intro {
    grid-column: 1 / -1;
  }

  .market-items {
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 110px 1fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .section-heading.compact {
    grid-template-columns: 110px 1fr;
  }

  .trust-layout {
    gap: 52px;
  }

  .business-inner {
    gap: 44px;
  }

  .final-cta {
    padding: 50px;
  }
}

@media (max-width: 800px) {
  .hero {
    padding-bottom: 64px;
  }

  .market-line {
    display: block;
    margin-top: 18px;
  }

  .market-intro {
    margin-bottom: 18px;
  }

  .market-items {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 14px;
    border: 0;
  }

  .market-items > span {
    padding: 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .section-heading.compact {
    display: block;
  }

  .section-index {
    display: block;
    margin-bottom: 21px;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .client-grid,
  .bento-grid,
  .instrument-grid,
  .news-grid,
  .business-inner,
  .trust-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .instrument-card,
  .news-card {
    min-height: 0;
  }

  .instrument-symbol {
    margin: 42px 0 34px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .business-inner {
    gap: 58px;
  }

  .business-dashboard {
    max-width: 650px;
  }

  .trust-layout {
    gap: 66px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .cta-actions {
    width: 100%;
    max-width: 370px;
  }

  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    top: 9px;
    width: calc(100% - 18px);
    min-height: 64px;
    padding: 5px 6px 5px 8px;
    border-radius: 18px;
  }

  .brand {
    min-width: 94px;
    min-height: 50px;
  }

  .brand-logo {
    width: 96px;
    height: 52px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .login-button {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
  }

  .login-button span:first-child {
    font-size: 0;
  }

  .login-button span:first-child::after {
    content: "Войти";
    font-size: 14px;
  }

  .login-button span:last-child {
    display: none;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    gap: 42px;
    padding: 102px 18px 52px;
  }

  .hero-brand-lockup {
    display: none;
  }

  .eyebrow {
    margin-top: 9px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-copy > p {
    min-height: 0;
    font-size: 16px;
  }

  .audience-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .audience-switch button {
    padding: 0 12px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
  }

  .hero-meta span {
    font-size: 11px;
  }

  .hero-meta b {
    font-size: 15px;
  }

  .exchange-card {
    padding: 20px;
    border-radius: 24px;
  }

  .live-rate {
    display: none;
  }

  .amount-field input {
    font-size: 27px;
  }

  .market-line {
    width: calc(100% - 18px);
    padding: 20px;
  }

  .section {
    width: calc(100% - 30px);
  }

  .clients-section {
    padding-top: 102px;
  }

  .instruments-section {
    padding: 102px 0 44px;
  }

  .instrument-card,
  .news-card {
    padding: 24px;
    border-radius: 24px;
  }

  .instrument-card h3 {
    font-size: 28px;
  }

  .instrument-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .client-card {
    min-height: 610px;
    padding: 24px;
    border-radius: 25px;
  }

  .client-symbol {
    width: 188px;
    height: 188px;
  }

  .business-visual {
    height: 205px;
  }

  .client-card h3 {
    font-size: 29px;
  }

  .advantages-section {
    padding-bottom: 104px;
  }

  .bento-card {
    min-height: 360px;
    padding: 24px;
    border-radius: 25px;
  }

  .bento-card h3 {
    padding-right: 42px;
    font-size: 28px;
  }

  .bento-icon {
    top: 22px;
    right: 22px;
  }

  .manager-bubble {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 42px 1fr;
  }

  .manager-bubble small {
    grid-column: 2;
  }

  .process-inner {
    padding: 102px 0;
  }

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

  .process-step {
    min-height: 248px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-icon {
    margin: 34px 0 24px;
  }

  .process-cta {
    width: 100%;
  }

  .business-inner {
    padding: 100px 0;
  }

  .business-copy h2 {
    font-size: 42px;
  }

  .business-copy > button {
    width: 100%;
  }

  .business-dashboard {
    padding: 16px;
    border-radius: 23px;
  }

  .dashboard-head > span {
    max-width: 130px;
    text-align: right;
  }

  .dashboard-balance strong {
    font-size: 28px;
  }

  .dashboard-balance em {
    position: static;
  }

  .dashboard-stats span {
    padding: 10px;
  }

  .dashboard-row {
    grid-template-columns: 32px 1fr;
  }

  .dashboard-row > strong {
    grid-column: 2;
  }

  .trust-section {
    padding: 102px 0;
  }

  .trust-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .risk-banner {
    grid-template-columns: 46px 1fr;
  }

  .risk-banner a {
    grid-column: 2;
  }

  .news-section {
    padding: 0 0 88px;
  }

  .news-card h3 {
    margin-top: 38px;
  }

  .faq-section {
    padding-bottom: 104px;
  }

  .faq-item > button span {
    font-size: 17px;
  }

  .final-cta {
    width: calc(100% - 18px);
    min-height: 570px;
    padding: 36px 25px;
    border-radius: 27px;
  }

  .cta-copy h2 {
    font-size: 44px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 125px;
    height: 72px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom span {
    white-space: normal;
  }

  .app-dialog {
    padding: 23px;
    border-radius: 23px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 86px;
  }

  .header-actions {
    gap: 5px;
  }

  .login-button {
    padding: 0 12px;
  }

  .market-items {
    grid-template-columns: 1fr;
  }

  .dashboard-head {
    align-items: flex-start;
  }
}
