@charset "UTF-8";
:root {
  --paper:#f7f5f0;
  --white:#fff;
  --ink:#23352d;
  --forest:#102f27;
  --primary:#176448;
  --primary-hover:#0e4e36;
  --primary-active:#0a3d2b;
  --gold:#d8ba7d;
  --gold-hover:#e5cc99;
  --gold-text:#8a662f;
  --gold-muted:#b79455;
  --muted:#58645b;
  --line:#dedfd5;
  --surface-soft:#eeeee6;
  --accent-light:#d8ba7d;
  --radius:20px;
  --ease:cubic-bezier(.2,.65,.3,1)
}

* {
  box-sizing:border-box
}

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

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Segoe UI",Arial,sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased
}

body.dialog-open {
  overflow:hidden
}

button,input,select {
  font:inherit
}

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

button,a {
  touch-action:manipulation
}

button {
  cursor:pointer
}

button:disabled {
  cursor:not-allowed;
  opacity:.48
}

button {
  color:inherit
}

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

button,input,select {
  border-radius:0
}

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

svg {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0
}

h1,h2,h3,p {
  margin:0
}

h1,h2,h3 {
  font-weight:500
}

h1,h2 {
  letter-spacing:-.055em;
  line-height:1.06
}

h3 {
  letter-spacing:-.035em;
  line-height:1.2
}

::selection {
  background:var(--accent-light);
  color:var(--ink)
}

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

[hidden] {
  display:none!important
}

.svg-library {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden
}

.section-shell {
  width:min(1280px,calc(100% - 96px));
  margin-inline:auto
}

.skip-link {
  position:fixed;
  z-index:100;
  left:20px;
  top:12px;
  padding:12px 20px;
  background:var(--forest);
  color:white;
  transform:translateY(-150%)
}

.skip-link:focus {
  transform:none
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:10px;
  font-weight:600;
  letter-spacing:1.2px;
  line-height:1.5
}

.status-dot {
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#176448;
  flex-shrink:0
}

.eyebrow-separator {
  margin-inline:2px;
  color:#a0a69a
}

.section-kicker {
  color:var(--muted);
  margin-bottom:25px
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  min-height:56px;
  padding:16px 23px;
  border:1px solid transparent;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  transition:background .2s,box-shadow .2s
}

.button-dark {
  color:var(--white);
  background:var(--primary)
}

.button-dark:hover:not(:disabled) {
  background:var(--primary-hover);
  box-shadow:0 5px 18px #23352d16
}

.button-dark:active:not(:disabled) {
  background:var(--primary-active)
}

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

.text-link {
  display:inline-flex;
  align-items:center;
  gap:15px;
  min-height:48px;
  font-size:14px
}

.text-link svg {
  width:20px;
  height:20px;
  transition:transform .2s
}

.text-link:hover svg {
  transform:translateX(4px)
}

/* Navigation and audience selection */
.site-header {
  position:sticky;
  z-index:20;
  top:0;
  background:#f7f5f0f5;
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px)
}

.header-inner {
  width:min(1360px,calc(100% - 64px));
  margin:auto;
  display:flex;
  align-items:center;
  gap:32px;
  min-height:92px
}

.brand {
  display:flex;
  align-items:center;
  flex-shrink:0;
  min-height:48px
}

.brand img {
  width:198px;
  height:auto
}

.audience-switch {
  display:flex;
  gap:3px;
  align-items:center;
  background:#e9e9e0;
  padding:4px;
  border-radius:7px;
  flex-shrink:0
}

.audience-switch button {
  border:0;
  background:transparent;
  min-height:38px;
  padding:9px 14px;
  font-size:12px;
  border-radius:5px;
  color:#59655c;
  white-space:nowrap;
  transition:color .2s,background .2s
}

.audience-switch button.active {
  background:white;
  color:var(--forest);
  box-shadow:0 1px 4px #243b2f12
}

.audience-switch button:hover:not(.active) {
  color:var(--forest);
  background:#dcdfd2
}

.main-nav {
  display:flex;
  align-items:center;
  gap:25px;
  margin-left:auto
}

.main-nav a {
  display:flex;
  align-items:center;
  min-height:44px;
  font-size:13px;
  white-space:nowrap
}

.main-nav a:hover {
  color:#176448
}

.login-button {
  display:flex;
  align-items:center;
  gap:23px;
  padding:10px 17px;
  min-height:44px;
  border:1px solid transparent;
  background:var(--gold);
  color:var(--ink);
  border-radius:7px;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
  box-shadow:0 3px 9px #8a662f18;
  transition:background .2s,box-shadow .2s
}

.login-button:hover {
  background:var(--gold-hover);
  box-shadow:0 5px 14px #8a662f24
}

.login-button:active {
  background:#caaa69;
  box-shadow:inset 0 1px 3px #60461930
}

.login-button:focus-visible {
  outline:3px solid var(--forest);
  outline-offset:3px
}

.login-button svg {
  width:16px;
  height:16px;
  stroke-width:1.8
}

.menu-button {
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:7px
}

/* Hero: the satellite and its three financial orbits */
.hero {
  display:grid;
  grid-template-columns:1.07fr 1fr;
  position:relative;
  min-height:662px;
  align-items:center;
  gap:6px
}

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

.hero h1 {
  font-size:clamp(52px,5.05vw,74px);
  margin:29px 0 27px;
  line-height:1.04;
  white-space:normal
}

.hero-service {
  display:block;
  white-space:nowrap
}

.hero-audience {
  display:block;
  margin-top:.14em;
  color:var(--primary);
  font-size:.76em;
  line-height:1.18
}

.hero-description {
  font-size:17px;
  line-height:1.75;
  color:var(--muted);
  max-width:490px
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:26px;
  margin-top:35px
}

.hero-caption {
  display:flex;
  gap:15px;
  align-items:center;
  margin-top:51px;
  font-size:11px;
  color:var(--muted);
  line-height:1.7
}

.hero-caption b {
  font-weight:400
}

.caption-line {
  width:35px;
  height:1px;
  background:#a7ac9c
}

.hero-visual {
  position:relative;
  align-self:stretch;
  min-width:0;
  isolation:isolate
}

.coordinate-grid {
  position:absolute;
  inset:30px -10px 15px;
  background-image:linear-gradient(#c5c9b950 1px,transparent 1px),linear-gradient(90deg,#c5c9b950 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at 50% 45%,black,transparent 69%);
  z-index:-3
}

.hero-visual::before {
  content:"";
  position:absolute;
  width:490px;
  height:490px;
  top:70px;
  left:4%;
  background:radial-gradient(ellipse at 62% 35%,#ead9b568,transparent 60%),radial-gradient(ellipse,#d0d8bd58,transparent 68%);
  z-index:-2
}

.orbit {
  position:absolute;
  border:1px solid #b5a27d65;
  border-radius:50%;
  left:50%;
  top:49%;
  pointer-events:none
}

.orbit-one {
  width:97%;
  height:63%;
  transform:translate(-50%,-50%) rotate(-28deg)
}

.orbit-two {
  width:75%;
  height:90%;
  transform:translate(-50%,-50%) rotate(32deg)
}

.orbit-three {
  width:112%;
  height:49%;
  transform:translate(-50%,-50%) rotate(-38deg);
  border-style:dashed;
  opacity:.55
}

.visual-caption {
  position:absolute;
  top:37px;
  right:4px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:5px;
  font-size:8px;
  letter-spacing:1.35px;
  color:#626f65
}

.visual-caption span:first-child {
  color:#586359
}

.sputnik {
  position:absolute;
  top:15px;
  left:-22px;
  width:106%;
  max-width:none;
  height:calc(100% - 23px);
  object-fit:contain;
  filter:drop-shadow(10px 25px 12px #243b2f13);
  animation:satellite-in 1.1s var(--ease) both
}

.visual-cross {
  position:absolute;
  color:#a99a7d;
  font-weight:300;
  font-size:25px
}

.cross-one {
  top:19%;
  left:6%
}

.cross-two {
  right:6%;
  bottom:15%
}

.asset-tag {
  position:absolute;
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px 17px;
  border:1px solid #dddfd3;
  background:#fffdf8f5;
  border-radius:10px;
  box-shadow:0 14px 35px #243b2f0b;
  z-index:3;
  white-space:nowrap
}

.tag-symbol {
  display:grid;
  place-items:center;
  width:37px;
  height:37px;
  border-radius:50%;
  background:#eee7d7;
  font-size:24px;
  font-weight:500
}

.asset-tag b {
  font-size:12px;
  font-weight:500
}

.asset-tag small {
  display:block;
  margin-top:2px;
  font-size:9px;
  color:var(--muted)
}

.tag-ruble {
  left:-14px;
  top:23%;
  transform:rotate(-5deg)
}

.tag-dot {
  width:6px;
  height:6px;
  border-radius:50%;
  background:#176448;
  margin:0 0 18px 7px
}

.tag-crypto {
  right:-8px;
  top:58%;
  transform:rotate(5deg)
}

.tag-crypto .tag-symbol {
  background:#e3ece2;
  color:#176448
}

.tag-cfa {
  bottom:16%;
  left:8%;
  background:var(--forest);
  color:#fff;
  gap:15px;
  transform:rotate(-4deg);
  padding:15px 20px;
  box-shadow:0 12px 28px #102f2722
}

.tag-cfa svg {
  width:14px;
  height:14px;
  margin-left:12px
}

.cfa-symbol {
  position:relative;
  width:25px;
  height:27px
}

.cfa-symbol i {
  position:absolute;
  width:18px;
  height:18px;
  transform:rotate(30deg) skew(-6deg);
  border:1px solid var(--accent-light);
  top:2px;
  left:0
}

.cfa-symbol i:last-child {
  top:8px;
  left:7px
}

.satellite-id {
  position:absolute;
  bottom:29px;
  right:22px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:9px;
  letter-spacing:1px
}

.satellite-id>span:last-child {
  margin-left:90px;
  color:#626f65
}

.satellite-id .status-dot {
  width:5px;
  height:5px
}

.mission-strip {
  display:grid;
  grid-template-columns:1.1fr 1fr 1.1fr 1fr;
  border-block:1px solid var(--line);
  padding:28px 0;
  gap:30px
}

.mission-strip>div {
  display:flex;
  gap:17px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
  line-height:1.7
}

.mission-strip>div+div {
  border-left:1px solid var(--line);
  padding-left:26px
}

.mission-strip b {
  font-weight:500;
  color:var(--ink)
}

.mission-strip .mission-label {
  font-size:9px;
  letter-spacing:.9px
}

.strip-index {
  font-size:10px;
  align-self:flex-start;
  margin-top:3px;
  color:#626f65
}

.tiny-orbit {
  display:block;
  position:relative;
  width:36px;
  height:36px;
  border:1px solid #b4b6a4;
  border-radius:50%;
  transform:rotate(-35deg);
  flex-shrink:0
}

.tiny-orbit::before {
  content:"";
  position:absolute;
  inset:8px -9px;
  border:1px solid #8a795c;
  border-radius:50%
}

.tiny-orbit::after {
  content:"";
  position:absolute;
  inset:12px;
  background:var(--forest);
  border-radius:50%
}

/* Three distinct products */
.section {
  padding-block:92px
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:35px;
  margin-bottom:38px
}

.section-heading h2,.exchange-copy h2,.faq-heading h2 {
  font-size:48px
}

.muted-heading {
  color:#626f65
}

.section-heading>p {
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:4px;
  max-width:330px
}

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

.product-card {
  border:1px solid #dddfd3;
  border-radius:var(--radius);
  padding:24px 27px 0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 4px 20px #23352d04
}

.crypto-card {
  background:#ebeee4
}

.ruble-card {
  background:#e8eee7
}

.cfa-card {
  background:#f0ece1
}

.product-top {
  display:flex;
  align-items:center;
  justify-content:space-between
}

.product-chip {
  font-size:9px;
  font-weight:500;
  letter-spacing:.9px
}

.product-number {
  font-size:10px;
  color:#626f65
}

.product-art {
  height:190px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate
}

.product-card h3 {
  font-size:28px;
  margin-bottom:16px
}

.product-card p {
  font-size:14px;
  color:#59665a;
  line-height:1.75;
  max-width:320px
}

.product-assets {
  font-size:9px;
  letter-spacing:1px;
  display:flex;
  gap:12px;
  color:#59665a;
  margin-top:22px;
  margin-bottom:29px
}

.product-link {
  margin-top:auto;
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  min-height:66px;
  border:0;
  border-top:1px solid #cdd1bf;
  background:transparent;
  width:100%;
  text-align:left;
  transition:color .2s
}

.product-link svg {
  width:17px;
  height:17px;
  transition:transform .2s
}

.product-link:hover {
  color:#176448
}

.product-link:hover svg {
  transform:translate(2px,-2px)
}

.crypto-coin {
  position:absolute;
  display:grid;
  place-items:center;
  width:96px;
  height:96px;
  border-radius:50%;
  font-size:62px;
  border:1px solid #b6a176;
  box-shadow:inset -5px -4px 8px #56452920,inset 4px 4px 9px #fff8,5px 8px 0 #6756321a,10px 17px 21px #3e412c13
}

.coin-btc {
  left:calc(50% - 76px);
  top:40px;
  transform:rotate(-19deg);
  color:#8a662f;
  background:linear-gradient(145deg,#fff9e9,#d4b676)
}

.coin-usdt {
  left:calc(50% - 8px);
  top:67px;
  transform:rotate(18deg);
  color:#e4edda;
  background:linear-gradient(135deg,#4f8965,#164631);
  border-color:#587254
}

.coin-orbit {
  position:absolute;
  width:250px;
  height:105px;
  border:1px solid #b8b59b;
  transform:rotate(-25deg);
  border-radius:50%;
  z-index:-1;
  top:50px
}

.art-cross {
  position:absolute;
  top:31px;
  right:40px;
  font-size:25px;
  color:#a99a7d;
  font-weight:300
}

.ruble-core {
  position:relative;
  display:grid;
  place-items:center;
  border-radius:50%;
  width:108px;
  height:108px;
  font-size:76px;
  font-weight:500;
  color:#3f5c48;
  background:linear-gradient(145deg,#fbfcf4,#bacab3);
  border:1px solid #aab79d;
  box-shadow:inset 3px 3px 4px #fff8,inset -4px -3px 5px #8d9b7944,4px 8px 0 #9baa87,10px 18px 25px #243b2f15;
  transform:rotate(-13deg)
}

.ruble-ring {
  position:absolute;
  width:224px;
  height:112px;
  border:1px solid #acaf91;
  border-radius:50%
}

.ring-one {
  transform:rotate(26deg)
}

.ring-two {
  transform:rotate(-28deg);
  width:238px;
  height:107px
}

.ruble-spark {
  position:absolute;
  right:calc(50% - 106px);
  top:52px;
  width:9px;
  height:9px;
  background:#b79455;
  border-radius:50%;
  box-shadow:0 0 0 6px #c4b37c50
}

.asset-tile {
  position:absolute;
  width:116px;
  height:116px;
  border-radius:17px;
  transform:rotate(-29deg) skew(10deg,10deg);
  border:1px solid #b6a27a;
  box-shadow:5px 8px 13px #3c382a0c
}

.tile-back {
  top:61px;
  background:#c4b999
}

.tile-middle {
  top:44px;
  background:#ded5bc
}

.tile-front {
  top:25px;
  display:grid;
  place-items:center;
  background:linear-gradient(120deg,#faf7ed,#ded3b4)
}

.tile-front svg {
  width:59px;
  height:59px;
  color:#897344;
  transform:skew(-10deg,-10deg) rotate(29deg);
  stroke-width:1.4
}

.section-note {
  display:flex;
  gap:9px;
  align-items:center;
  font-size:11px;
  color:var(--muted);
  margin-top:20px
}

.note-dot {
  width:4px;
  height:4px;
  border-radius:50%;
  background:#697564;
  flex-shrink:0
}

/* Exchange calculator */
.exchange-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:110px;
  align-items:center;
  padding:20px 54px 95px
}

.exchange-copy {
  position:relative
}

.exchange-copy h2 {
  margin-bottom:23px
}

.exchange-copy>p {
  font-size:15px;
  line-height:1.8;
  color:var(--muted);
  max-width:410px
}

.check-list {
  list-style:none;
  margin:27px 0 0;
  padding:0;
  display:grid;
  gap:13px;
  font-size:13px
}

.check-list li {
  display:flex;
  align-items:center;
  gap:11px
}

.check-list svg {
  width:17px;
  height:17px;
  color:#897344
}

.exchange-decoration {
  display:flex;
  align-items:center;
  position:relative;
  margin-top:35px
}

.exchange-decoration>span:not(.exchange-path) {
  display:grid;
  place-items:center;
  width:39px;
  height:39px;
  border:1px solid #c9cbb9;
  border-radius:50%;
  font-size:22px
}

.exchange-decoration i {
  width:66px;
  height:1px;
  background:repeating-linear-gradient(90deg,#a7b094 0 3px,transparent 3px 7px)
}

.exchange-path {
  font-size:8px;
  letter-spacing:1.6px;
  color:#626f65;
  margin-left:20px
}

.exchange-card {
  background:white;
  border:1px solid #dddfd3;
  border-radius:20px;
  padding:30px;
  box-shadow:0 15px 40px #243b2f10
}

.calculator-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px
}

.calculator-heading h3 {
  font-size:24px
}

.demo-chip {
  font-size:10px;
  border:1px solid var(--line);
  border-radius:5px;
  padding:3px 8px;
  color:var(--muted)
}

.calculator-description {
  font-size:11px;
  color:var(--muted);
  margin:7px 0 25px
}

.amount-field {
  background:#f4f4ed;
  border:1px solid #dce0d1;
  border-radius:10px;
  padding:14px 17px
}

.amount-field label {
  font-size:11px;
  color:var(--muted)
}

.amount-row {
  display:flex;
  align-items:center;
  gap:6px;
  margin:8px 0
}

.amount-row input {
  background:none;
  border:0;
  font-size:32px;
  letter-spacing:-1px;
  line-height:1.2;
  width:100%;
  min-width:0;
  color:var(--ink);
  padding:0
}

.amount-row input:focus-visible {
  outline-offset:3px;
  outline-width:2px;
  border-radius:2px
}

.amount-row input[aria-invalid="true"] {
  color:#9d3930
}

.currency {
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0
}

.currency strong {
  font-size:13px;
  font-weight:500
}

.coin {
  width:26px;
  height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:500
}

.coin.usdt {
  background:#e3ece2;
  color:#176448
}

.coin.rub {
  background:#f1e8d5;
  color:#795c2d
}

.amount-field small {
  font-size:9px;
  color:var(--muted)
}

.swap-line {
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px
}

.swap-line>span {
  flex:1
}

.swap-line button {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  background:white;
  border:1px solid var(--line);
  border-radius:50%;
  z-index:1
}

.swap-line button svg {
  width:18px;
  height:18px;
  transition:transform .3s
}

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

.swap-line button:hover {
  background:var(--surface-soft)
}

.amount-error {
  min-height:20px;
  font-size:11px;
  color:#9d3930;
  margin:6px 0
}

.calculator-submit {
  width:100%;
  min-height:53px
}

.calculator-note {
  text-align:center;
  color:var(--muted);
  font-size:10px;
  margin-top:14px;
  line-height:1.7
}

/* Brand story */
.about-section {
  position:relative;
  overflow:hidden;
  background:var(--forest);
  color:#f4f1e8
}

.about-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:85px;
  align-items:center;
  min-height:580px;
  padding-block:75px
}

.about-copy .eyebrow {
  color:#d8ba7d;
  margin-bottom:25px
}

.about-copy h2 {
  font-size:53px;
  line-height:1.07;
  margin-bottom:27px
}

.about-copy h2>span {
  color:var(--accent-light)
}

.about-copy p {
  font-size:14px;
  color:#cad5c5;
  line-height:1.8;
  max-width:430px;
  margin-top:14px
}

.light-link {
  display:inline-flex;
  align-items:center;
  gap:24px;
  font-size:12px;
  color:var(--accent-light);
  margin-top:28px;
  min-height:44px
}

.light-link svg {
  width:20px;
  height:20px;
  transition:transform .2s
}

.light-link:hover svg {
  transform:translateX(4px)
}

.about-visual {
  position:relative;
  display:grid;
  place-items:center;
  min-height:440px;
  background:radial-gradient(ellipse,#57794c55,transparent 68%)
}

.about-visual>img {
  width:180px;
  height:180px;
  filter:none;
  transform:rotate(-9deg)
}

.about-orbit {
  position:absolute;
  left:50%;
  top:50%;
  width:390px;
  height:390px;
  border:1px solid #a696624d;
  border-radius:50%;
  transform:translate(-50%,-50%)
}

.ao-two {
  width:530px;
  height:170px;
  transform:translate(-50%,-50%) rotate(-31deg)
}

.ao-three {
  width:300px;
  height:430px;
  transform:translate(-50%,-50%) rotate(-42deg);
  border-style:dashed
}

.about-year {
  position:absolute;
  bottom:0;
  font-size:9px;
  letter-spacing:2px;
  color:#e1cb9d;
  display:flex;
  gap:30px
}

.about-star {
  position:absolute;
  z-index:1;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent-light);
  box-shadow:0 0 0 7px #d8ba7d0d
}

.star-one {
  top:18%;
  right:24%
}

.star-two {
  bottom:23%;
  left:16%;
  width:5px;
  height:5px
}

/* Route and help */
.steps-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:45px;
  margin-top:54px
}

.step-number {
  display:flex;
  align-items:center;
  gap:20px;
  font-size:13px;
  color:#626f65;
  margin-bottom:31px
}

.step-number i {
  height:1px;
  background:var(--line);
  flex:1;
  position:relative
}

.step-number i::after {
  content:"";
  position:absolute;
  right:1px;
  top:-3px;
  width:6px;
  height:6px;
  border-top:1px solid #b1b6a2;
  border-right:1px solid #b1b6a2;
  transform:rotate(45deg)
}

.step-number svg {
  margin-left:auto;
  width:18px;
  height:18px
}

.step h3 {
  font-size:22px;
  margin-bottom:16px
}

.step p {
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
  max-width:330px
}

.faq-section {
  display:grid;
  grid-template-columns:.75fr 1.3fr;
  gap:65px;
  padding-block:55px 95px;
  border-top:1px solid var(--line)
}

.faq-heading>p {
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  margin-top:23px
}

.faq-list {
  padding-top:9px
}

.faq-list details {
  border-bottom:1px solid var(--line)
}

.faq-list summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:78px;
  font-size:15px;
  font-weight:500;
  padding-block:18px
}

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

.faq-list summary svg {
  width:18px;
  height:18px;
  transition:transform .2s
}

.faq-list details[open] summary svg {
  transform:rotate(45deg)
}

.faq-list details p {
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  padding:0 40px 23px 0;
  max-width:630px
}

.faq-list summary:hover {
  color:#176448
}

.final-cta {
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
  border-radius:18px;
  padding:53px 48px;
  background:var(--forest);
  color:#f4f1e8
}

.final-cta .eyebrow {
  font-size:9px;
  color:#d8ba7d;
  margin-bottom:20px
}

.final-cta h2 {
  font-size:39px
}

.final-cta p {
  font-size:14px;
  color:#d0d9cb;
  margin-top:17px
}

.final-cta .button {
  flex-shrink:0;
  background:var(--gold);
  color:var(--ink)
}

.final-cta .button:hover:not(:disabled) {
  background:var(--gold-hover)
}

.final-cta .button:active:not(:disabled) {
  background:#caaa69
}

.final-cta :focus-visible {
  outline-color:var(--gold)
}

.final-cta .status-dot {
  background:var(--gold)
}

.cta-orbit {
  position:absolute;
  width:400px;
  height:400px;
  right:-180px;
  top:-130px;
  border:1px solid #d8ba7d35;
  border-radius:50%;
  z-index:-1
}

.cta-orbit::before,.cta-orbit::after {
  content:"";
  position:absolute;
  inset:35px;
  border:1px solid #d8ba7d35;
  border-radius:50%
}

.cta-orbit::after {
  inset:-40px
}

.site-footer {
  padding-top:67px
}

.footer-main {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:55px;
  padding-bottom:50px
}

.footer-brand img {
  width:198px;
  height:auto
}

.footer-brand p {
  font-size:12px;
  color:var(--muted);
  margin-top:18px;
  line-height:1.8
}

.footer-links {
  display:flex;
  gap:95px;
  margin-left:auto
}

.footer-links>div {
  display:flex;
  flex-direction:column;
  gap:5px
}

.footer-links>div>span {
  font-size:9px;
  letter-spacing:1.3px;
  color:#626f65;
  margin:12px 0 12px
}

.footer-links a,.footer-links button {
  font-size:12px;
  min-height:32px;
  padding:5px 0;
  background:none;
  border:0;
  text-align:left
}

.footer-links a:hover,.footer-links button:hover {
  color:#176448
}

.back-top {
  display:flex;
  gap:20px;
  align-items:center;
  min-height:44px;
  margin-left:75px;
  margin-top:10px;
  font-size:12px
}

.back-top svg {
  width:16px;
  height:16px
}

.footer-bottom {
  border-top:1px solid var(--line);
  padding-block:25px;
  display:flex;
  gap:40px;
  align-items:center;
  color:#626f65;
  font-size:9px
}

.footer-bottom p {
  max-width:580px;
  line-height:1.8
}

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

.footer-bottom>span:last-child {
  margin-left:auto;
  letter-spacing:.9px;
  font-size:8px
}

/* Dialogs */
.app-dialog {
  width:min(520px,calc(100% - 32px));
  max-height:calc(100dvh - 48px);
  border:1px solid var(--line);
  border-radius:22px;
  padding:34px;
  background:var(--paper);
  color:var(--ink);
  box-shadow:0 30px 100px #132e2335
}

.app-dialog::backdrop {
  background:#122a206f;
  backdrop-filter:blur(7px)
}

.dialog-close {
  position:absolute;
  top:17px;
  right:17px;
  border:1px solid var(--line);
  background:none;
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center
}

.dialog-close:hover {
  background:var(--surface-soft)
}

.dialog-close svg {
  width:19px;
  height:19px
}

.dialog-logo {
  width:176px;
  height:auto;
  margin:0 0 25px -6px
}

.app-dialog h2 {
  font-size:32px;
  line-height:1.1;
  letter-spacing:-1.3px;
  margin-bottom:16px
}

.app-dialog>p {
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:24px
}

.dialog-form {
  display:flex;
  flex-direction:column;
  gap:16px
}

.dialog-form label {
  font-size:12px;
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0
}

.dialog-form input,.dialog-form select {
  min-width:0;
  width:100%;
  height:47px;
  background:white;
  border:1px solid #b5bea6;
  border-radius:6px;
  color:var(--ink);
  padding:10px 12px;
  font-size:13px
}

.form-columns {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px
}

.dialog-form .button {
  margin-top:5px;
  min-height:52px
}

.dialog-form small {
  font-size:10px;
  text-align:center;
  color:var(--muted);
  line-height:1.7
}

.form-success {
  text-align:center;
  padding-top:5px
}

.form-success h3 {
  font-size:26px;
  margin-block:18px 12px
}

.form-success p {
  font-size:14px;
  color:var(--muted);
  line-height:1.8
}

.form-success .button {
  margin-top:25px;
  width:100%
}

.success-symbol {
  display:grid;
  place-items:center;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--accent-light);
  margin:auto
}

.success-symbol svg {
  width:28px;
  height:28px
}

.login-dialog .button {
  width:100%
}

.login-dialog .section-kicker {
  font-size:9px
}

@keyframes satellite-in {
  from {
    opacity:0;
    transform:translate(12px,18px) rotate(3deg)
  }
  to {
    opacity:1;
    transform:none
  }
}

@media(min-width:1500px) {
  .hero {
    min-height:710px
  }
  .hero h1 {
    font-size:76px
  }
  .hero-visual {
    margin-left:5px
  }
  .hero-copy {
    padding-top:75px
  }
}

@media(max-width:1200px) {
  .header-inner {
    gap:20px;
    width:calc(100% - 48px)
  }
  .brand img {
    width:164px;
    height:auto
  }
  .main-nav {
    gap:18px
  }
  .main-nav a {
    font-size:12px
  }
  .audience-switch button {
    padding:9px 10px;
    font-size:11px
  }
  .section-shell {
    width:calc(100% - 64px)
  }
  .hero {
    min-height:600px
  }
  .hero h1 {
    font-size:57px
  }
  .hero-description {
    font-size:15px
  }
  .hero-actions {
    gap:18px
  }
  .hero-actions .button {
    padding-inline:19px;
    gap:20px
  }
  .text-link {
    font-size:13px
  }
  .asset-tag {
    padding:11px 13px;
    gap:9px
  }
  .tag-ruble {
    left:4px
  }
  .tag-crypto {
    right:-7px
  }
  .tag-symbol {
    width:31px;
    height:31px;
    font-size:21px
  }
  .asset-tag b {
    font-size:11px
  }
  .asset-tag small {
    font-size:8px
  }
  .mission-strip {
    gap:20px
  }
  .mission-strip>div+div {
    padding-left:20px
  }
  .product-card {
    padding:22px 22px 0
  }
  .product-card h3 {
    font-size:25px
  }
  .exchange-section {
    padding-inline:30px;
    gap:65px
  }
  .exchange-copy h2 {
    font-size:43px
  }
  .about-inner {
    gap:65px
  }
  .about-copy h2 {
    font-size:48px
  }
  .about-orbit {
    width:330px;
    height:330px
  }
  .ao-two {
    width:450px;
    height:155px
  }
  .ao-three {
    width:260px;
    height:385px
  }
  .footer-links {
    gap:70px
  }
  .back-top {
    margin-left:20px
  }
  .hero-visual::before {
    width:100%;
    height:450px
  }
  .final-cta h2 {
    font-size:35px
  }
}

@media(max-width:1020px) {
  .main-nav {
    position:absolute;
    top:calc(100% + 1px);
    left:0;
    right:0;
    display:none;
    padding:18px 32px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    box-shadow:0 16px 20px #23352d0c
  }
  .main-nav.open {
    display:flex;
    justify-content:center;
    gap:35px
  }
  .main-nav a {
    font-size:14px
  }
  .header-inner {
    min-height:82px;
    gap:22px
  }
  .login-button {
    margin-left:auto
  }
  .menu-button {
    display:flex
  }
  .hero h1 {
    font-size:clamp(42px,5.6vw,56px)
  }
  .hero {
    min-height:550px
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:.8px
  }
  .hero-description {
    font-size:14px
  }
  .hero-caption {
    margin-top:33px
  }
  .hero-copy {
    padding-block:55px 45px
  }
  .hero-actions {
    flex-wrap:wrap;
    gap:10px 22px
  }
  .tag-ruble {
    top:24%;
    left:-5px
  }
  .tag-ruble small {
    display:none
  }
  .tag-ruble .tag-dot {
    margin:0
  }
  .tag-crypto {
    top:59%;
    right:-2px
  }
  .tag-cfa {
    bottom:17%
  }
  .mission-strip {
    grid-template-columns:1fr 1fr 1fr;
    gap:24px
  }
  .mission-strip .mission-label {
    display:none
  }
  .mission-strip>div:nth-child(2) {
    border-left:0;
    padding-left:0
  }
  .mission-strip>div {
    font-size:11px
  }
  .section {
    padding-block:70px
  }
  .section-heading h2,.faq-heading h2 {
    font-size:42px
  }
  .section-heading>p {
    font-size:13px;
    max-width:280px
  }
  .product-grid {
    gap:12px
  }
  .product-card {
    padding:20px 18px 0
  }
  .product-top {
    font-size:9px
  }
  .product-chip {
    font-size:8px;
    letter-spacing:.3px
  }
  .product-art {
    height:174px;
    transform:scale(.9);
    margin-inline:-18px
  }
  .product-card h3 {
    font-size:23px
  }
  .product-card p {
    font-size:12px;
    line-height:1.8
  }
  .product-assets {
    font-size:8px;
    gap:8px
  }
  .product-link {
    font-size:12px
  }
  .exchange-section {
    gap:36px;
    padding:10px 0 75px
  }
  .exchange-copy h2 {
    font-size:38px
  }
  .exchange-copy>p {
    font-size:13px
  }
  .check-list {
    font-size:12px
  }
  .exchange-card {
    padding:24px
  }
  .calculator-heading h3 {
    font-size:21px
  }
  .about-inner {
    gap:35px;
    min-height:530px;
    padding-block:60px
  }
  .about-copy h2 {
    font-size:43px
  }
  .about-copy p {
    font-size:13px
  }
  .about-visual {
    min-height:390px
  }
  .about-orbit {
    width:280px;
    height:280px
  }
  .ao-two {
    width:365px;
    height:140px
  }
  .ao-three {
    width:220px;
    height:320px
  }
  .about-visual>img {
    width:150px;
    height:150px
  }
  .steps-grid {
    gap:25px
  }
  .step h3 {
    font-size:20px
  }
  .step p {
    font-size:13px
  }
  .faq-section {
    gap:40px
  }
  .faq-list summary {
    font-size:14px
  }
  .final-cta {
    padding:40px 30px
  }
  .final-cta h2 {
    font-size:31px
  }
  .final-cta p {
    font-size:12px
  }
  .final-cta .button {
    padding-inline:18px;
    gap:20px
  }
  .footer-bottom {
    gap:24px
  }
  .footer-bottom>span:last-child {
    display:none
  }
  .footer-links {
    gap:45px
  }
  .footer-main {
    gap:30px
  }
  .back-top {
    margin-left:0
  }
  .footer-brand p {
    font-size:11px
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top:145px
  }
  .section-shell {
    width:calc(100% - 40px)
  }
  .header-inner {
    width:calc(100% - 40px);
    min-height:110px;
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:0 10px;
    padding-block:9px
  }
  .brand {
    grid-column:1;
    grid-row:1;
    min-height:43px
  }
  .brand img {
    width:146px;
    height:auto
  }
  .login-button {
    grid-column:2;
    grid-row:1;
    font-size:11px;
    gap:12px;
    min-height:44px
  }
  .menu-button {
    grid-column:3;
    grid-row:1
  }
  .audience-switch {
    grid-row:2;
    grid-column:1/4;
    justify-self:stretch;
    margin-top:8px;
    padding:3px
  }
  .audience-switch button {
    flex:1;
    font-size:11px;
    min-height:36px;
    padding:8px
  }
  .main-nav {
    top:100%;
    padding:17px 20px
  }
  .main-nav.open {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 20px
  }
  .main-nav a {
    min-height:48px
  }
  .hero {
    grid-template-columns:1fr;
    gap:0;
    min-height:0
  }
  .hero-copy {
    padding:42px 0 0
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:.7px;
    gap:7px
  }
  .hero h1 {
    font-size:clamp(41px,8vw,58px);
    margin:22px 0;
    white-space:normal;
    line-height:1.06
  }
  .hero-description {
    font-size:15px;
    max-width:500px
  }
  .hero-actions {
    margin-top:25px;
    gap:15px 22px
  }
  .hero-actions .button {
    min-height:53px;
    font-size:13px;
    gap:28px
  }
  .hero-actions .text-link {
    font-size:12px
  }
  .hero-caption {
    display:none
  }
  .hero-visual {
    height:470px;
    max-width:500px;
    justify-self:center;
    width:100%;
    margin-top:-2px
  }
  .sputnik {
    top:0;
    left:0;
    width:100%;
    height:100%
  }
  .visual-caption {
    right:5px;
    top:22px;
    font-size:6px
  }
  .orbit-one {
    width:86%;
    height:65%
  }
  .orbit-two {
    width:75%;
    height:83%
  }
  .orbit-three {
    width:97%;
    height:52%
  }
  .coordinate-grid {
    inset:15px
  }
  .hero-visual::before {
    top:0;
    height:100%;
    left:0
  }
  .cross-one {
    left:6%;
    top:20%
  }
  .cross-two {
    right:8%;
    bottom:13%
  }
  .tag-ruble {
    left:1%;
    top:25%;
    padding:12px;
    transform:rotate(-6deg)
  }
  .tag-ruble small {
    display:block;
    font-size:8px
  }
  .tag-ruble .tag-dot {
    display:none
  }
  .asset-tag b {
    font-size:11px
  }
  .tag-crypto {
    right:0;
    top:58%
  }
  .tag-cfa {
    left:6%;
    bottom:14%;
    padding:12px 15px
  }
  .satellite-id {
    bottom:14px;
    right:19px;
    font-size:8px
  }
  .mission-strip {
    padding:23px 0;
    gap:15px;
    grid-template-columns:repeat(3,minmax(0,1fr))
  }
  .mission-strip>div {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:7px;
    font-size:9px;
    line-height:1.75
  }
  .mission-strip>div+div {
    padding-left:14px
  }
  .strip-index {
    font-size:9px
  }
  .mission-strip .mission-label {
    display:none
  }
  .section {
    padding-block:58px
  }
  .section-kicker {
    font-size:9px;
    margin-bottom:20px
  }
  .section-heading {
    display:block;
    margin-bottom:28px
  }
  .section-heading h2,.faq-heading h2 {
    font-size:37px
  }
  .section-heading>p {
    margin-top:22px;
    font-size:13px;
    max-width:100%
  }
  .section-heading>p br {
    display:none
  }
  .product-grid {
    grid-template-columns:1fr;
    gap:17px
  }
  .product-card {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    padding:23px 24px 0;
    align-items:start
  }
  .product-top {
    grid-column:1/-1
  }
  .product-chip {
    font-size:9px;
    letter-spacing:.8px
  }
  .product-card h3 {
    grid-column:1;
    grid-row:2;
    font-size:26px;
    margin-top:32px;
    margin-bottom:12px
  }
  .product-card p {
    grid-column:1;
    grid-row:3;
    font-size:12px;
    line-height:1.8
  }
  .product-art {
    grid-column:2;
    grid-row:2/5;
    height:188px;
    margin:5px -19px 0 0;
    transform:scale(.78);
    align-self:center
  }
  .product-assets {
    grid-column:1;
    grid-row:4;
    font-size:8px;
    gap:7px;
    margin-top:17px;
    margin-bottom:25px;
    flex-wrap:wrap
  }
  .product-link {
    grid-column:1/-1;
    font-size:13px;
    min-height:60px;
    padding-block:17px
  }
  .section-note {
    font-size:10px;
    align-items:flex-start;
    line-height:1.7
  }
  .note-dot {
    margin-top:6px
  }
  .exchange-section {
    grid-template-columns:1fr;
    padding:0 0 58px;
    gap:28px
  }
  .exchange-copy h2 {
    font-size:37px
  }
  .exchange-copy>p {
    max-width:520px;
    font-size:14px
  }
  .check-list {
    gap:10px;
    font-size:12px;
    margin-top:20px
  }
  .exchange-decoration {
    display:none
  }
  .exchange-card {
    padding:25px;
    max-width:480px;
    width:100%;
    justify-self:center
  }
  .calculator-heading h3 {
    font-size:23px
  }
  .amount-row input {
    font-size:32px
  }
  .about-inner {
    grid-template-columns:1fr;
    gap:28px;
    padding:49px 0;
    min-height:0
  }
  .about-copy {
    grid-row:1
  }
  .about-copy h2 {
    font-size:42px
  }
  .about-copy h2 br:nth-child(2) {
    display:none
  }
  .about-copy p {
    max-width:100%;
    font-size:13px
  }
  .about-copy .eyebrow {
    font-size:9px
  }
  .about-visual {
    min-height:325px;
    max-width:100%;
    width:100%;
    margin-top:-5px
  }
  .about-orbit {
    width:265px;
    height:265px
  }
  .ao-two {
    width:min(395px,105%);
    height:145px
  }
  .ao-three {
    width:230px;
    height:315px
  }
  .about-visual>img {
    width:140px;
    height:140px
  }
  .about-year {
    bottom:-5px
  }
  .about-star.star-one {
    right:25%;
    top:18%
  }
  .steps-grid {
    grid-template-columns:1fr;
    gap:30px;
    margin-top:32px
  }
  .step {
    display:grid;
    grid-template-columns:36px 1fr;
    column-gap:17px
  }
  .step-number {
    grid-row:1/3;
    align-self:start;
    justify-content:flex-start;
    padding-top:4px;
    margin:0
  }
  .step-number i,.step-number svg {
    display:none
  }
  .step h3 {
    font-size:22px;
    margin-bottom:10px
  }
  .step p {
    max-width:100%;
    font-size:13px
  }
  .faq-section {
    grid-template-columns:1fr;
    gap:16px;
    padding-block:45px 55px
  }
  .faq-heading h2 br {
    display:none
  }
  .faq-heading>p {
    font-size:13px;
    margin-top:17px
  }
  .faq-heading>p br {
    display:none
  }
  .faq-list summary {
    font-size:14px;
    min-height:74px;
    gap:16px
  }
  .faq-list details p {
    padding-right:5px;
    font-size:13px
  }
  .final-cta {
    width:calc(100% - 32px);
    padding:32px 25px;
    flex-direction:column;
    align-items:flex-start;
    gap:25px
  }
  .final-cta h2 {
    font-size:33px;
    line-height:1.1
  }
  .final-cta p {
    font-size:13px;
    line-height:1.8;
    max-width:300px
  }
  .final-cta .eyebrow {
    font-size:8px
  }
  .final-cta .button {
    font-size:13px;
    padding-inline:22px;
    gap:35px;
    min-height:53px
  }
  .site-footer {
    padding-top:45px
  }
  .footer-main {
    flex-wrap:wrap;
    gap:28px;
    position:relative;
    padding-bottom:35px
  }
  .footer-brand {
    width:100%
  }
  .footer-brand img {
    width:164px;
    height:auto
  }
  .footer-brand p {
    font-size:12px;
    margin-top:10px
  }
  .footer-links {
    margin-left:0;
    width:100%;
    gap:60px
  }
  .footer-links a,.footer-links button {
    min-height:38px;
    font-size:12px
  }
  .back-top {
    position:absolute;
    right:0;
    top:5px;
    font-size:11px
  }
  .footer-bottom {
    align-items:flex-start;
    gap:18px;
    font-size:9px;
    padding-block:22px
  }
  .footer-bottom p {
    font-size:8px
  }
  .app-dialog {
    padding:29px 23px;
    max-height:calc(100dvh - 28px)
  }
  .app-dialog h2 {
    font-size:29px
  }
  .app-dialog>p {
    font-size:12px
  }
  .dialog-logo {
  width:156px;
  height:auto;
    margin-bottom:22px
  }
  .form-columns {
    gap:10px
  }
  .dialog-form select {
    font-size:12px;
    padding-inline:8px
  }
  .dialog-form .button {
    font-size:12px;
    gap:10px
  }
}

@media(max-width:390px) {
  .section-shell {
    width:calc(100% - 32px)
  }
  .header-inner {
    width:calc(100% - 32px)
  }
  .hero h1 {
    font-size:40px
  }
  .hero .eyebrow {
    font-size:7px;
    gap:6px
  }
  .hero-description {
    font-size:14px
  }
  .hero-actions {
    gap:10px
  }
  .hero-actions .button {
    padding-inline:16px;
    gap:16px;
    font-size:12px
  }
  .hero-actions .text-link {
    font-size:11px;
    gap:9px
  }
  .hero-visual {
    height:395px
  }
  .tag-ruble small {
    display:none
  }
  .asset-tag {
    padding:10px;
    gap:7px
  }
  .tag-symbol {
    width:28px;
    height:28px;
    font-size:20px
  }
  .asset-tag b {
    font-size:10px
  }
  .asset-tag small {
    font-size:7px
  }
  .tag-cfa {
    left:6%;
    bottom:13%;
    padding:11px 13px
  }
  .mission-strip {
    gap:8px
  }
  .mission-strip>div+div {
    padding-left:10px
  }
  .mission-strip>div {
    font-size:8px
  }
  .section-heading h2,.exchange-copy h2,.faq-heading h2 {
    font-size:33px
  }
  .product-card {
    padding-inline:19px;
    grid-template-columns:1.2fr .8fr
  }
  .product-card h3 {
    font-size:23px
  }
  .product-art {
    transform:scale(.65);
    margin-right:-20px
  }
  .product-card p {
    font-size:11px
  }
  .product-assets {
    font-size:7px;
    gap:6px
  }
  .calculator-heading h3 {
    font-size:22px
  }
  .exchange-card {
    padding:22px
  }
  .amount-row input {
    font-size:30px
  }
  .currency {
    gap:5px
  }
  .currency strong {
    font-size:12px
  }
  .about-copy h2 {
    font-size:38px
  }
  .final-cta h2 {
    font-size:31px
  }
  .footer-links {
    gap:45px
  }
}

/* Keep decorative orbital paths inside the hero, including narrow viewports. */
.about-copy h2 br:nth-child(2) {
  display:initial
}

.faq-heading>p br {
  display:initial
}

.hero {
  overflow:clip
}

.tag-crypto {
  right:12px
}

.eyebrow {
  text-transform:uppercase
}

.product-card p,.product-assets {
  color:#59665a
}

.footer-bottom,.footer-links>div>span {
  color:var(--muted)
}

.main-nav a:hover,.faq-list summary:hover,.footer-links a:hover,.footer-links button:hover {
  color:#176448
}

.audience-switch button {
  min-height:44px
}

.amount-error[hidden] {
  display:block!important;
  visibility:hidden
}

@media(max-width:760px) {
  .product-card p {
    font-size:13px
  }
  .product-card {
    grid-template-columns:1.2fr .8fr
  }
  .mission-strip>div {
    font-size:11px
  }
  .footer-bottom p {
    font-size:11px
  }
  .footer-bottom {
    font-size:11px
  }
  .footer-links a,.footer-links button {
    min-height:44px
  }
  .form-columns {
    grid-template-columns:1fr
  }
  .hero .eyebrow {
    font-size:9px;
    letter-spacing:.55px
  }
  .hero-visual .tag-crypto {
    right:8px
  }
  .product-assets {
    font-size:10px
  }
  .product-chip {
    font-size:10px
  }
  .calculator-note {
    font-size:11px
  }
  .amount-field small {
    font-size:10px
  }
  .hero-actions .text-link {
    font-size:12px
  }
}

@media(max-width:390px) {
  .product-card {
    display:flex;
    padding-inline:23px
  }
  .product-art {
    display:flex;
    align-self:stretch;
    transform:scale(.85);
    margin:0;
    height:165px;
    order:1
  }
  .product-top {
    order:0
  }
  .product-card h3 {
    order:2;
    margin-top:0;
    font-size:27px
  }
  .product-card p {
    order:3;
    font-size:14px
  }
  .product-assets {
    order:4;
    margin-block:18px 23px;
    font-size:10px
  }
  .product-link {
    order:5
  }
  .mission-strip>div {
    font-size:10px
  }
  .hero .eyebrow {
    font-size:8px
  }
  .footer-bottom {
    flex-direction:column;
    gap:9px
  }
  .section-note {
    font-size:11px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important
  }
}

/* Preserve the reference logo proportions at the smallest header width. */
@media(max-width:390px) {
  .brand img { width:130px; height:auto; }
  .login-button { padding-inline:10px; gap:9px; }
}

/* Accessible contrast for secondary indices and focus on the dark brand panel. */
.strip-index,.product-number,.step-number { color:var(--muted); }
.about-section :focus-visible { outline-color:var(--accent-light); }
.dialog-form input,.dialog-form select,.amount-field { border-color:#7f8b75; }

/* Preserve the square graphite brand composition without cropping. */
.about-visual.brand-poster {
  min-height:0;
  width:100%;
  max-width:460px;
  aspect-ratio:1;
  justify-self:center;
  border:1px solid #d8ba7d45;
  border-radius:24px;
  overflow:hidden;
  background:#142f27;
}
.about-visual.brand-poster>img {
  width:100%;
  height:auto;
  transform:none;
  filter:none;
}

/* Orbital edition. The existing forest, ivory and champagne palette is locked. */
:root {
  --motion-ease:cubic-bezier(.16,1,.3,1);
  --radius:16px;
}
html { scrollbar-color:#b6bcae var(--paper); }
input,select { caret-color:var(--primary); }
h1,h2 { letter-spacing:-.04em; text-wrap:balance; }
.header-inner { min-height:80px; }
.hero { grid-template-columns:1fr 1.06fr; min-height:650px; gap:20px; }
.hero-copy { padding-block:68px; }
.hero h1 { font-size:clamp(48px,5.3vw,76px); margin-top:0; }
.hero-audience { font-size:.73em; margin-top:.2em; }
.hero-description { max-width:450px; font-size:17px; line-height:1.7; }
.hero-caption { margin-top:42px; font-size:12px; }
.hero-copy>.eyebrow { display:none; }
.hero-visual.orbital-visual { margin:0; height:auto; align-self:center; }
.orbital-visual::before { content:none; }
.orbital-scene { position:relative; width:100%; aspect-ratio:1; isolation:isolate; }
.orbital-disc {
  position:absolute; inset:15%; border-radius:50%;
  background:radial-gradient(circle at 45% 35%,#e9e5d977,#e7e8dc44 65%,transparent 70%);
  z-index:-2;
}
.orbital-track {
  position:absolute; left:50%; top:47%; border:1px solid #b794556b;
  border-radius:50%; pointer-events:none;
}
.track-primary { width:84%; height:44%; transform:translate(-50%,-50%) rotate(-28deg); }
.track-secondary { width:58%; height:84%; transform:translate(-50%,-50%) rotate(25deg); border-color:#96a28c66; }
.track-outer { width:96%; height:64%; transform:translate(-50%,-50%) rotate(-28deg); border-style:dashed; border-color:#b7945540; }
.satellite-float { position:absolute; inset:0; z-index:2; pointer-events:none; }
.orbital-scene .sputnik {
  left:10%; top:9%; width:82%; height:82%; object-fit:contain;
  animation:none; filter:drop-shadow(12px 22px 16px #23352d14);
}
.orbital-node {
  position:absolute; left:50%; top:47%; width:70px; height:70px;
  margin:-35px; z-index:3; pointer-events:none;
}
.orbital-coin {
  display:grid; place-items:center; width:100%; height:100%; border-radius:50%;
  font-size:39px; line-height:1; font-weight:500;
  border:1px solid #e4d5af;
  box-shadow:inset 0 2px 2px #fff8,inset 0 -3px 5px #443d331a,0 9px 15px #23352d12;
  background:linear-gradient(140deg,#fcf8eb,#e0c995); color:var(--gold-text);
}
.orbital-code { position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%); font-size:10px; font-weight:600; letter-spacing:1.5px; color:var(--muted); }
.node-usdt { left:84%; top:37%; }
.node-usdt .orbital-coin { color:#f4f1e8; background:linear-gradient(135deg,#428065,#102f27); border-color:#39715b; }
.node-ruble { left:16%; top:57%; }
.node-btc { left:23%; top:77%; width:57px; height:57px; margin:-28.5px; }
.node-eth { left:77%; top:15%; width:52px; height:52px; margin:-26px; }
.orbital-scene[data-motion] .orbital-node { left:50%; top:47%; }
.node-eth .orbital-coin { color:#43554a; background:linear-gradient(135deg,#f8f9f2,#bcc7b6); border-color:#c4ccb9; font-size:32px; }
.node-btc .orbital-coin { font-size:34px; }
.orbit-toolbar { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:0 8px 12px; color:var(--muted); font-size:11px; }
.motion-toggle { display:flex; align-items:center; justify-content:center; gap:8px; min-height:44px; padding:8px 12px; border:1px solid var(--line); border-radius:24px; background:transparent; font-size:11px; }
.motion-toggle:hover { background:#e9e9e0; }
.pause-symbol { display:block; width:9px; height:10px; border-inline:2px solid currentColor; }
.motion-toggle[aria-pressed="true"] .pause-symbol { width:0; height:0; border:5px solid transparent; border-left:8px solid currentColor; border-right:0; }
.motion-toggle:disabled { opacity:.7; }
.button,.login-button { transition:background .2s,box-shadow .2s,transform .25s var(--motion-ease); }
.button:active:not(:disabled),.login-button:active { transform:scale(.98); }
.button svg { transition:transform .3s var(--motion-ease); }
.button:hover:not(:disabled) svg { transform:translate(3px,-3px); }
.main-nav a { position:relative; }
.main-nav a::after { content:""; position:absolute; left:0; right:0; bottom:6px; height:1px; background:var(--primary); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--motion-ease); }
.main-nav a:hover::after,.main-nav a[aria-current="location"]::after { transform:scaleX(1); }
.section { padding-block:110px; }
.section-heading { margin-bottom:44px; }
.section-kicker,.about-copy>.eyebrow,.final-cta .eyebrow { display:none; }
.section-heading h2,.exchange-copy h2,.faq-heading h2 { font-size:clamp(36px,4vw,54px); }
.mission-strip { padding-block:24px; }
.product-grid { grid-template-columns:1.1fr 1fr; gap:18px; }
.product-card { border:0; box-shadow:none; border-radius:16px; }
.product-card.crypto-card { grid-row:span 2; padding:32px 34px 0; background:#e7ece2; }
.crypto-card .product-art { height:275px; flex:1; min-height:240px; }
.crypto-card .coin-btc { top:calc(50% - 76px); left:calc(50% - 96px); width:124px; height:124px; font-size:76px; }
.crypto-card .coin-usdt { top:calc(50% - 26px); left:calc(50% - 2px); width:124px; height:124px; font-size:76px; }
.crypto-card .coin-orbit { top:calc(50% - 52px); width:330px; height:145px; }
.crypto-card .art-cross { display:none; }
.crypto-card h3 { font-size:36px; }
.crypto-card p { max-width:385px; font-size:15px; }
.product-card.ruble-card,.product-card.cfa-card { display:grid; grid-template-columns:1fr 135px; padding:27px 28px 0; column-gap:12px; }
.ruble-card .product-top,.cfa-card .product-top { grid-column:1/-1; }
.ruble-card .product-art,.cfa-card .product-art { grid-column:2; grid-row:2/5; height:160px; align-self:center; transform:scale(.66); transform-origin:center; }
.ruble-card h3,.cfa-card h3 { grid-column:1; grid-row:2; margin-top:22px; font-size:26px; }
.ruble-card p,.cfa-card p { grid-column:1; grid-row:3; font-size:13px; }
.ruble-card .product-assets,.cfa-card .product-assets { grid-column:1; grid-row:4; font-size:9px; gap:8px; margin-block:16px 20px; }
.ruble-card .product-link,.cfa-card .product-link { grid-column:1/-1; grid-row:5; min-height:58px; padding-block:17px; }
.product-top .product-number { display:none; }
.product-chip { font-size:10px; letter-spacing:1px; color:var(--muted); }
.product-art>span { transition:transform .6s var(--motion-ease); }
.product-card:hover .coin-btc { transform:translate(-5px,-6px) rotate(-25deg); }
.product-card:hover .coin-usdt { transform:translate(5px,3px) rotate(24deg); }
.product-card:hover .ruble-core { transform:rotate(0deg) translateY(-4px); }
.product-card:hover .tile-front { transform:translateY(-7px) rotate(-29deg) skew(10deg,10deg); }
.product-card:hover .tile-back { transform:translateY(5px) rotate(-29deg) skew(10deg,10deg); }
.amount-row input { font-variant-numeric:tabular-nums; }
.exchange-card { border-radius:16px; }
.about-visual.brand-poster { border:0; border-radius:16px; }
.step-number i { transform-origin:left; }
.faq-list summary { transition:color .2s var(--motion-ease); }
.faq-list details[open] { padding-bottom:6px; }
.faq-list details p { max-width:65ch; }
.final-cta { border-radius:16px; }

@media(min-width:1400px) {
  .hero { min-height:700px; }
  .orbital-node { width:78px; height:78px; margin:-39px; }
  .node-btc { width:62px; height:62px; margin:-31px; }
  .node-eth { width:58px; height:58px; margin:-29px; }
}
@media(max-width:1100px) {
  .hero { min-height:570px; gap:0; }
  .hero-description { font-size:15px; }
  .hero h1 { font-size:clamp(40px,5.3vw,58px); }
  .orbital-node { width:56px; height:56px; margin:-28px; }
  .orbital-coin { font-size:32px; }
  .node-btc,.node-eth { width:46px; height:46px; margin:-23px; }
  .node-btc .orbital-coin,.node-eth .orbital-coin { font-size:29px; }
  .orbit-toolbar { font-size:10px; padding-inline:0; }
  .product-card.ruble-card,.product-card.cfa-card { grid-template-columns:1fr 100px; padding-inline:23px; }
  .ruble-card .product-art,.cfa-card .product-art { transform:scale(.56); }
  .ruble-card h3,.cfa-card h3 { font-size:24px; }
}
@media(max-width:760px) {
  html { scroll-padding-top:135px; }
  .header-inner { min-height:76px; }
  .hero { grid-template-columns:1fr; min-height:0; }
  .hero-copy { padding:48px 0 0; }
  .hero h1 { font-size:clamp(42px,8.8vw,66px); margin-bottom:24px; }
  .hero-audience { font-size:.7em; }
  .hero-description { font-size:16px; max-width:480px; }
  .hero-actions { margin-top:26px; gap:16px 24px; }
  .hero-actions .button { min-height:54px; font-size:14px; padding-inline:20px; }
  .hero-actions .text-link { font-size:13px; }
  .hero-caption { display:none; }
  .hero-visual.orbital-visual { width:min(100%,460px); justify-self:center; margin:12px 0 15px; }
  .orbital-scene { aspect-ratio:1.08; }
  .orbit-toolbar { font-size:10px; padding-top:5px; }
  .orbital-node { width:54px; height:54px; margin:-27px; }
  .node-btc,.node-eth { width:44px; height:44px; margin:-22px; }
  .orbital-code { font-size:9px; top:calc(100% + 7px); }
  .section { padding-block:70px; }
  .section-heading { margin-bottom:30px; }
  .section-heading h2,.exchange-copy h2,.faq-heading h2 { font-size:36px; }
  .product-grid { grid-template-columns:1fr; gap:16px; }
  .product-card.crypto-card { grid-row:auto; display:flex; padding:26px 26px 0; }
  .crypto-card .product-art { flex:auto; height:210px; min-height:210px; transform:none; margin:0; }
  .crypto-card h3 { font-size:30px; margin-top:0; }
  .crypto-card p { font-size:15px; }
  .crypto-card .product-assets { margin-block:20px; }
  .product-card.ruble-card,.product-card.cfa-card { display:grid; grid-template-columns:1fr 105px; padding:24px 24px 0; }
  .ruble-card .product-art,.cfa-card .product-art { margin:0; height:150px; transform:scale(.58); }
  .ruble-card h3,.cfa-card h3 { font-size:25px; }
  .ruble-card p,.cfa-card p { font-size:14px; }
  .product-card .product-link { font-size:14px; }
  .ruble-card .product-assets,.cfa-card .product-assets { flex-wrap:wrap; font-size:9px; }
  .main-nav.open { animation:menu-arrive .22s var(--motion-ease); }
}
@media(max-width:390px) {
  .hero h1 { font-size:39px; }
  .hero-description { font-size:15px; }
  .hero-audience { font-size:.66em; }
  .hero-actions { gap:9px; justify-content:space-between; }
  .hero-actions .button { font-size:13px; padding-inline:15px; gap:14px; }
  .hero-actions .text-link { font-size:12px; gap:7px; }
  .hero-visual.orbital-visual { height:auto; }
  .orbital-node { width:46px; height:46px; margin:-23px; }
  .node-btc,.node-eth { width:38px; height:38px; margin:-19px; }
  .orbital-coin,.node-btc .orbital-coin,.node-eth .orbital-coin { font-size:27px; }
  .product-card.ruble-card,.product-card.cfa-card { display:flex; padding-inline:24px; }
  .ruble-card h3,.cfa-card h3 { font-size:25px; margin-top:0; }
  .ruble-card .product-art,.cfa-card .product-art { height:145px; transform:scale(.72); }
  .ruble-card p,.cfa-card p { font-size:14px; }
  .crypto-card .product-art { height:200px; min-height:200px; margin-bottom:18px; }
  .crypto-card .coin-btc,.crypto-card .coin-usdt { width:102px; height:102px; font-size:64px; }
  .crypto-card .coin-btc { left:calc(50% - 88px); top:calc(50% - 58px); }
  .crypto-card .coin-usdt { left:calc(50% - 6px); top:calc(50% - 10px); }
  .section-heading h2,.exchange-copy h2,.faq-heading h2 { font-size:32px; }
  .orbit-toolbar>span { max-width:160px; }
}
@keyframes menu-arrive { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
@media(prefers-reduced-motion:reduce) {
  .product-art>span,.button svg { transition:none; }
  .product-card:hover .coin-btc { transform:rotate(-19deg); }
  .product-card:hover .coin-usdt { transform:rotate(18deg); }
  .product-card:hover .ruble-core { transform:rotate(-13deg); }
  .product-card:hover .tile-front,.product-card:hover .tile-back { transform:rotate(-29deg) skew(10deg,10deg); }
}
