:root {
  --bg: oklch(14% 0.025 258);
  --bg-deep: oklch(10% 0.025 258);
  --surface: oklch(20% 0.035 258);
  --surface-raised: oklch(24% 0.045 258);
  --surface-soft: oklch(18% 0.03 258);
  --ink: oklch(96% 0.012 210);
  --ink-soft: oklch(76% 0.03 230);
  --ink-muted: oklch(64% 0.025 235);
  --mint: oklch(82% 0.16 165);
  --mint-strong: oklch(76% 0.19 165);
  --mint-ink: oklch(18% 0.045 165);
  --violet: oklch(68% 0.19 292);
  --amber: oklch(80% 0.14 78);
  --danger: oklch(68% 0.19 25);
  --line: color-mix(in oklch, var(--ink) 12%, transparent);
  --line-strong: color-mix(in oklch, var(--ink) 22%, transparent);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Onest", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}
body.popover-open { overflow: hidden; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.hidden { display: none !important; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

.ambient {
  position: absolute;
  inset: 0 0 auto;
  height: 950px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 5%, color-mix(in oklch, var(--violet) 18%, transparent), transparent 35%),
    radial-gradient(circle at 88% 20%, color-mix(in oklch, var(--mint) 12%, transparent), transparent 32%);
}
.ambient svg { position: absolute; left: -3%; bottom: 0; width: 106%; height: 58%; opacity: .18; }
.ambient path { fill: none; stroke: var(--violet); stroke-width: 1.2; }
.ambient path:last-child { stroke: var(--mint); opacity: .55; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.ambient-orb-a { width: 360px; height: 360px; right: 4%; top: 120px; border: 1px solid color-mix(in oklch, var(--violet) 34%, transparent); box-shadow: inset 0 0 90px color-mix(in oklch, var(--violet) 15%, transparent); }
.ambient-orb-b { width: 150px; height: 150px; left: 5%; top: 460px; background: color-mix(in oklch, var(--mint) 5%, transparent); border: 1px solid color-mix(in oklch, var(--mint) 24%, transparent); }

.site-header {
  position: relative;
  z-index: 40;
  padding-top: 18px;
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 12px 0 18px;
  background: color-mix(in oklch, var(--surface) 87%, transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(18px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
}
.wordmark > span:last-child > span, .wordmark span span { color: var(--mint); }
.wordmark-glyph {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--mint);
  overflow: hidden;
}
.wordmark-glyph i {
  position: absolute;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--mint-ink);
  transform: rotate(42deg);
}
.wordmark-glyph i:last-child { transform: rotate(-42deg); }
.main-nav { display: flex; align-items: center; gap: 26px; margin-inline: auto; }
.main-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 180ms var(--ease-out);
}
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-logout-form { margin: 0; }
.header-logout-button {
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out), transform 150ms var(--ease-out);
}
.header-logout-button:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.075);
}
.header-logout-button:active { transform: scale(.98); }
.lang-button { background: transparent; color: var(--ink-soft); padding: 11px 8px; cursor: pointer; font-size: 13px; }
.lang-button span { color: var(--ink-muted); }
.menu-button { display: none; background: transparent; color: var(--ink); font-size: 22px; cursor: pointer; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 150ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.button:active, .account-button:active, .asset-trigger:active { transform: scale(.98); }
.button-primary { color: var(--mint-ink); background: var(--mint); }
.button-primary:hover { background: var(--mint-strong); }
.button-muted { color: var(--ink); border: 1px solid var(--line-strong); background: color-mix(in oklch, var(--ink) 7%, transparent); }
.button-muted:hover { border-color: color-mix(in oklch, var(--ink) 30%, transparent); background: color-mix(in oklch, var(--ink) 12%, transparent); }
.button-ghost { color: var(--ink); background: color-mix(in oklch, var(--ink) 6%, transparent); }
.button-ghost:hover { background: color-mix(in oklch, var(--ink) 11%, transparent); }
.button-large { min-height: 52px; padding-inline: 22px; }
.button-danger { color: var(--danger); background: color-mix(in oklch, var(--danger) 10%, transparent); }
.account-button { display: flex; align-items: center; gap: 10px; padding: 7px 10px 7px 7px; border-radius: 10px; background: color-mix(in oklch, var(--ink) 6%, transparent); cursor: pointer; transition: transform 150ms var(--ease-out); }
.avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: var(--mint-ink); background: var(--mint); font-weight: 700; }
.avatar-large { width: 44px; height: 44px; border-radius: 12px; }

.page { display: none; position: relative; z-index: 1; }
.page.active { display: block; animation: page-in 420ms var(--ease-out) both; }
@keyframes page-in { from { opacity: 0; transform: translateY(8px); } }

.hero { min-height: 760px; padding: 68px 0 112px; }
.hero-copy { max-width: 1040px; margin: 0 auto 38px; text-align: center; }
.availability { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--ink-soft); font-size: 13px; }
.availability span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px color-mix(in oklch, var(--mint) 8%, transparent); }
.hero h1 { margin-bottom: 18px; font-size: clamp(46px, 5.4vw, 74px); line-height: 1.02; letter-spacing: -.04em; font-weight: 600; }
.hero h1 em { color: var(--mint); font-style: normal; }
.hero-copy > p:last-child { max-width: 700px; margin: 0 auto; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }

.exchange-stage {
  position: relative;
  padding: 34px;
  border-radius: 16px;
  background: color-mix(in oklch, var(--surface-raised) 86%, transparent);
  box-shadow: 0 6px 0 color-mix(in oklch, var(--bg-deep) 45%, transparent);
  backdrop-filter: blur(24px);
}
.exchange-columns { display: grid; grid-template-columns: 1fr 52px 1fr; gap: 16px; align-items: end; }
.exchange-label, .amount-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.exchange-label { margin: 0 3px 10px; font-size: 13px; color: var(--ink-soft); }
.exchange-label span:first-child { color: var(--ink); font-weight: 600; font-size: 15px; }
.amount-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 88px;
  border-radius: 12px;
  background: var(--bg-deep);
  outline: 1px solid var(--line-strong);
  transition: outline-color 180ms var(--ease-out);
  overflow: hidden;
}
.amount-shell:focus-within { outline-color: var(--mint); }
.amount-shell-send { outline-color: color-mix(in oklch, var(--mint) 60%, transparent); }
.amount-shell > input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 0 24px; background: transparent; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.03em; }
.asset-trigger { min-width: 184px; display: flex; align-items: center; gap: 11px; padding: 12px 16px; background: color-mix(in oklch, var(--surface) 82%, transparent); cursor: pointer; transition: transform 150ms var(--ease-out), background 180ms var(--ease-out); }
.asset-trigger:hover { background: var(--surface); }
.asset-trigger-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.asset-trigger-copy strong { font-size: 18px; }
.asset-trigger-copy small { color: var(--ink-muted); font-size: 11px; }
.chevron { margin-left: auto; color: var(--ink-soft); }
.asset-icon { flex: 0 0 auto; width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 50%; color: white; background: var(--violet); font-style: normal; font-weight: 700; }
.asset-icon.xlm { color: var(--bg); background: var(--ink); }
.asset-icon.usdt { background: oklch(68% .13 168); }
.asset-icon.btc { background: oklch(74% .18 62); }
.asset-icon.eth { color: var(--bg); background: oklch(83% .03 250); }
.asset-icon.bank { border-radius: 10px; }
.asset-icon.tbank { color: oklch(23% .03 95); background: oklch(88% .19 99); }
.asset-icon.sber { background: oklch(65% .16 150); }
.asset-icon.alfa { background: oklch(60% .22 27); }
.asset-icon.mir { background: oklch(68% .12 190); }
.asset-icon.yoomoney { background: oklch(58% .23 310); }
.amount-meta { padding: 12px 3px 0; color: var(--ink-muted); font-size: 12px; }
.amount-meta span:last-child { color: var(--ink-soft); }
.direction-switch { align-self: center; width: 44px; height: 44px; display: grid; place-items: center; margin-top: 23px; border-radius: 50%; color: var(--mint); background: var(--surface); cursor: pointer; font-size: 20px; transition: transform 240ms var(--ease-out), color 180ms var(--ease-out); }
.direction-switch:hover { transform: rotate(180deg); color: var(--ink); }
.exchange-summary { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 26px; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.exchange-summary > div { display: flex; flex-direction: column; gap: 4px; }
.exchange-summary span { color: var(--ink-muted); font-size: 11px; }
.exchange-summary strong { font-size: 14px; font-weight: 500; }

.details-section { padding: 130px 0; background: var(--bg-deep); }
.details-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.section-heading > p, .content-hero > p, .document > p, .account-heading > div > span {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
}
.section-heading h2 { margin-bottom: 20px; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -.035em; font-weight: 600; }
.section-heading > span { display: block; max-width: 500px; color: var(--ink-soft); line-height: 1.7; }
.sticky-heading { position: sticky; top: 40px; }
.details-form { display: grid; gap: 34px; }
.form-group { display: grid; gap: 18px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.form-section-title { display: flex; align-items: center; gap: 14px; }
.form-section-title span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--mint); background: color-mix(in oklch, var(--mint) 10%, transparent); font-size: 11px; }
.form-section-title h3 { margin: 0; font-size: 22px; font-weight: 500; }
.details-form label, .modal label, .profile-form label, .referral-panel label, .withdraw-panel label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 13px; }
.details-form label small { color: var(--ink-muted); }
input, select, textarea {
  width: 100%;
  border: 0;
  outline: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--surface);
  transition: outline-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
input::placeholder, textarea::placeholder { color: color-mix(in oklch, var(--ink-soft) 74%, transparent); }
input:focus, select:focus, textarea:focus { outline-color: var(--mint); background: var(--surface-raised); }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.order-recap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-radius: 12px; overflow: hidden; background: var(--line); }
.order-recap div { padding: 18px; background: var(--surface); }
.order-recap span { display: block; margin-bottom: 6px; color: var(--ink-muted); font-size: 11px; }
.order-recap strong { font-size: 14px; font-weight: 500; }
.checkbox-row { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 11px !important; line-height: 1.55; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 1px; padding: 0; accent-color: var(--mint); }
.checkbox-row button { padding: 0; color: var(--mint); background: transparent; cursor: pointer; }
.submit-order { min-height: 56px; font-size: 16px; }
.form-security { margin: -20px 0 0; color: var(--ink-muted); font-size: 11px; text-align: center; }

.trust-section { padding: 140px 0; }
.wide-heading { max-width: 760px; margin-bottom: 54px; }
.trust-composition { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.trust-feature { min-height: 230px; padding: 34px; border-radius: 14px; background: var(--surface); }
.trust-feature-main { grid-row: span 2; min-height: 478px; display: flex; flex-direction: column; justify-content: space-between; background: var(--surface-raised); overflow: hidden; }
.trust-feature h3 { margin-bottom: 12px; font-size: 25px; font-weight: 500; }
.trust-feature p { max-width: 560px; margin: 0; color: var(--ink-soft); line-height: 1.65; }
.feature-index { color: var(--mint); font-size: 12px; }
.live-orbit { position: relative; width: 260px; height: 260px; display: grid; place-items: center; margin: 0 auto; }
.live-orbit::before, .live-orbit::after, .live-orbit i { content: ""; position: absolute; border-radius: 50%; border: 1px solid color-mix(in oklch, var(--mint) 28%, transparent); }
.live-orbit::before { inset: 0; }
.live-orbit::after { inset: 36px; border-color: color-mix(in oklch, var(--violet) 42%, transparent); }
.live-orbit i { inset: 72px; background: color-mix(in oklch, var(--mint) 8%, transparent); }
.live-orbit i:last-of-type { width: 12px; height: 12px; inset: auto; top: 22px; left: 50%; background: var(--mint); border: 0; box-shadow: 0 0 24px var(--mint); transform-origin: 0 108px; animation: orbit 9s linear infinite; }
.live-orbit span { position: relative; z-index: 1; font-size: 52px; font-weight: 600; letter-spacing: -.04em; }
@keyframes orbit { to { transform: rotate(360deg); } }
.trust-feature-support { display: flex; align-items: flex-start; gap: 16px; }
.operator-dot { flex: 0 0 auto; width: 10px; height: 10px; margin-top: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 7px color-mix(in oklch, var(--mint) 8%, transparent); }
.trust-feature-support small { display: block; margin-bottom: 28px; color: var(--mint); }

.process-section { padding: 130px 0; background: var(--bg-deep); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--mint); background: color-mix(in oklch, var(--mint) 8%, transparent); }
.process-list strong { font-size: 20px; font-weight: 500; }
.process-list p { margin: 8px 0 0; color: var(--ink-muted); line-height: 1.6; }

.transactions-section { padding: 130px 0; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.heading-row h2 { margin-bottom: 0; }
.live-label { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-muted); font-size: 12px; }
.live-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.transaction-stream { border-top: 1px solid var(--line-strong); }
.transaction-row { display: grid; grid-template-columns: 1.3fr 1.1fr 36px 1.1fr .8fr 60px; gap: 18px; align-items: center; min-height: 78px; border-bottom: 1px solid var(--line); transition: background-color 180ms var(--ease-out), padding 180ms var(--ease-out); }
.transaction-row:hover { padding-inline: 14px; background: color-mix(in oklch, var(--mint) 4%, transparent); }
.transaction-row > span:first-child, .transaction-row time { color: var(--ink-muted); font-size: 12px; }
.transaction-row strong { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.transaction-row b { color: var(--mint); font-weight: 400; }
.transaction-row time { text-align: right; }
.mini-coin, .mini-bank { width: 30px; height: 30px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--surface-raised); font-style: normal; }
.mini-coin.usdt { color: var(--mint); }.mini-coin.btc { color: var(--amber); }.mini-coin.xlm { color: var(--ink); }.mini-coin.sol { color: var(--violet); }
.mini-bank { border-radius: 8px; color: var(--bg); background: var(--ink); }
.mini-bank.sber { background: oklch(65% .16 150); }.mini-bank.alfa { background: oklch(60% .22 27); }.mini-bank.yoomoney { background: oklch(58% .23 310); }

.reviews-preview { padding: 130px 0; background: var(--surface-soft); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 0; color: var(--mint); background: transparent; cursor: pointer; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; flex-direction: column; min-height: 280px; padding: 28px; border-radius: 14px; background: var(--surface); }
.featured-review { background: var(--surface-raised); transform: translateY(-14px); }
.review-top, .review-card > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.review-top span, .review-card b { color: var(--amber); letter-spacing: 2px; }
.review-card p { margin: 34px 0 auto; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.review-card > div:last-child { padding-top: 28px; color: var(--ink-muted); font-size: 11px; }

.partners-section { padding: 76px 0 90px; background: var(--bg-deep); }
.partners-label { margin-bottom: 28px; color: var(--ink-muted); font-size: 12px; text-align: center; }
.partner-marquee { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.partner-marquee a { padding: 14px 18px; color: var(--ink-soft); background: var(--surface); border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: -.02em; transition: color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.partner-marquee a:hover { color: var(--mint); transform: translateY(-2px); }
.partner-marquee a span { color: var(--mint); }
.prototype-note { max-width: 580px; margin: 22px auto 0; color: var(--ink-muted); font-size: 10px; text-align: center; }

.site-footer { position: relative; z-index: 1; padding: 72px 0 28px; background: oklch(8% .02 258); }
.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(128px, 1fr));
  gap: clamp(34px, 5vw, 76px);
  padding-bottom: 58px;
}
.footer-main > * { min-width: 0; }
.footer-brand,
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .wordmark { margin-bottom: 20px; }
.footer-brand p { max-width: 330px; margin: 0; color: var(--ink-muted); font-size: 13px; line-height: 1.7; }
.footer-column { gap: 13px; }
.footer-column strong { margin-bottom: 7px; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.footer-column a { padding: 0; color: var(--ink-muted); font-size: 12px; line-height: 1.4; transition: color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.footer-column a:hover { color: var(--ink); transform: translateX(2px); }
.footer-social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-social-links a {
  width: 34px; height: 34px; display: inline-grid; place-items: center; padding: 0;
  border: 1px solid color-mix(in oklch, var(--ink) 15%, transparent); border-radius: 50%;
  color: var(--ink); background: color-mix(in oklch, var(--ink) 5%, transparent);
  font-size: 14px; font-weight: 700; line-height: 1; text-transform: lowercase;
  transform: none;
}
.footer-social-links a:hover { color: var(--bg-deep); background: var(--mint); border-color: var(--mint); transform: translateY(-2px); }
.footer-social-links svg { width: 17px; height: 17px; fill: currentColor; }
.footer-contacts { gap: 10px; }
.footer-contacts p, .footer-contacts address { margin: 2px 0 0; color: var(--ink-muted); font-size: 12px; font-style: normal; line-height: 1.55; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 7px; }
.footer-contact-link span, .footer-contact-link svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--mint); fill: currentColor; font-size: 13px; text-align: center; }
.support-online { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); font-size: 12px; }
.support-online i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.footer-bottom { display: flex; justify-content: flex-start; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: 10px; }

.asset-popover { display: none; position: fixed; inset: 0; z-index: 100; }
.asset-popover.open { display: block; }
.popover-backdrop { position: absolute; inset: 0; background: color-mix(in oklch, var(--bg-deep) 76%, transparent); backdrop-filter: blur(6px); }
.asset-dialog { position: absolute; top: 50%; left: 50%; width: min(580px, calc(100% - 28px)); max-height: min(720px, calc(100dvh - 40px)); display: flex; flex-direction: column; border-radius: 14px; background: var(--surface-raised); transform: translate(-50%, -50%); box-shadow: 0 8px 0 color-mix(in oklch, var(--bg-deep) 55%, transparent); animation: popover-in 220ms var(--ease-out) both; overflow: hidden; }
@keyframes popover-in { from { opacity: 0; transform: translate(-50%, -48%) scale(.98); } }
.dialog-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 24px 24px 18px; }
.dialog-head span { color: var(--mint); font-size: 11px; }
.dialog-head h2 { margin: 5px 0 0; font-size: 25px; font-weight: 500; }
.dialog-head > button, .modal-close { width: 36px; height: 36px; border-radius: 50%; color: var(--ink-soft); background: color-mix(in oklch, var(--ink) 6%, transparent); cursor: pointer; font-size: 22px; }
.search-field { display: flex; align-items: center; gap: 10px; margin: 0 24px 14px; padding: 0 14px; border-radius: 10px; background: var(--bg-deep); outline: 1px solid var(--line); }
.search-field span { color: var(--mint); font-size: 24px; transform: rotate(-20deg); }
.search-field input { padding-inline: 0; background: transparent; outline: 0; }
.asset-list { overflow: auto; padding: 0 12px 18px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.asset-group-title { padding: 12px 12px 8px; color: var(--ink-muted); font-size: 11px; }
.asset-option { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 10px; background: transparent; cursor: pointer; text-align: left; transition: background-color 160ms var(--ease-out); }
.asset-option:hover, .asset-option.selected { background: color-mix(in oklch, var(--mint) 8%, transparent); }
.asset-option .asset-icon { width: 36px; height: 36px; }
.asset-option-copy { display: flex; flex-direction: column; gap: 2px; }
.asset-option-copy strong { font-size: 14px; font-weight: 500; }
.asset-option-copy small { color: var(--ink-muted); font-size: 10px; }
.asset-option > strong { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; color: var(--ink); font-size: 13px; }
.asset-option > strong small { color: var(--mint); font-size: 10px; font-weight: 400; }

.inner-page { min-height: calc(100vh - 80px); padding: 70px 0 110px; }
.order-page { max-width: 1280px; }
.order-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.back-link { margin-bottom: 28px; padding: 0; color: var(--ink-muted); background: transparent; cursor: pointer; }
.order-heading h1, .content-hero h1, .account-heading h1, .document h1 { margin-bottom: 8px; font-size: clamp(40px, 5vw, 66px); line-height: 1.05; letter-spacing: -.035em; font-weight: 600; }
.order-heading h1 span { color: var(--mint); }
.order-heading p, .content-hero > span { color: var(--ink-soft); }
.order-timer { min-width: 190px; padding: 18px; border-radius: 12px; background: var(--surface); text-align: center; }
.order-timer span { display: block; margin-bottom: 4px; color: var(--ink-muted); font-size: 10px; }
.order-timer strong { color: var(--amber); font-size: 26px; letter-spacing: -.03em; }
.order-direction { display: flex; justify-content: center; align-items: center; gap: 40px; margin-bottom: 18px; padding: 24px; border-radius: 14px; background: var(--surface-raised); }
.order-direction div { text-align: center; }
.order-direction small { display: block; margin-bottom: 5px; color: var(--ink-muted); }
.order-direction strong { font-size: 22px; }
.order-direction > span { color: var(--mint); font-size: 24px; }
.payment-layout { display: grid; grid-template-columns: .65fr 2fr .8fr; gap: 18px; }
.order-facts, .payment-instructions, .qr-panel { padding: 24px; border-radius: 14px; background: var(--surface); }
.order-facts { display: grid; align-content: start; gap: 0; }
.order-facts > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.order-facts > div:last-child { border-bottom: 0; }
.order-facts span { display: block; margin-bottom: 6px; color: var(--ink-muted); font-size: 10px; }
.order-facts strong { font-size: 12px; font-weight: 500; }
.copy-button { padding: 0; color: var(--mint); background: transparent; cursor: pointer; }
.payment-instructions { background: var(--surface-raised); }
.notice-badge, .status-badge, .complete-badge, .verified { display: inline-flex; align-items: center; width: fit-content; padding: 6px 9px; border-radius: 999px; color: var(--mint); background: color-mix(in oklch, var(--mint) 9%, transparent); font-size: 10px; }
.payment-instructions h2 { margin: 18px 0 10px; font-size: 26px; font-weight: 500; }
.payment-instructions h2 em { color: var(--mint); font-style: normal; }
.payment-instructions > p { color: var(--ink-soft); line-height: 1.55; }
.copy-field { display: grid; grid-template-columns: 1fr auto; gap: 7px 16px; margin-top: 18px; padding: 16px; border-radius: 10px; background: var(--bg-deep); }
.copy-field span { grid-column: 1 / -1; color: var(--ink-muted); font-size: 10px; }
.copy-field strong { min-width: 0; overflow-wrap: anywhere; font-size: 13px; }
.copy-field button { color: var(--mint); background: transparent; cursor: pointer; font-size: 11px; }
.danger-note { margin: 18px 0 0 !important; color: var(--danger) !important; font-size: 11px; }
.qr-panel { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--ink); color: var(--bg); }
.fake-qr { width: 190px; aspect-ratio: 1; display: grid; grid-template-columns: repeat(21,1fr); padding: 10px; margin-bottom: 16px; background: white; }
.fake-qr i { background: transparent; }
.fake-qr i.on { background: oklch(10% 0 0); }
.qr-panel span { margin-top: 6px; color: color-mix(in oklch, var(--bg) 64%, transparent); font-size: 10px; }
.order-actions { display: flex; justify-content: space-between; gap: 16px; margin: 22px 0 50px; }
.order-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 12px; }
.progress-step { min-width: 132px; display: flex; flex-direction: column; align-items: center; color: var(--ink-muted); text-align: center; }
.progress-step i { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 50%; background: var(--surface); font-style: normal; }
.progress-step strong { font-size: 12px; }
.progress-step span { margin-top: 4px; font-size: 9px; }
.progress-step.active { color: var(--ink); }
.progress-step.active i { color: var(--mint-ink); background: var(--mint); }
.progress-line { height: 1px; background: var(--line-strong); }

.content-page { max-width: 1040px; }
.content-hero { max-width: 820px; margin-bottom: 56px; }
.content-hero > span { display: block; max-width: 650px; line-height: 1.65; }
.review-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 22px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rating-total { display: flex; align-items: center; gap: 18px; }
.rating-total > strong { font-size: 44px; letter-spacing: -.04em; }
.rating-total > span { display: flex; flex-direction: column; color: var(--amber); letter-spacing: 2px; }
.rating-total small { margin-top: 3px; color: var(--ink-muted); font-size: 9px; letter-spacing: 0; }
.review-list article { padding: 32px 0; border-bottom: 1px solid var(--line); }
.review-list article > div { display: flex; align-items: center; gap: 12px; }
.review-list article time { margin-left: auto; color: var(--ink-muted); font-size: 11px; }
.review-list article p { max-width: 760px; margin: 24px 0; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.review-list footer { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-muted); font-size: 11px; }
.review-list footer b { color: var(--amber); letter-spacing: 2px; }
.about-manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin: 70px 0; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-manifesto p { margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.75; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.about-values article { padding-top: 22px; border-top: 1px solid var(--line-strong); }
.about-values span { color: var(--mint); font-size: 11px; }
.about-values h3 { margin: 32px 0 12px; font-size: 24px; font-weight: 500; }
.about-values p { color: var(--ink-muted); line-height: 1.6; }

.account-page { padding: 30px 0 80px; }
.account-shell { width: min(1480px, calc(100% - 48px)); display: grid; grid-template-columns: 260px 1fr; margin: 0 auto; background: var(--bg-deep); border-radius: 16px; overflow: hidden; }
.account-sidebar { min-height: 820px; padding: 30px 18px; border-right: 1px solid var(--line); }
.account-person { display: flex; align-items: center; gap: 12px; padding: 0 10px 26px; border-bottom: 1px solid var(--line); }
.account-person div { display: flex; flex-direction: column; min-width: 0; }
.account-person span:last-child { overflow: hidden; color: var(--ink-muted); font-size: 10px; text-overflow: ellipsis; }
.account-sidebar nav { display: grid; gap: 6px; padding: 22px 0; }
.account-sidebar nav button { padding: 13px 14px; border-radius: 9px; color: var(--ink-muted); background: transparent; cursor: pointer; text-align: left; transition: background 180ms var(--ease-out), color 180ms var(--ease-out); }
.account-sidebar nav button:hover, .account-sidebar nav button.active { color: var(--mint); background: color-mix(in oklch, var(--mint) 8%, transparent); }
.logout-button { width: 100%; padding: 13px 14px; color: var(--danger); background: transparent; cursor: pointer; text-align: left; }
.account-content { min-width: 0; padding: 46px; }
.account-tab { display: none; }
.account-tab.active { display: block; animation: page-in 300ms var(--ease-out) both; }
.account-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.account-heading h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); }
.account-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-bottom: 18px; border-radius: 12px; overflow: hidden; background: var(--line); }
.account-stats > div { padding: 24px; background: var(--surface); }
.account-stats span, .account-stats small { display: block; color: var(--ink-muted); font-size: 10px; }
.account-stats strong { display: block; margin: 12px 0 5px; font-size: 30px; font-weight: 500; letter-spacing: -.03em; }
.active-account-order, .account-columns > section, .referral-panel, .withdraw-panel { padding: 26px; border-radius: 14px; background: var(--surface); }
.active-account-order { margin-bottom: 18px; background: var(--surface-raised); }
.panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.panel-heading h2 { margin: 0; font-size: 18px; font-weight: 500; }
.panel-heading span:first-child { display: block; margin-bottom: 4px; color: var(--ink-muted); font-size: 10px; }
.panel-heading h2 { margin: 0; }
.account-order-route { display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; gap: 22px; margin-top: 32px; }
.account-order-route strong { font-size: 22px; }
.account-order-route > span { color: var(--mint); }
.account-columns { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.compact-history > div, .security-list > div { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.compact-history time, .security-list span { color: var(--ink-muted); }
.security-list > div { grid-template-columns: 1fr auto; }
.security-list strong { color: var(--mint); font-weight: 500; }
.profile-form { max-width: 720px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-form .button { width: fit-content; }
.table-tabs { display: flex; gap: 6px; margin-bottom: 20px; }
.table-tabs button { padding: 10px 14px; border-radius: 8px; color: var(--ink-muted); background: transparent; cursor: pointer; }
.table-tabs button.active { color: var(--mint); background: color-mix(in oklch, var(--mint) 8%, transparent); }
.data-table { overflow: hidden; border-radius: 12px; background: var(--surface); }
.table-head, .table-row { width: 100%; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 18px; align-items: center; padding: 17px 20px; text-align: left; }
.table-head { color: var(--ink-muted); border-bottom: 1px solid var(--line); font-size: 10px; }
button.table-row { border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; }
.table-row span:first-child { display: flex; flex-direction: column; }
.table-row small { color: var(--ink-muted); }
.complete-badge { color: var(--ink-soft); background: color-mix(in oklch, var(--ink) 7%, transparent); }
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.address-grid article { display: flex; align-items: center; gap: 14px; padding: 20px; border-radius: 12px; background: var(--surface); }
.address-grid article > div { display: flex; flex-direction: column; gap: 4px; }
.address-grid article > div span { color: var(--ink-muted); font-size: 11px; }
.address-grid article > button { margin-left: auto; color: var(--ink-muted); background: transparent; cursor: pointer; }
.referral-panel { display: grid; gap: 18px; }
.referral-panel label > div { display: flex; }
.referral-panel input { border-radius: 10px 0 0 10px; }
.referral-panel label button { padding: 0 18px; color: var(--mint); background: var(--bg-deep); border-radius: 0 10px 10px 0; cursor: pointer; }
.withdraw-panel { max-width: 700px; display: grid; gap: 18px; }
.withdraw-panel > span { color: var(--ink-muted); }
.withdraw-panel > strong { font-size: 46px; font-weight: 500; }
.security-settings { display: grid; gap: 12px; }
.security-settings article { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px; border-radius: 12px; background: var(--surface); }
.security-settings article > div { display: flex; flex-direction: column; gap: 5px; }
.security-settings article span { color: var(--ink-muted); font-size: 11px; }

.documents-page { display: grid; grid-template-columns: 220px 1fr; gap: 70px; }
.documents-page aside { display: grid; align-content: start; gap: 6px; position: sticky; top: 30px; }
.documents-page aside button { padding: 12px 14px; border-radius: 9px; color: var(--ink-muted); background: transparent; cursor: pointer; text-align: left; }
.documents-page aside button.active { color: var(--mint); background: color-mix(in oklch, var(--mint) 8%, transparent); }
.document { display: none; max-width: 800px; }
.document.active { display: block; }
.document h1 { margin-bottom: 50px; }
.document h2 { font-size: 24px; font-weight: 500; }
.document p, .document li { color: var(--ink-soft); line-height: 1.75; }
.document li { margin-bottom: 16px; }

.modal {
  width: min(500px, calc(100% - 28px));
  padding: 34px;
  border: 0;
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface-raised);
  box-shadow: 0 8px 0 color-mix(in oklch, var(--bg-deep) 55%, transparent);
}
.modal::backdrop { background: color-mix(in oklch, var(--bg-deep) 78%, transparent); backdrop-filter: blur(6px); }
.modal[open] { animation: modal-in 240ms var(--ease-out) both; }
@keyframes modal-in { from { opacity: 0; transform: scale(.98) translateY(8px); } }
.modal-close { position: absolute; top: 18px; right: 18px; }
.auth-brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 36px; font-size: 20px; font-weight: 700; }
.auth-brand > span:last-child > span { color: var(--mint); }
.modal-kicker { color: var(--mint); font-size: 11px; }
.modal h2 { margin: 8px 0 10px; font-size: 32px; font-weight: 500; }
.modal > p, .auth-panel > p { color: var(--ink-muted); line-height: 1.55; }
.modal form { display: grid; gap: 16px; margin-top: 24px; }
.auth-options { display: flex; justify-content: space-between; gap: 14px; color: var(--ink-muted); font-size: 11px; }
.auth-options label { display: flex; align-items: center; gap: 8px; }
.auth-options input { width: 15px; height: 15px; padding: 0; }
.auth-options button, .switch-auth button { padding: 0; color: var(--mint); background: transparent; cursor: pointer; }
.switch-auth { margin: 22px 0 0; text-align: center; font-size: 12px; }
.compact-modal { width: min(460px, calc(100% - 28px)); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 150; padding: 13px 16px; border-radius: 10px; color: var(--mint-ink); background: var(--mint); font-size: 12px; font-weight: 600; opacity: 0; pointer-events: none; transform: translateY(100%); transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out); }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .main-nav a:nth-last-child(-n+2) { display: none; }
  .exchange-stage { padding: 24px; }
  .exchange-columns { grid-template-columns: 1fr 44px 1fr; }
  .asset-trigger { min-width: 150px; }
  .exchange-summary { grid-template-columns: repeat(3, 1fr); }
  .exchange-summary .button { grid-column: 1 / -1; }
  .payment-layout { grid-template-columns: .7fr 1.8fr; }
  .qr-panel { grid-column: 1 / -1; flex-direction: row; justify-content: center; gap: 18px; }
  .fake-qr { width: 140px; margin: 0; }
  .footer-main { grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(112px, 1fr)); gap: 28px; }
  .account-shell { grid-template-columns: 220px 1fr; }
  .account-content { padding: 34px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .header-inner { min-height: 60px; }
  .main-nav, .header-actions .lang-button, #guest-actions .button-ghost { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
  .main-nav.mobile-open { position: absolute; top: 68px; left: 14px; right: 14px; display: grid; gap: 0; padding: 12px; border-radius: 12px; background: var(--surface-raised); box-shadow: 0 6px 0 var(--bg-deep); }
  .main-nav.mobile-open a { display: block; padding: 13px; }
  .hero { min-height: 0; padding: 76px 0 100px; }
  .hero-copy { margin-bottom: 38px; }
  .hero h1 { font-size: clamp(43px, 12vw, 66px); }
  .exchange-columns { grid-template-columns: 1fr; }
  .direction-switch { justify-self: center; margin: -4px 0; transform: rotate(90deg); }
  .direction-switch:hover { transform: rotate(270deg); }
  .exchange-summary { grid-template-columns: 1fr 1fr; }
  .exchange-summary > div:nth-child(3) { display: none; }
  .details-layout, .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .sticky-heading { position: static; }
  .details-section, .trust-section, .process-section, .transactions-section, .reviews-preview { padding: 90px 0; }
  .trust-composition { grid-template-columns: 1fr; grid-template-rows: auto; }
  .trust-feature-main { grid-row: auto; min-height: 440px; }
  .transaction-row { grid-template-columns: 1fr 1fr auto; }
  .transaction-row > span:first-child, .transaction-row b, .transaction-row time { display: none; }
  .transaction-row > span:nth-last-child(2) { text-align: right; }
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-review { transform: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .payment-layout { grid-template-columns: 1fr; }
  .qr-panel { grid-column: auto; }
  .order-progress { grid-template-columns: 1fr; }
  .progress-line { width: 1px; height: 28px; justify-self: center; }
  .about-manifesto { grid-template-columns: 1fr; gap: 28px; }
  .about-values { grid-template-columns: 1fr; }
  .account-shell { width: min(100% - 28px, 1480px); grid-template-columns: 1fr; }
  .account-sidebar { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .account-sidebar nav { grid-template-columns: repeat(3, 1fr); }
  .account-person, .logout-button { display: none; }
  .account-columns { grid-template-columns: 1fr; }
  .documents-page { grid-template-columns: 1fr; gap: 36px; }
  .documents-page aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-header { padding-top: 10px; }
  .header-inner { padding-left: 12px; }
  .wordmark { font-size: 19px; }
  .wordmark-glyph { width: 28px; height: 28px; }
  #guest-actions .button-primary { min-height: 38px; padding-inline: 12px; font-size: 11px; }
  .hero { padding-top: 58px; }
  .hero-copy > p:last-child { font-size: 15px; }
  .exchange-stage { padding: 15px; }
  .amount-shell { grid-template-columns: 1fr; }
  .amount-shell > input { height: 72px; padding-inline: 18px; }
  .asset-trigger { width: 100%; min-width: 0; border-top: 1px solid var(--line); }
  .exchange-label { align-items: flex-end; }
  .exchange-label span:last-child { max-width: 130px; text-align: right; }
  .amount-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .exchange-summary { grid-template-columns: 1fr; gap: 12px; }
  .exchange-summary > div:nth-child(2) { display: none; }
  .section-heading h2 { font-size: 39px; }
  .two-fields, .order-recap { grid-template-columns: 1fr; }
  .order-recap { gap: 1px; }
  .live-orbit { width: 210px; height: 210px; }
  .live-orbit i:last-of-type { transform-origin: 0 83px; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .transaction-row { grid-template-columns: 1fr auto; }
  .transaction-row strong:nth-of-type(2) { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .asset-dialog { top: auto; bottom: 0; max-height: 88dvh; border-radius: 14px 14px 0 0; transform: translateX(-50%); animation-name: drawer-in; }
  @keyframes drawer-in { from { opacity: 0; transform: translate(-50%, 100%); } to { transform: translate(-50%, 0); } }
  .order-heading { align-items: flex-start; flex-direction: column; }
  .order-timer { width: 100%; }
  .order-direction { gap: 18px; }
  .order-direction strong { font-size: 16px; }
  .qr-panel { flex-direction: column; }
  .order-actions { flex-direction: column-reverse; }
  .order-actions .button { width: 100%; }
  .review-toolbar { align-items: flex-start; flex-direction: column; }
  .review-list article > div { align-items: flex-start; flex-wrap: wrap; }
  .review-list article time { width: 100%; margin: 0; }
  .account-content { padding: 26px 16px; }
  .account-sidebar { padding-inline: 10px; overflow-x: auto; }
  .account-sidebar nav { width: max-content; display: flex; }
  .account-heading { align-items: flex-start; flex-direction: column; }
  .account-stats { grid-template-columns: 1fr; }
  .account-order-route { grid-template-columns: 1fr auto 1fr; }
  .account-order-route .text-link { grid-column: 1 / -1; }
  .profile-form, .address-grid { grid-template-columns: 1fr; }
  .table-head { display: none; }
  .table-row { grid-template-columns: 1fr 1fr; }
  .table-row > span:last-child { justify-self: start; }
  .security-settings article { align-items: flex-start; flex-direction: column; }
  .documents-page aside { grid-template-columns: 1fr; }
  .modal { padding: 28px 20px; }
}

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

/* Working Django MVP surfaces */
.app-shell{min-height:100%;background:#070b13;color:#edf5f3;font-family:"Onest",sans-serif}.app-shell main{position:relative;z-index:1}.site-header a{text-decoration:none}.header-actions a{white-space:nowrap}.user-button{display:flex;align-items:center;gap:10px;padding:8px 12px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:#111b2c;color:#edf5f3}.user-button>span{display:grid;place-items:center;width:32px;height:32px;border-radius:9px;background:#42e4b1;color:#06120e;font-weight:700}.toast-stack{position:fixed;right:24px;top:96px;z-index:90;display:grid;gap:10px;max-width:420px}.toast{padding:14px 18px;border:1px solid rgba(255,255,255,.1);border-radius:14px;background:#111b2c;box-shadow:0 20px 50px rgba(0,0,0,.32)}.toast.success{border-color:rgba(66,228,177,.4)}.toast.error{border-color:rgba(255,112,112,.45)}
.working-exchange{overflow:visible}.working-field{position:relative;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr);min-height:88px;border:1px solid rgba(66,228,177,.35);border-radius:16px;background:#060a12;overflow:visible}.working-field>input,.working-field>output{width:100%;padding:18px 24px;border:0;border-radius:16px 0 0 16px;background:transparent;color:#f2f7f6;font:500 clamp(28px,3vw,42px)/1 "Onest";outline:0}.working-field>output{display:flex;align-items:center}.working-field:focus-within{border-color:#42e4b1;box-shadow:0 0 0 3px rgba(66,228,177,.08)}.native-choice{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.choice-select{position:relative;min-width:0;border-left:1px solid rgba(255,255,255,.07)}.choice-trigger{width:100%;height:100%;min-height:86px;display:grid;grid-template-columns:42px minmax(0,1fr) 18px;align-items:center;gap:12px;padding:14px 16px;border-radius:0 15px 15px 0;background:#101a2b;color:#f1f7f5;cursor:pointer;text-align:left;transition:background-color 160ms ease}.choice-trigger:hover,.choice-select.is-open .choice-trigger{background:#142138}.choice-trigger:focus-visible{outline:2px solid #42e4b1;outline-offset:-3px}.choice-icon{display:grid;place-items:center;width:38px;height:38px;flex:0 0 38px;border-radius:12px;background:linear-gradient(145deg,#42e4b1,#1ba982);color:#06120e;font:700 16px/1 "Onest";box-shadow:inset 0 1px rgba(255,255,255,.25)}.choice-icon.coin-icon[data-tone=btc]{background:linear-gradient(145deg,#ffb43d,#f27a05);color:#fff}.choice-icon.coin-icon[data-tone=eth]{background:linear-gradient(145deg,#aab9d5,#56657e);color:#fff}.choice-icon.coin-icon[data-tone=usdt]{background:linear-gradient(145deg,#50dfbd,#21a787)}.choice-icon.coin-icon[data-tone=usdc]{background:linear-gradient(145deg,#55adff,#2877cb);color:#fff}.choice-icon.coin-icon[data-tone=dot]{background:linear-gradient(145deg,#ff5db4,#d71982);color:#fff}.choice-icon.coin-icon[data-tone=sol]{background:linear-gradient(145deg,#8d62ff,#22d3ae);color:#fff}.choice-icon.coin-icon[data-tone=doge]{background:linear-gradient(145deg,#e2be59,#a88019);color:#fff}.choice-icon.coin-icon[data-tone=trx]{background:linear-gradient(145deg,#ff5c70,#c51e36);color:#fff}.choice-icon.coin-icon[data-tone=ltc]{background:linear-gradient(145deg,#82a7d7,#365c91);color:#fff}.choice-icon.coin-icon[data-tone=xrp]{background:linear-gradient(145deg,#ecf3f6,#8496a0);color:#071019}.choice-icon.bank-icon{background:linear-gradient(145deg,#50627c,#26364e);color:#fff}.choice-icon.bank-icon[data-tone=t-bank]{background:linear-gradient(145deg,#ffe04c,#ffb800);color:#101010}.choice-icon.bank-icon[data-tone=sberbank]{background:linear-gradient(145deg,#5ae087,#0b9f48)}.choice-icon.bank-icon[data-tone=alfa-bank]{background:linear-gradient(145deg,#ff5b62,#cb1720)}.choice-icon.bank-icon[data-tone=vtb]{background:linear-gradient(145deg,#398cff,#1256b6)}.choice-trigger-copy{min-width:0;display:grid;gap:4px}.choice-trigger-copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:15px;font-weight:650}.choice-trigger-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#81909f;font-size:10px}.choice-chevron{color:#81909f;font-size:20px;transition:transform 180ms ease}.choice-select.is-open .choice-chevron{transform:rotate(180deg)}.choice-menu{position:absolute;right:0;top:calc(100% + 10px);z-index:80;width:min(520px,calc(100vw - 48px));max-height:480px;padding:16px;border:1px solid rgba(255,255,255,.1);border-radius:18px;background:#111b32;box-shadow:0 28px 80px rgba(0,0,0,.55);animation:choice-open 160ms ease-out}.choice-menu-payout{right:0}.choice-menu[hidden]{display:none}.choice-menu-heading{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:2px 4px 14px;color:#42e4b1;font-size:12px}.choice-menu-heading strong{max-width:60%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}.choice-search{display:grid;grid-template-columns:22px 1fr;align-items:center;gap:8px;padding:0 12px;border:1px solid rgba(255,255,255,.09);border-radius:12px;background:#09111f;color:#42e4b1}.choice-search:focus-within{border-color:#42e4b1;box-shadow:0 0 0 3px rgba(66,228,177,.08)}.choice-search>span:first-child{font-size:24px;line-height:1}.choice-search input{min-width:0;padding:13px 0!important;border:0!important;background:transparent!important;color:#edf5f3!important;font:inherit!important;outline:0!important}.choice-search input::placeholder{color:#687789}.choice-list{max-height:350px;margin:10px -6px -6px;padding:0 6px 6px;overflow:auto;scrollbar-width:thin;scrollbar-color:#34435c transparent}.choice-group-title{display:block;padding:8px 8px 6px;color:#687789;font-size:10px;text-transform:uppercase;letter-spacing:.08em}.choice-option{width:100%;display:grid;grid-template-columns:42px minmax(0,1fr) minmax(92px,auto);align-items:center;gap:12px;padding:10px 8px;border-radius:12px;background:transparent;color:#eef5f4;cursor:pointer;text-align:left;transition:background-color 140ms ease,transform 140ms ease}.choice-option:hover,.choice-option:focus-visible,.choice-option.is-selected{background:rgba(66,228,177,.08)}.choice-option:focus-visible{outline:1px solid rgba(66,228,177,.5)}.choice-option:active{transform:scale(.99)}.choice-option-copy,.choice-option-meta{min-width:0;display:grid;gap:3px}.choice-option-copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;font-weight:600}.choice-option-copy small,.choice-option-meta small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#758494;font-size:10px}.choice-option-meta{text-align:right}.choice-option-meta strong{color:#42e4b1;font-size:12px}.choice-option-meta.reserve-meta strong{color:#edf5f3}.choice-empty{display:block;padding:30px;color:#71808e;text-align:center}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@keyframes choice-open{from{opacity:0;transform:translateY(-6px) scale(.985)}to{opacity:1;transform:none}}.working-details input,.working-details textarea,.auth-card input,.auth-card textarea,.ticket-reply textarea,.transition-panel input,.transition-panel select,.transition-panel textarea{width:100%;margin-top:8px;padding:15px 16px;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:#0a1120;color:#f3f7f6;font:inherit;outline:0}.working-details input:focus,.auth-card input:focus,.auth-card textarea:focus,.ticket-reply textarea:focus,.transition-panel input:focus,.transition-panel select:focus,.transition-panel textarea:focus{border-color:#42e4b1;box-shadow:0 0 0 3px rgba(66,228,177,.08)}.live-recap{display:grid;gap:12px;margin-top:22px;padding:18px;border-radius:14px;background:rgba(66,228,177,.055)}.live-recap span{display:flex;justify-content:space-between;gap:20px;color:#83909f}.live-recap strong{color:#edf5f3}.empty-service{padding:48px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:#0d1728}.empty-service span,.modal-kicker{color:#42e4b1;text-transform:uppercase;letter-spacing:.12em;font-size:12px}.empty-service h2{margin:12px 0;font-size:32px}
.inner-page{padding:62px 0 110px;min-height:70vh}.back-link{display:inline-block;margin-bottom:24px;color:#9cabba;text-decoration:none}.status-badge{display:inline-flex;width:max-content;padding:7px 10px;border-radius:999px;background:rgba(66,228,177,.1);color:#69e8bd;font-size:12px}.payment-panel em{font-style:normal;color:#42e4b1}.payment-report{display:grid;gap:14px;margin-top:24px;padding-top:24px;border-top:1px solid rgba(255,255,255,.08)}.payment-report label,.ticket-reply label{display:grid;gap:8px;color:#a9b5c1}.payment-report input,.payment-report textarea{width:100%;padding:14px 15px;border:1px solid rgba(255,255,255,.1);border-radius:11px;background:#050910;color:#f4f7f7;font:inherit}.progress-row{display:flex;gap:14px;padding:12px 0}.progress-row>span{width:10px;height:10px;margin-top:6px;border-radius:50%;background:#42e4b1}.progress-row div{display:grid;gap:4px}.progress-row small{color:#82909d}
.account-shell{display:grid;grid-template-columns:250px 1fr;overflow:hidden;border:1px solid rgba(255,255,255,.07);border-radius:22px;background:#070c15}.account-sidebar{display:flex;flex-direction:column;min-height:680px;padding:28px;border-right:1px solid rgba(255,255,255,.07)}.account-user{display:flex;align-items:center;gap:12px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,.07)}.account-user>span{display:grid;place-items:center;width:44px;height:44px;border-radius:12px;background:#42e4b1;color:#06120e;font-weight:700}.account-user div{display:grid}.account-user small{color:#7e8b98}.account-sidebar nav{display:grid;gap:6px;margin-top:22px}.account-sidebar nav a{padding:12px 14px;border-radius:10px;color:#929eaa;text-decoration:none}.account-sidebar nav a.active,.account-sidebar nav a:hover{background:rgba(66,228,177,.08);color:#42e4b1}.account-sidebar form{margin-top:auto}.logout-link{border:0;background:none;color:#ff7777;font:inherit;cursor:pointer}.account-content{padding:38px}.account-panel{margin-top:22px;padding:24px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:#0d1728}.account-order{display:grid;grid-template-columns:1fr 1.2fr auto;align-items:center;gap:16px;padding:16px 0;border-bottom:1px solid rgba(255,255,255,.06);color:#edf5f3;text-decoration:none}.account-order:last-child{border-bottom:0}.account-order span:first-child{display:grid}.account-order small{color:#7f8d9a}.empty-row{padding:28px;color:#7f8c99;text-align:center}.complete-badge{color:#42e4b1}
.auth-page{display:grid;place-items:center;min-height:680px;padding:60px 20px}.auth-card{width:min(480px,100%);padding:36px;border:1px solid rgba(255,255,255,.08);border-radius:22px;background:#0c1524;box-shadow:0 30px 80px rgba(0,0,0,.3)}.auth-card.wide{width:min(700px,100%)}.auth-card h1{margin:10px 0 8px;font-size:38px}.auth-card>p{color:#8996a3}.auth-card form{display:grid;gap:16px;margin:26px 0}.auth-card label{display:grid;gap:4px;color:#b0bbc5}.auth-card ul.errorlist{margin:6px 0 0;padding:0;list-style:none;color:#ff8585;font-size:13px}.auth-card a{color:#42e4b1}.content-page>h1,.ticket-page h1,.legal-document h1{margin:18px 0 34px;font-size:clamp(42px,6vw,72px)}.reviews-grid.full{grid-template-columns:repeat(3,1fr)}.ticket-page{max-width:900px}.message-list{display:grid;gap:14px;margin:30px 0}.support-message{max-width:78%;padding:18px;border-radius:16px 16px 16px 4px;background:#111d30}.support-message.operator{margin-left:auto;border-radius:16px 16px 4px 16px;background:rgba(66,228,177,.11)}.support-message>div{display:flex;justify-content:space-between;gap:16px}.support-message small{color:#7f8d99}.support-message p{margin-bottom:0}.ticket-reply{display:grid;gap:14px}

.legal-page { padding-top: 64px; background: radial-gradient(circle at 85% 4%, rgba(66, 228, 177, .055), transparent 24%); }
.legal-document { max-width: 1080px; }
.legal-document-heading { max-width: 820px; margin-bottom: 38px; }
.legal-document-heading > p { margin: 0 0 12px; color: var(--mint); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.legal-document-heading h1 { margin: 0; }
.legal-document-window {
  padding: clamp(26px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(16, 28, 46, .96), rgba(9, 17, 29, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}
.legal-document-body { max-width: 860px; margin: 0 auto; color: #b2bec7; font-size: 14px; line-height: 1.82; overflow-wrap: anywhere; }
.legal-document-body p { margin: 0 0 1.4em; }
.legal-document-body p:first-child { margin-bottom: 1.2em; color: var(--ink); font-size: 22px; font-weight: 600; }
.legal-document-body p:last-child { margin-bottom: 0; }
.legal-updated { display: block; margin-top: 18px; color: var(--ink-muted); font-size: 10px; text-align: right; }
@media (max-width: 560px) {
  .legal-page { padding-top: 44px; }
  .legal-document-heading { margin-bottom: 26px; }
  .legal-document-window { padding: 23px 19px; border-radius: 16px; }
  .legal-document-body { font-size: 13px; line-height: 1.75; }
  .legal-document-body p:first-child { font-size: 19px; }
}

.about-page {
  padding: 62px 0 112px;
  background:
    radial-gradient(circle at 10% 8%, rgba(94, 74, 180, .11), transparent 28%),
    radial-gradient(circle at 91% 12%, rgba(66, 228, 177, .08), transparent 26%),
    #080d16;
}
.about-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 24px;
  background: rgba(10, 18, 30, .96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}
.about-hero-panel {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  min-height: 420px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}
.about-brand-panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(66, 228, 177, .12), transparent 58%),
    #0d1828;
}
.about-brand-panel::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(66, 228, 177, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(66, 228, 177, .06);
  content: "";
}
.about-wordmark { position: relative; z-index: 1; gap: 17px; font-size: clamp(42px, 5vw, 70px); }
.about-wordmark .wordmark-glyph { width: 70px; height: 70px; border-radius: 20px; }
.about-wordmark .wordmark-glyph i { width: 44px; height: 6px; }
.about-brand-panel > p { position: relative; z-index: 1; margin: 24px 0 0; color: var(--ink-soft); font-size: 16px; }
.about-availability { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 9px; margin-top: 38px; color: var(--mint); font-size: 11px; }
.about-availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px rgba(66, 228, 177, .65); }
.about-lead { display: flex; justify-content: center; flex-direction: column; padding: clamp(38px, 6vw, 82px); }
.about-lead > p:first-child,
.about-section-kicker { margin: 0 0 13px; color: var(--mint); font-size: 10px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.about-lead h1 { max-width: 680px; margin: 0 0 30px; font-size: clamp(42px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.about-lead > p:last-child { max-width: 690px; margin: 0; color: #aebac4; font-size: 16px; line-height: 1.75; }
.about-lead strong { color: var(--ink); }
.about-content { padding: clamp(36px, 6vw, 82px); }
.about-content h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(66, 228, 177, .075), transparent 34%),
    rgba(14, 25, 42, .72);
}
.about-story-heading { display: flex; flex-direction: column; }
.about-story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.about-story-facts > span {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 13px;
  background: rgba(5, 12, 22, .42);
}
.about-story-facts strong { color: var(--mint); font-size: 17px; }
.about-story-facts small { color: #778693; font-size: 8px; }
.about-story-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  color: #a8b5bf;
  font-size: 14px;
  line-height: 1.75;
}
.about-story-copy p {
  margin: 0;
  padding: 20px 22px;
  border-left: 2px solid rgba(66, 228, 177, .36);
  border-radius: 0 13px 13px 0;
  background: rgba(5, 12, 22, .36);
}
.about-directions-section,
.about-partner-section,
.about-advantages-section { margin-top: 70px; padding-top: 70px; border-top: 1px solid rgba(255, 255, 255, .075); }
.about-directions-section > header { max-width: 780px; }
.about-directions-section > header > span { display: block; max-width: 650px; margin-top: 18px; color: var(--ink-muted); font-size: 13px; line-height: 1.65; }
.about-catalog { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 16px; margin-top: 38px; }
.about-catalog-group {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 228, 177, .045), transparent 30%),
    rgba(13, 24, 40, .7);
}
.about-catalog-payout { background: radial-gradient(circle at 100% 0, rgba(111, 95, 225, .07), transparent 32%), rgba(13, 24, 40, .7); }
.about-catalog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.about-catalog-title > span { color: #e8f1ef; font-size: 13px; font-weight: 650; }
.about-catalog-title > small {
  padding: 5px 8px;
  border-radius: 999px;
  color: #7d8b98;
  background: rgba(255, 255, 255, .04);
  font-size: 8px;
}
.about-tags { display: grid; gap: 9px; }
.about-catalog-crypto .about-tags { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-catalog-payout .about-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-tags > span {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 70px;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 13px;
  color: #dfe9e6;
  background: rgba(5, 12, 22, .4);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.about-tags > span:hover { border-color: rgba(66, 228, 177, .2); background: rgba(10, 22, 35, .76); transform: translateY(-2px); }
.about-tags > span > span { display: grid; min-width: 0; gap: 4px; }
.about-tags b { overflow: hidden; font-size: 10px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.about-tags small { overflow: hidden; color: #748392; font-size: 7px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.about-tag-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: var(--mint);
  background: #0a1422;
  font-size: 11px;
  font-style: normal;
}
.about-tag-icon img { width: 100%; height: 100%; padding: 4px; object-fit: contain; }
.about-catalog-payout .about-tag-icon { background: #f5f6f8; }
.about-partner-section {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 7vw, 88px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 100%, rgba(105, 88, 220, .1), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(66, 228, 177, .07), transparent 30%),
    rgba(14, 25, 42, .66);
}
.about-partner-copy { color: #a8b5bf; font-size: 14px; line-height: 1.75; }
.about-partner-copy > p { margin: 0; }
.about-partner-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 26px 0;
}
.about-partner-steps > span {
  display: grid;
  min-height: 106px;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 13px;
  background: rgba(5, 12, 22, .42);
}
.about-partner-steps i { color: var(--mint); font-size: 9px; font-style: normal; letter-spacing: .08em; }
.about-partner-steps b { color: #e6efed; font-size: 11px; }
.about-partner-steps small { color: #71808d; font-size: 8px; line-height: 1.4; }
.about-partner-section .button { min-width: 220px; }
.about-advantages-section > header { max-width: 760px; margin-bottom: 40px; }
.about-advantages-list { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.about-advantages-list article {
  grid-column: span 2;
  display: flex;
  min-height: 222px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 31, 51, .92), rgba(9, 17, 29, .94));
}
.about-advantages-list article:nth-child(n + 4) { grid-column: span 3; }
.about-advantages-list article > span { color: var(--mint); font-size: 9px; letter-spacing: .08em; }
.about-advantages-list article > div { display: flex; height: 100%; flex-direction: column; }
.about-advantages-list article i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 20px 0 28px;
  border: 1px solid rgba(66, 228, 177, .18);
  border-radius: 12px;
  color: var(--mint);
  background: rgba(66, 228, 177, .07);
  font-size: 18px;
  font-style: normal;
}
.about-advantages-list article:nth-child(even) i { border-color: rgba(118, 101, 231, .2); color: #9d8cff; background: rgba(118, 101, 231, .08); }
.about-advantages-list h3 { margin: 0 0 9px; color: var(--ink); font-size: 18px; }
.about-advantages-list p { max-width: 540px; margin: 0; color: #8f9eaa; font-size: 12px; line-height: 1.62; }
@media (max-width: 900px) {
  .about-hero-panel { grid-template-columns: 1fr; }
  .about-brand-panel { min-height: 300px; }
  .about-story-section,.about-partner-section { grid-template-columns: 1fr; gap: 28px; }
  .about-catalog { grid-template-columns: 1fr; }
  .about-catalog-crypto .about-tags { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-catalog-payout .about-tags { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-advantages-list article,.about-advantages-list article:nth-child(n + 4) { grid-column: span 3; }
}
@media (max-width: 560px) {
  .about-page { padding: 36px 0 76px; }
  .about-window { border-radius: 18px; }
  .about-brand-panel { min-height: 240px; padding: 28px 22px; }
  .about-wordmark { font-size: 39px; }
  .about-wordmark .wordmark-glyph { width: 52px; height: 52px; border-radius: 15px; }
  .about-wordmark .wordmark-glyph i { width: 32px; height: 5px; }
  .about-brand-panel > p { margin-top: 17px; font-size: 13px; }
  .about-availability { margin-top: 25px; }
  .about-lead { padding: 32px 22px 38px; }
  .about-lead h1 { margin-bottom: 22px; font-size: 42px; }
  .about-lead > p:last-child { font-size: 14px; }
  .about-content { padding: 38px 22px 46px; }
  .about-content h2 { font-size: 34px; }
  .about-directions-section,.about-partner-section,.about-advantages-section { margin-top: 48px; padding-top: 48px; }
  .about-story-section { padding: 23px 19px; border-radius: 17px; }
  .about-story-facts { grid-template-columns: 1fr; margin-top: 24px; }
  .about-story-copy p { padding: 16px; }
  .about-catalog-group { padding: 17px; border-radius: 17px; }
  .about-catalog-crypto .about-tags,.about-catalog-payout .about-tags { grid-template-columns: 1fr; }
  .about-partner-section { padding: 24px 19px; border-radius: 17px; }
  .about-partner-steps { grid-template-columns: 1fr; }
  .about-partner-steps > span { min-height: 86px; }
  .about-partner-section .button { width: 100%; min-width: 0; }
  .about-advantages-list { grid-template-columns: 1fr; }
  .about-advantages-list article,.about-advantages-list article:nth-child(n + 4) { grid-column: auto; min-height: 0; }
}
.control-body{min-height:100vh;background:#070b13;color:#edf5f3;font-family:"Onest",sans-serif}.control-sidebar{position:fixed;inset:0 auto 0 0;width:260px;padding:26px 22px;border-right:1px solid rgba(255,255,255,.07);background:#080e19}.control-sidebar>small{display:block;margin:20px 0;color:#536172;letter-spacing:.14em}.control-sidebar nav{display:grid;gap:5px}.control-sidebar nav a{padding:12px 14px;border-radius:10px;color:#98a5b1;text-decoration:none}.control-sidebar nav a:hover{background:rgba(66,228,177,.08);color:#42e4b1}.control-user{position:absolute;right:22px;bottom:24px;left:22px;display:grid;gap:6px;padding-top:18px;border-top:1px solid rgba(255,255,255,.07)}.control-user a{color:#42e4b1;text-decoration:none}.control-main{min-height:100vh;margin-left:260px;padding:42px}.control-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:32px}.control-heading h1{margin:6px 0;font-size:44px}.control-heading>div>span{color:#42e4b1}.control-stats,.reserve-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.control-stats article,.reserve-grid article,.control-order-card,.control-section{padding:24px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:#0d1728}.control-stats article,.reserve-grid article{display:grid;gap:7px}.control-stats strong{font-size:36px}.control-stats small,.reserve-grid small{color:#7f8c99}.control-section{margin-top:22px}.control-table{display:grid}.control-row{display:grid;grid-template-columns:1.2fr 1fr .7fr .8fr;align-items:center;gap:16px;padding:15px 0;border-bottom:1px solid rgba(255,255,255,.06);color:#edf5f3;text-decoration:none}.control-row.header{color:#6f7e8c;font-size:12px;text-transform:uppercase}.control-row span:first-child{display:grid}.control-row small{color:#768594}.reserve-grid strong{font-size:24px}.control-order-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.control-order-card h2{margin-top:0}.control-order-card dl{display:grid;gap:0}.control-order-card dl div{display:grid;grid-template-columns:140px 1fr;gap:20px;padding:13px 0;border-bottom:1px solid rgba(255,255,255,.06)}.control-order-card dt{color:#7f8c99}.control-order-card dd{margin:0}.break-value{overflow-wrap:anywhere}.control-order-card.sensitive{border-color:rgba(255,188,80,.2)}.control-order-card.sensitive>p{color:#f4be68}.transition-panel form{display:grid;grid-template-columns:1fr 1fr;gap:18px}.transition-panel form label{display:grid}.transition-panel form label:nth-child(2){grid-column:2}.transition-panel form .checkbox-row,.transition-panel form button{grid-column:1/-1}.timeline>div{position:relative;display:grid;gap:4px;padding:10px 0 10px 24px}.timeline>div>span{position:absolute;left:0;top:16px;width:9px;height:9px;border-radius:50%;background:#42e4b1}.timeline small{color:#7f8c99}
@media(max-width:900px){.working-field{grid-template-columns:1fr}.working-field>input,.working-field>output{border-radius:15px 15px 0 0}.choice-select{border-top:1px solid rgba(255,255,255,.07);border-left:0}.choice-trigger{min-height:72px;border-radius:0 0 15px 15px}.choice-menu{right:0;left:0;width:100%}.account-shell{grid-template-columns:1fr}.account-sidebar{min-height:auto;border-right:0;border-bottom:1px solid rgba(255,255,255,.07)}.account-sidebar nav{grid-template-columns:repeat(3,1fr)}.account-sidebar form{margin-top:20px}.reviews-grid.full{grid-template-columns:1fr}.control-sidebar{position:static;width:auto}.control-sidebar nav{grid-template-columns:repeat(2,1fr)}.control-user{position:static;margin-top:20px}.control-main{margin-left:0;padding:24px}.control-stats,.reserve-grid,.control-order-grid{grid-template-columns:1fr}.control-row{grid-template-columns:1fr 1fr}.control-row.header{display:none}.transition-panel form{grid-template-columns:1fr}.transition-panel form label:nth-child(2){grid-column:auto}}
@media(max-width:640px){.site-header .main-nav{display:none}.header-actions .button-muted{display:none}.hero-copy h1{font-size:42px}.exchange-shell{padding:18px}.exchange-grid{gap:14px}.working-field>input,.working-field>output{font-size:30px}.choice-menu{position:fixed;right:14px;bottom:14px;left:14px;top:auto;width:auto;max-height:min(620px,calc(100dvh - 28px));padding:14px}.choice-list{max-height:min(430px,calc(100dvh - 170px))}.choice-option{grid-template-columns:40px minmax(0,1fr) minmax(74px,auto);padding-inline:6px}.choice-option-meta small{max-width:86px}.exchange-footer{grid-template-columns:1fr}.working-details{grid-template-columns:1fr}.account-content{padding:22px}.account-heading{align-items:flex-start;flex-direction:column}.account-stats{grid-template-columns:1fr}.account-order{grid-template-columns:1fr}.toast-stack{right:12px;left:12px;top:82px}.control-main{padding:18px}.control-heading{flex-direction:column}.control-heading h1{font-size:34px}.control-row{grid-template-columns:1fr}.control-sidebar nav{grid-template-columns:1fr 1fr}.support-message{max-width:92%}}

/* Personal cabinet · premium navigation and responsive workspace */
.cabinet-page{padding:44px 0 110px;min-height:78vh}
.cabinet-layout{display:grid;grid-template-columns:224px minmax(0,1fr) 286px;gap:18px;align-items:start}
.cabinet-nav-panel,.cabinet-rail-card,.cabinet-panel{border:1px solid rgba(151,176,204,.14);background:linear-gradient(145deg,rgba(17,31,52,.96),rgba(9,17,30,.96));box-shadow:0 22px 70px rgba(0,0,0,.16)}
.cabinet-nav-panel{position:sticky;top:26px;min-height:690px;padding:20px 14px;border-radius:22px}
.cabinet-profile-mini{display:flex;gap:11px;align-items:center;padding:5px 7px 20px;border-bottom:1px solid rgba(151,176,204,.12)}
.cabinet-profile-mini div{display:grid;gap:3px;min-width:0}.cabinet-profile-mini strong{font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cabinet-profile-mini small{color:#7e91a6;font-size:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cabinet-avatar{display:grid;place-items:center;width:38px;height:38px;flex:0 0 38px;border-radius:13px;background:linear-gradient(145deg,#42e4b1,#18ac88);color:#07141a;font-weight:800}.cabinet-avatar.large{width:52px;height:52px;flex-basis:52px;border-radius:17px;font-size:20px}
.cabinet-nav-list{display:grid;gap:5px;margin-top:20px}.cabinet-nav-item{display:flex;align-items:center;gap:10px;width:100%;padding:12px 10px;border:1px solid transparent;border-radius:11px;background:transparent;color:#8496aa;font:500 13px "Onest";cursor:pointer;text-align:left;transition:.18s ease}.cabinet-nav-item:hover{color:#eef7f5;background:rgba(66,228,177,.05)}.cabinet-nav-item.is-active{color:#42e4b1;border-color:rgba(66,228,177,.18);background:rgba(66,228,177,.09)}.cabinet-nav-index{width:24px;color:#526a82;font:600 10px "Onest"}.cabinet-nav-item.is-active .cabinet-nav-index{color:#42e4b1}
.cabinet-logout-form{margin-top:auto;position:absolute;right:14px;bottom:18px;left:14px}.cabinet-logout{display:flex;gap:9px;align-items:center;padding:12px 10px;border:0;background:none;color:#ff8690;font:500 13px "Onest";cursor:pointer}.cabinet-logout span{font-size:19px}
.cabinet-main{min-width:0;padding:10px 10px 18px}.cabinet-header{display:flex;justify-content:space-between;gap:24px;align-items:flex-end;margin:0 4px 22px}.cabinet-kicker{display:block;color:#42e4b1;font-size:10px;font-weight:700;letter-spacing:.16em}.cabinet-header h1{margin:8px 0 8px;font-size:clamp(30px,3vw,44px);letter-spacing:-.045em}.cabinet-header p,.cabinet-lead{margin:0;color:#8ea1b4;line-height:1.65;font-size:13px}.cabinet-cta{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:13px 18px;border:1px solid transparent;border-radius:11px;background:#42e4b1;color:#06131a;font:700 13px "Onest";text-decoration:none;white-space:nowrap;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}.cabinet-cta:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(66,228,177,.2)}.cabinet-cta span{font-size:18px}.cabinet-cta-small{padding:10px 13px;font-size:12px}
.cabinet-panel{display:none;border-radius:18px;padding:22px}.cabinet-panel.is-visible{display:block;animation:page-in .26s ease both}.cabinet-panel[hidden]{display:none}
.cabinet-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin:-22px -22px 26px;background:rgba(151,176,204,.13);border-radius:18px 18px 0 0;overflow:hidden}.cabinet-stat-grid article{display:grid;gap:7px;padding:20px;background:rgba(11,22,37,.94)}.cabinet-stat-grid span,.cabinet-stat-grid small{color:#7d91a7;font-size:11px}.cabinet-stat-grid strong{font-size:31px;letter-spacing:-.04em;color:#edf7f4}.cabinet-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:14px;margin:2px 0 14px}.cabinet-section-head-spaced{margin-top:36px}.cabinet-section-head h2{margin:7px 0 0;font-size:23px;letter-spacing:-.035em}.cabinet-text-button,.cabinet-rail-link{border:0;background:none;color:#42e4b1;font:500 12px "Onest";cursor:pointer}
.cabinet-order-list,.cabinet-mini-table,.cabinet-detail-list,.cabinet-ticket-list{display:grid}.cabinet-order-row,.cabinet-mini-table>a,.cabinet-table-row,.cabinet-detail-row,.cabinet-ticket-row{display:grid;align-items:center;gap:14px;padding:14px 2px;border-bottom:1px solid rgba(151,176,204,.11);color:#edf7f4;text-decoration:none;transition:background .16s ease}.cabinet-order-row{grid-template-columns:1.15fr 1.2fr auto auto}.cabinet-order-row:hover,.cabinet-mini-table>a:hover,.cabinet-table-row:not(.cabinet-table-head):hover,.cabinet-ticket-row:hover{background:rgba(66,228,177,.045)}.cabinet-order-id,.cabinet-mini-table>a span,.cabinet-table-row>span:first-child,.cabinet-ticket-row>span:first-child{display:grid;gap:4px}.cabinet-order-row small,.cabinet-mini-table small,.cabinet-table-row small,.cabinet-ticket-row small{color:#7489a0;font-size:10px}.cabinet-order-route{display:grid;gap:4px}.cabinet-order-route small{color:#8ba0b4}.cabinet-row-arrow{color:#42e4b1;font-size:17px}.cabinet-status{display:inline-flex;width:max-content;align-items:center;padding:5px 8px;border-radius:999px;font-size:10px;white-space:nowrap}.cabinet-status.is-active{color:#42e4b1;background:rgba(66,228,177,.1)}.cabinet-status.is-done{color:#93b5ca;background:rgba(147,181,202,.1)}
.cabinet-mini-table>a{grid-template-columns:1fr auto auto}.cabinet-mini-table strong{font-size:13px}.cabinet-mini-table em{min-width:90px;color:#42e4b1;font-size:10px;font-style:normal;text-align:right}.cabinet-empty{display:flex;align-items:center;gap:13px;padding:23px 4px;color:#7d91a7}.cabinet-empty>span{display:grid;place-items:center;width:31px;height:31px;border:1px solid rgba(66,228,177,.26);border-radius:50%;color:#42e4b1}.cabinet-empty div{display:grid;gap:3px}.cabinet-empty strong{color:#dcebe8;font-size:12px}.cabinet-empty small{font-size:11px}.cabinet-empty>a{margin-left:auto;color:#42e4b1;font-size:11px}.cabinet-empty.compact{padding:16px 4px}
.cabinet-table{overflow:auto}.cabinet-table-row{grid-template-columns:1.1fr 1.2fr .8fr auto;min-width:560px}.cabinet-table-head{padding-top:6px;color:#70859a;font-size:10px;text-transform:uppercase;letter-spacing:.11em}.cabinet-table-empty{padding:32px 4px;color:#8496aa;text-align:center;font-size:13px}
.cabinet-detail-row{grid-template-columns:auto 1fr auto}.cabinet-detail-icon{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:rgba(66,228,177,.1);color:#42e4b1;font-weight:700}.cabinet-detail-row>div{display:grid;gap:4px}.cabinet-detail-row small{color:#8094a8;font-size:11px}.cabinet-danger-button{border:0;background:none;color:#ff8c94;font:500 11px "Onest";cursor:pointer}.cabinet-form,.cabinet-form-card{display:grid;gap:16px}.cabinet-form{margin-top:24px;padding-top:20px;border-top:1px solid rgba(151,176,204,.12)}.cabinet-form-card{margin-top:20px;padding:20px;border:1px solid rgba(151,176,204,.12);border-radius:14px;background:rgba(7,16,29,.35)}.cabinet-form-title{font-size:16px;font-weight:650}.cabinet-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.cabinet-form label{display:grid;gap:7px;color:#96aac0;font-size:11px}.cabinet-form label:first-child{grid-column:1/-1}.cabinet-form input,.cabinet-form select{width:100%;padding:12px 13px;border:1px solid rgba(151,176,204,.17);border-radius:10px;background:#08111f;color:#eef7f4;font:inherit;outline:none}.cabinet-form input:focus,.cabinet-form select:focus{border-color:#42e4b1;box-shadow:0 0 0 3px rgba(66,228,177,.08)}.cabinet-error{color:#ff8c94;font-size:10px}.cabinet-ticket-row{grid-template-columns:1fr auto auto}.cabinet-ticket-row>span:first-child b{font-size:13px}.cabinet-ticket-row>span:last-child{color:#42e4b1}
.cabinet-rail{display:grid;gap:16px}.cabinet-rail-card{border-radius:18px;padding:18px}.cabinet-identity-card{display:grid;gap:16px}.cabinet-identity{display:flex;align-items:center;gap:12px}.cabinet-identity div{display:grid;gap:4px}.cabinet-identity small{color:#7f94a8;font-size:10px}.cabinet-identity-meta{display:flex;justify-content:space-between;gap:12px;padding-top:13px;border-top:1px solid rgba(151,176,204,.12);color:#7f94a8;font-size:11px}.cabinet-identity-meta b{color:#eaf6f3;font-weight:600}.cabinet-identity-meta b i{display:inline-block;width:6px;height:6px;margin-right:3px;border-radius:50%;background:#42e4b1;box-shadow:0 0 0 4px rgba(66,228,177,.1)}.cabinet-rail-link{padding:0;text-align:left}
.cabinet-rail-head{display:flex;justify-content:space-between;align-items:end;gap:10px;margin-bottom:14px}.cabinet-rail-head h3{margin:7px 0 0;font-size:18px}.cabinet-rail-head>a{color:#42e4b1;font-size:11px;text-decoration:none}.cabinet-review-rail article{padding:14px 0;border-top:1px solid rgba(151,176,204,.12)}.cabinet-review-meta{display:flex;justify-content:space-between;gap:8px}.cabinet-review-meta strong{font-size:12px}.cabinet-review-meta span{color:#74899e;font-size:10px}.cabinet-stars{margin:8px 0;color:#ffc45c;letter-spacing:2px;font-size:14px;text-shadow:0 0 12px rgba(255,196,92,.32)}.cabinet-review-rail p{margin:0;color:#9cb0c1;font-size:11px;line-height:1.55}
@media(max-width:1120px){.cabinet-layout{grid-template-columns:210px minmax(0,1fr)}.cabinet-rail{grid-column:2;grid-template-columns:repeat(2,minmax(0,1fr))}.cabinet-nav-panel{grid-row:span 2}}
@media(max-width:820px){.cabinet-layout{grid-template-columns:1fr}.cabinet-nav-panel{position:static;min-height:0}.cabinet-logout-form{position:static;margin-top:16px}.cabinet-nav-list{grid-template-columns:repeat(5,1fr)}.cabinet-nav-item{justify-content:center;flex-direction:column;gap:4px;padding:9px 4px;text-align:center;font-size:10px}.cabinet-nav-index{width:auto}.cabinet-rail{grid-column:auto;grid-template-columns:1fr 1fr}.cabinet-main{padding-inline:0}}
@media(max-width:560px){.cabinet-page{padding-top:20px}.cabinet-header{align-items:flex-start;flex-direction:column}.cabinet-header h1{font-size:31px}.cabinet-stat-grid{grid-template-columns:1fr;margin-inline:-22px}.cabinet-stat-grid article{padding:15px 20px}.cabinet-panel{padding:17px}.cabinet-form-grid{grid-template-columns:1fr}.cabinet-form label:first-child{grid-column:auto}.cabinet-rail{grid-template-columns:1fr}.cabinet-order-row{grid-template-columns:1fr auto}.cabinet-order-route{grid-column:1}.cabinet-order-row .cabinet-status{grid-column:2;grid-row:1}.cabinet-row-arrow{display:none}.cabinet-mini-table>a{grid-template-columns:1fr auto}.cabinet-mini-table em{grid-column:2;grid-row:1}.cabinet-nav-list{gap:2px}}

/* Local brand artwork for exchange selectors */
.choice-icon.logo-icon{position:relative;overflow:hidden}
.choice-icon.logo-icon>span{position:absolute;inset:0;display:grid;place-items:center}
.choice-icon.logo-icon>img{position:relative;z-index:1;width:100%;height:100%;padding:3px;object-fit:contain}
.choice-icon.logo-icon.coin-icon{border:1px solid rgba(255,255,255,.1);background:#0c1524;box-shadow:none}
.choice-icon.logo-icon.bank-icon{padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;overflow:visible}
.choice-icon.logo-icon.bank-icon>img{padding:0;border-radius:0;object-fit:contain}

/* More restrained first-screen exchange composition */
.hero.hero-section{min-height:680px;padding-top:52px}
.hero-section .hero-copy{max-width:860px;margin-bottom:30px}
.hero-section .hero-copy h1{font-size:clamp(42px,4.25vw,62px);line-height:1.04}
.hero-section .hero-copy>p:last-child{font-size:16px}
.working-exchange{width:100%;max-width:1180px;margin-inline:auto;padding:27px 30px;border-radius:18px}
.working-exchange .exchange-columns{grid-template-columns:repeat(2,minmax(0,1fr));gap:36px}
.working-exchange .exchange-label{margin-bottom:8px}
.working-exchange .working-field{grid-template-columns:minmax(0,1.12fr) minmax(218px,.88fr);min-height:72px;border-radius:14px}
.working-exchange .working-field>input,.working-exchange .working-field>output{padding:14px 20px;border-radius:13px 0 0 13px;font-family:"Onest",Inter,ui-sans-serif,system-ui,sans-serif;font-size:clamp(27px,2.25vw,34px);font-weight:500;font-variant-numeric:tabular-nums lining-nums;letter-spacing:-.025em}
.working-exchange .choice-trigger{min-height:70px;grid-template-columns:36px minmax(0,1fr) 16px;gap:10px;padding:10px 13px;border-radius:0 13px 13px 0}
.working-exchange .choice-icon{width:34px;height:34px;flex-basis:34px;border-radius:10px}
.working-exchange .choice-trigger-copy strong{font-size:14px}
.working-exchange .amount-meta{padding-top:9px;font-size:11px}
.working-exchange .exchange-summary{margin-top:20px;padding-top:18px}
.working-exchange .button-large{min-height:48px}
@media(max-width:900px){.hero.hero-section{padding-top:44px}.working-exchange{max-width:680px;padding:24px}.working-exchange .exchange-columns{grid-template-columns:1fr;gap:22px}.working-exchange .working-field{grid-template-columns:1fr}.working-exchange .working-field>input,.working-exchange .working-field>output{border-radius:13px 13px 0 0}.working-exchange .choice-trigger{border-radius:0 0 13px 13px}}
@media(max-width:640px){.hero.hero-section{padding-top:34px}.hero-section .hero-copy h1{font-size:38px}.working-exchange{padding:16px}.working-exchange .exchange-columns{gap:18px}.working-exchange .working-field>input,.working-exchange .working-field>output{font-size:28px}}

/* Final compact hero rhythm */
.hero.hero-section{min-height:620px;padding-top:28px}
.hero-section .hero-copy{max-width:780px;margin-bottom:22px}
.hero-section .hero-copy h1{margin-bottom:14px;font-size:clamp(38px,3.8vw,56px);line-height:1.04}
.hero-section .hero-copy>p:last-child{font-size:15px;line-height:1.55}
.working-exchange{max-width:1060px;padding:22px 24px}
.working-exchange .exchange-columns{gap:28px}
.working-exchange .working-field{grid-template-columns:minmax(0,1.08fr) minmax(200px,.92fr);min-height:64px}
.working-exchange .working-field>input,.working-exchange .working-field>output{padding:12px 17px;font-size:clamp(25px,2vw,30px)}
.working-exchange .choice-trigger{min-height:62px;grid-template-columns:34px minmax(0,1fr) 14px;padding:8px 11px}
.working-exchange .choice-icon{width:32px;height:32px;flex-basis:32px}
.working-exchange .exchange-summary{margin-top:16px;padding-top:15px}
@media(max-width:900px){.hero.hero-section{padding-top:26px}.working-exchange{max-width:640px;padding:21px}.working-exchange .working-field{grid-template-columns:1fr}}
@media(max-width:640px){.hero.hero-section{padding-top:22px}.hero-section .hero-copy{margin-bottom:19px}.hero-section .hero-copy h1{font-size:35px}.working-exchange{padding:15px}.working-exchange .working-field>input,.working-exchange .working-field>output{font-size:27px}}
.working-exchange .exchange-footer{grid-template-columns:1fr auto}
@media(max-width:640px){.working-exchange .exchange-footer{grid-template-columns:1fr}.working-exchange .exchange-footer .button{width:100%}}

/* Dedicated exchange checkout flow */
.home-exchange {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.home-exchange .working-field { min-height: 62px; }
.home-exchange .choice-trigger { min-height: 60px; }
.home-exchange .exchange-footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
  padding-top: 0;
  border-top: 0;
}
.home-exchange .exchange-footer .button { min-width: 224px; }

@media (min-width: 901px) {
  .hero.hero-section {
    min-height: calc(100vh - 110px);
    padding-top: 80px;
    padding-bottom: 62px;
  }
  .hero-section .hero-copy { margin-bottom: 80px; }
  .home-exchange .exchange-columns { gap: 64px; }
  .home-exchange .working-field {
    grid-template-columns: minmax(0, 1fr) minmax(178px, .58fr);
  }
  .home-exchange .working-field > input,
  .home-exchange .working-field > output {
    padding: 11px 17px;
    font-size: clamp(24px, 1.8vw, 29px);
  }
  .home-exchange .choice-select { border-left: 0; }
  .home-exchange .choice-trigger {
    grid-template-columns: 32px minmax(0, 1fr) 13px;
    gap: 9px;
    padding: 7px 10px;
    background: transparent;
  }
  .home-exchange .choice-trigger:hover,
  .home-exchange .choice-select.is-open .choice-trigger {
    background: rgba(255, 255, 255, .025);
  }
  .home-exchange .choice-trigger-copy strong { font-size: 13px; }
  .home-exchange .choice-trigger-copy small { font-size: 9px; }
  .home-exchange .choice-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

@media (min-width: 641px) {
  .home-exchange .working-field {
    container-type: inline-size;
  }
  .home-exchange .working-field.is-choice-open {
    z-index: 90;
  }
  .home-exchange .working-field.is-choice-open .choice-menu {
    top: 0;
    right: 0;
    width: 100cqw;
    max-height: min(500px, calc(100vh - 170px));
    padding: 0 10px 10px;
    border-color: rgba(66, 228, 177, .36);
    border-radius: 15px;
    background: #111b32;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58);
  }
  .home-exchange .working-field.is-choice-open .choice-menu-heading {
    display: none;
  }
  .home-exchange .working-field.is-choice-open .choice-search {
    min-height: 61px;
    padding: 0 7px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .home-exchange .working-field.is-choice-open .choice-search input {
    padding: 16px 0 !important;
    font-size: 15px !important;
  }
  .home-exchange .working-field.is-choice-open .choice-list {
    max-height: 370px;
    margin: 0 -2px -2px;
    padding: 7px 2px 2px;
  }
  .home-exchange .working-field.is-choice-open .choice-group-title {
    padding: 8px 8px 6px;
  }
}

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

@media (max-width: 640px) {
  .home-exchange .exchange-footer { display: flex; }
}

/* Compact chevron: inherits the selected currency or bank accent colour. */
.working-exchange .choice-chevron {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--exchange-accent, #81909f);
}
.working-exchange .choice-chevron::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 180ms ease;
}
.working-exchange .choice-select.is-open .choice-chevron::after {
  transform: rotate(225deg) translate(-1px, -1px);
}
.choice-option.is-filtered-out,
.choice-group-title.is-filtered-out {
  display: none !important;
}
.choice-empty[hidden] {
  display: none !important;
}

/* Home selectors open as a self-contained panel below the amount field.
   Keeping the trigger visible avoids the double contour left by the old
   overlay that started at the top edge of the field. */
@media (min-width: 641px) {
  .home-exchange .working-field.is-choice-open .choice-menu {
    top: 0;
    right: 0;
    width: 100cqw;
    max-height: min(440px, calc(100vh - 156px));
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(129, 151, 180, .28);
    border-radius: 14px;
    background: #101a2c;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .42), 0 2px 10px rgba(0, 0, 0, .2);
  }
  .home-exchange .working-field.is-choice-open .choice-search {
    min-height: 50px;
    margin: 10px 10px 0;
    padding: 0 12px;
    border: 1px solid color-mix(in srgb, var(--exchange-accent) 45%, rgba(255, 255, 255, .14));
    border-radius: 10px;
    background: #091120;
    box-shadow: none;
  }
  .home-exchange .working-field.is-choice-open .choice-search input {
    padding: 11px 0 !important;
    font-size: 14px !important;
  }
  .home-exchange .working-field.is-choice-open .choice-list {
    max-height: min(360px, calc(100vh - 240px));
    margin: 7px 5px 5px 10px;
    padding: 0 5px 6px 0;
    scrollbar-color: rgba(129, 151, 180, .6) transparent;
  }
  .home-exchange .working-field.is-choice-open .choice-group-title {
    padding: 7px 8px 5px;
    color: #718198;
    font-size: 9px;
  }
  .home-exchange .working-field.is-choice-open .choice-option {
    grid-template-columns: 34px minmax(0, 1fr) minmax(78px, auto);
    gap: 10px;
    min-height: 56px;
    padding: 9px;
    border-radius: 9px;
  }
  .home-exchange .working-field.is-choice-open .choice-option .choice-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .home-exchange .working-field.is-choice-open .choice-option-copy strong {
    font-size: 13px;
  }
  .home-exchange .working-field.is-choice-open .choice-option-copy small,
  .home-exchange .working-field.is-choice-open .choice-option-meta small {
    font-size: 9px;
  }
  .home-exchange .working-field.is-choice-open .choice-option-meta strong {
    font-size: 11px;
  }
  .home-exchange .working-field.is-choice-open {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }
  .home-exchange .working-field.is-choice-open > input,
  .home-exchange .working-field.is-choice-open > output,
  .home-exchange .working-field.is-choice-open .choice-trigger {
    visibility: hidden;
  }
  .home-exchange .working-field.is-choice-open .choice-select {
    border-left-color: transparent;
  }
}

/* Order payment and payment-reported screens */
.order-screen {
  min-height: 75vh;
  padding: 52px 0 110px;
  background:
    radial-gradient(circle at 10% 5%, rgba(94, 74, 180, .1), transparent 25%),
    radial-gradient(circle at 91% 8%, rgba(66, 228, 177, .075), transparent 25%);
}
.order-screen-shell { max-width: 1180px; }
.order-screen-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.order-screen-heading > div:first-child { display: grid; gap: 7px; }
.order-screen-heading p { margin: 0; color: var(--mint); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.order-screen-heading h1 { margin: 0; font-size: clamp(42px, 4.6vw, 64px); line-height: .98; letter-spacing: -.045em; }
.order-screen-timer { min-width: 190px; padding: 17px 20px; border: 1px solid rgba(255, 255, 255, .075); border-radius: 15px; background: #0d1728; text-align: center; }
.order-screen-timer span { display: block; margin-bottom: 4px; color: #778694; font-size: 10px; }
.order-screen-timer strong { color: var(--mint); font-size: 24px; letter-spacing: -.03em; }
.order-screen-timer.expired strong { color: #ff7d7d; }
.order-screen-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 24px; }
.order-payment-card,
.order-paid-card {
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 27, 45, .98), rgba(10, 18, 31, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}
.order-payment-card > header { padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .065); }
.order-payment-card > header h2,
.order-paid-card h2 { margin: 6px 0 10px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.04em; }
.order-payment-card > header p,
.order-paid-card > p { max-width: 640px; margin: 0; color: #93a1ad; font-size: 13px; line-height: 1.65; }
.order-payment-card > header p strong { color: #eaf2f0; font-weight: 600; }
.order-pay-step { display: grid; grid-template-columns: 34px minmax(0, 1fr) 44px; align-items: center; gap: 15px; padding: 24px 0 20px; }
.order-step-number { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--mint); background: rgba(66, 228, 177, .09); font-size: 10px; }
.order-pay-step > div { display: grid; gap: 4px; }
.order-pay-step small,
.order-payment-summary dt,
.order-paid-details dt { color: #71808e; font-size: 9px; }
.order-pay-step strong { font-size: 22px; }
.order-pay-step strong { overflow-wrap: anywhere; }
.order-pay-step .order-asset-icon { width: 42px; height: 42px; }
.order-wallet-block {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 222px 26px 22px;
  border: 1px solid rgba(66, 228, 177, .16);
  border-radius: 17px;
  background: radial-gradient(circle at 100% 50%, rgba(66, 228, 177, .09), transparent 38%), #08111f;
}
.order-wallet-copy { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px 12px; padding: 14px 15px; border-radius: 12px; background: rgba(255, 255, 255, .035); }
.order-wallet-copy small { grid-column: 1 / -1; color: #71808e; font-size: 9px; }
.order-wallet-copy strong { min-width: 0; overflow-wrap: anywhere; color: #eef5f3; font-size: 12px; font-weight: 550; }
.order-wallet-copy button { color: var(--mint); background: transparent; cursor: pointer; font-size: 10px; }
.order-qr { position: absolute; top: 20px; right: 20px; width: 180px; margin: 0; padding: 12px; border-radius: 14px; background: #fff; color: #071019; text-align: center; }
.order-qr img { width: 100%; display: block; }
.order-qr figcaption { margin-top: 7px; font-size: 9px; }
.order-warning { margin-top: 18px; padding: 15px 17px; border-left: 2px solid #f0b65e; border-radius: 0 10px 10px 0; background: rgba(240, 182, 94, .055); }
.order-warning strong { color: #f0c071; font-size: 11px; }
.order-warning p { margin: 4px 0 0; color: #8b98a3; font-size: 10px; line-height: 1.55; }
.order-payment-summary,
.order-paid-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 22px 0 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .06); border-radius: 14px; background: rgba(255, 255, 255, .06); }
.order-payment-summary > div,
.order-paid-details > div { min-width: 0; display: grid; gap: 6px; padding: 16px; background: #0c1626; }
.order-payment-summary dd,
.order-paid-details dd { margin: 0; overflow-wrap: anywhere; color: #eaf2f0; font-size: 12px; font-weight: 550; }
.order-payment-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 20px; color: #71808e; font-size: 10px; }
.order-payment-meta strong { color: var(--mint); font-weight: 550; }
.order-payment-actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .065); }
.order-payment-actions form { margin: 0; }
.order-payment-actions .button { min-width: 190px; min-height: 48px; }
.order-payment-actions .button-muted { color: #edf5f3; border-color: #31425b; background: #1a2a40; }
.order-payment-actions .button-muted:hover { border-color: #51657f; background: #243750; }
.order-paid-card { padding: 38px; }
.order-state-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; color: #06120e; background: var(--mint); font-size: 28px; font-weight: 700; box-shadow: 0 0 0 8px rgba(66, 228, 177, .07); }
.order-cancelled-card .order-state-icon { color: white; background: #b94a58; box-shadow: 0 0 0 8px rgba(185, 74, 88, .08); }
.order-cancelled-card .button { margin-top: 24px; }
.order-paid-route { display: grid; grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr); align-items: center; gap: 16px; margin-top: 30px; padding: 22px; border-radius: 16px; background: #08111f; }
.order-paid-route > article { min-width: 0; display: flex; align-items: center; gap: 14px; }
.order-paid-route > span { color: var(--mint); text-align: center; }
.order-paid-route article > div { min-width: 0; display: grid; gap: 3px; }
.order-paid-route small { color: #71808e; font-size: 9px; }
.order-paid-route strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; }
.order-paid-route article > div > span { color: #82909d; font-size: 10px; }
.order-paid-notice { display: flex; align-items: flex-start; gap: 13px; margin-top: 22px; padding: 17px; border-radius: 13px; background: rgba(66, 228, 177, .06); }
.order-paid-notice > span { width: 9px; height: 9px; flex: 0 0 9px; margin-top: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(66, 228, 177, .08); }
.order-paid-notice div { display: grid; gap: 4px; }
.order-paid-notice strong { font-size: 12px; }
.order-paid-notice p { margin: 0; color: #81909d; font-size: 10px; }
.order-current-status p { margin: 8px 0 0; color: #b9c6cf; font-size: 11px; line-height: 1.5; white-space: pre-wrap; }
.order-refresh-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; padding: 14px 17px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 13px; color: #778694; background: #0a1321; font-size: 10px; }
.order-refresh-panel button { color: var(--mint); background: transparent; cursor: pointer; font-size: 10px; }
.order-screen-support { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; }
.order-screen-support a { color: var(--mint); font-size: 11px; }
.order-sidebar { position: sticky; top: 24px; }

@media (max-width: 900px) {
  .order-screen { padding-top: 38px; }
  .order-screen-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .order-screen { padding: 30px 0 76px; }
  .order-screen-heading { align-items: flex-start; flex-direction: column; }
  .order-screen-timer { width: 100%; }
  .order-payment-card,
  .order-paid-card { padding: 21px 17px; border-radius: 17px; }
  .order-wallet-block { padding: 18px; }
  .order-qr { position: static; width: min(220px, 100%); margin: 6px auto 0; }
  .order-payment-summary,
  .order-paid-details { grid-template-columns: 1fr; }
  .order-payment-actions { flex-direction: column-reverse; }
  .order-payment-actions form,
  .order-payment-actions .button { width: 100%; }
  .order-paid-route { grid-template-columns: 1fr; }
  .order-paid-route > span { transform: rotate(90deg); }
  .order-refresh-panel,
  .order-screen-support { align-items: flex-start; flex-direction: column; }
  .order-sidebar { grid-template-columns: 1fr; }
}

/* Currency and payout brand themes */
.exchange-column[data-brand-column] {
  --exchange-accent: #42e4b1;
}
.exchange-column[data-tone="usdt"] { --exchange-accent: #26a17b; }
.exchange-column[data-tone="dot"] { --exchange-accent: #e6007a; }
.exchange-column[data-tone="usdc"] { --exchange-accent: #2775ca; }
.exchange-column[data-tone="near"] { --exchange-accent: #d8e2e8; }
.exchange-column[data-tone="dash"] { --exchange-accent: #008de4; }
.exchange-column[data-tone="eth"] { --exchange-accent: #9ca9c8; }
.exchange-column[data-tone="zec"] { --exchange-accent: #f4b728; }
.exchange-column[data-tone="tusd"] { --exchange-accent: #536dfe; }
.exchange-column[data-tone="sol"] { --exchange-accent: #14f195; }
.exchange-column[data-tone="doge"] { --exchange-accent: #c2a633; }
.exchange-column[data-tone="xlm"] { --exchange-accent: #b8c6d1; }
.exchange-column[data-tone="trx"] { --exchange-accent: #ef0027; }
.exchange-column[data-tone="ltc"] { --exchange-accent: #5f8fd3; }
.exchange-column[data-tone="btc"] { --exchange-accent: #f7931a; }
.exchange-column[data-tone="xrp"] { --exchange-accent: #00aae4; }

.exchange-column[data-tone="tbank"] { --exchange-accent: #ffdd2d; }
.exchange-column[data-tone="sber"] { --exchange-accent: #21a038; }
.exchange-column[data-tone="alfa"] { --exchange-accent: #ef3124; }
.exchange-column[data-tone="vtb"] { --exchange-accent: #009fdf; }
.exchange-column[data-tone="gazprombank"] { --exchange-accent: #4b8cd8; }
.exchange-column[data-tone="ozon"] { --exchange-accent: #005bff; }
.exchange-column[data-tone="raiffeisen"] { --exchange-accent: #ffe600; }
.exchange-column[data-tone="mts"] { --exchange-accent: #ff0032; }
.exchange-column[data-tone="mir"] { --exchange-accent: #37a72e; }
.exchange-column[data-tone="sbp"] { --exchange-accent: #00b4e3; }
.exchange-column[data-tone="yoomoney"] { --exchange-accent: #8b3ffd; }

.exchange-column[data-brand-column] .exchange-label,
.exchange-column[data-brand-column] .exchange-label > span,
.exchange-column[data-brand-column] .amount-meta span:last-child {
  color: var(--exchange-accent);
}
.exchange-column[data-brand-column] .working-field {
  border-color: color-mix(in srgb, var(--exchange-accent) 72%, #253243);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--exchange-accent) 4%, #060a12), #060a12 46%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--exchange-accent) 5%, transparent);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.exchange-column[data-brand-column] .working-field:focus-within,
.exchange-column[data-brand-column] .working-field.is-choice-open {
  border-color: var(--exchange-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--exchange-accent) 12%, transparent);
}
.exchange-column[data-brand-column] .working-field > input,
.exchange-column[data-brand-column] .working-field > output {
  color: var(--exchange-accent);
}
.exchange-column[data-brand-column] .choice-trigger {
  background: color-mix(in srgb, var(--exchange-accent) 5%, #101a2b);
}
.exchange-column[data-brand-column] .choice-trigger:hover,
.exchange-column[data-brand-column] .choice-select.is-open .choice-trigger {
  background: color-mix(in srgb, var(--exchange-accent) 10%, #101a2b);
}
.exchange-column[data-brand-column] .choice-trigger:focus-visible {
  outline-color: var(--exchange-accent);
}
.exchange-column[data-brand-column] .choice-chevron,
.exchange-column[data-brand-column] .choice-menu-heading,
.exchange-column[data-brand-column] .choice-search {
  color: var(--exchange-accent);
}
.exchange-column[data-brand-column] .choice-search:focus-within {
  border-color: var(--exchange-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--exchange-accent) 10%, transparent);
}

/* The real logo is the visual shape: no extra tile behind crypto artwork. */
.choice-icon.logo-icon.coin-icon {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.choice-icon.logo-icon.coin-icon > img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: none;
}
.choice-icon.logo-icon.coin-icon > span {
  color: var(--option-accent, var(--exchange-accent, #42e4b1));
}
.choice-icon.logo-icon.coin-icon:not(.is-fallback) > span {
  opacity: 0;
}
.choice-icon.logo-icon.coin-icon.is-fallback {
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--exchange-accent, #42e4b1) 18%, #101a2b);
}
.choice-icon.logo-icon.coin-icon.is-fallback > span {
  opacity: 1;
}

/* Bank marks use prepared transparent assets; no runtime blending or neutral plate. */
.choice-icon.logo-icon.bank-icon {
  border: 0;
  background: transparent;
}
.choice-icon.logo-icon.bank-icon > span {
  /* Every configured payout method has real artwork. Do not let the
     text fallback show through transparent areas of the logo. */
  opacity: 0;
  visibility: hidden;
}
.choice-icon.logo-icon.bank-icon > img {
  padding: 0;
  object-fit: contain;
}
.choice-icon.logo-icon.bank-icon[data-tone="mir"] > img {
  padding: 0;
}

.choice-option {
  --option-accent: #42e4b1;
}
.choice-option[data-tone="usdt"] { --option-accent: #26a17b; }
.choice-option[data-tone="dot"] { --option-accent: #e6007a; }
.choice-option[data-tone="usdc"] { --option-accent: #2775ca; }
.choice-option[data-tone="near"] { --option-accent: #d8e2e8; }
.choice-option[data-tone="dash"] { --option-accent: #008de4; }
.choice-option[data-tone="eth"] { --option-accent: #9ca9c8; }
.choice-option[data-tone="zec"] { --option-accent: #f4b728; }
.choice-option[data-tone="tusd"] { --option-accent: #536dfe; }
.choice-option[data-tone="sol"] { --option-accent: #14f195; }
.choice-option[data-tone="doge"] { --option-accent: #c2a633; }
.choice-option[data-tone="xlm"] { --option-accent: #b8c6d1; }
.choice-option[data-tone="trx"] { --option-accent: #ef0027; }
.choice-option[data-tone="ltc"] { --option-accent: #5f8fd3; }
.choice-option[data-tone="btc"] { --option-accent: #f7931a; }
.choice-option[data-tone="xrp"] { --option-accent: #00aae4; }
.choice-option[data-tone="tbank"] { --option-accent: #ffdd2d; }
.choice-option[data-tone="sber"] { --option-accent: #21a038; }
.choice-option[data-tone="alfa"] { --option-accent: #ef3124; }
.choice-option[data-tone="vtb"] { --option-accent: #009fdf; }
.choice-option[data-tone="gazprombank"] { --option-accent: #4b8cd8; }
.choice-option[data-tone="ozon"] { --option-accent: #005bff; }
.choice-option[data-tone="raiffeisen"] { --option-accent: #ffe600; }
.choice-option[data-tone="mts"] { --option-accent: #ff0032; }
.choice-option[data-tone="mir"] { --option-accent: #37a72e; }
.choice-option[data-tone="sbp"] { --option-accent: #00b4e3; }
.choice-option[data-tone="yoomoney"] { --option-accent: #8b3ffd; }

.choice-option .choice-option-copy strong,
.choice-option .choice-option-meta strong {
  color: var(--option-accent);
}
.choice-option:hover,
.choice-option:focus-visible,
.choice-option.is-selected {
  background: color-mix(in srgb, var(--option-accent) 10%, transparent);
}
.choice-option:focus-visible {
  outline-color: color-mix(in srgb, var(--option-accent) 58%, transparent);
}
.choice-option .choice-icon.bank-icon {
  border: 0;
  background: transparent;
}

.checkout-page {
  position: relative;
  z-index: 1;
  padding: 58px 0 110px;
}
.checkout-shell { max-width: 1180px; }
.checkout-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 30px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  color: #bac7cf;
  background: rgba(255, 255, 255, .025);
  font-size: 15px;
  font-weight: 500;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}
.checkout-back:hover {
  border-color: rgba(66, 228, 177, .28);
  color: var(--mint);
  background: rgba(66, 228, 177, .055);
}
.checkout-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.checkout-heading > p,
.checkout-side-kicker {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-heading h1 {
  margin-bottom: 14px;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
}
.checkout-heading > span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.checkout-heading-compact {
  max-width: 680px;
  margin-bottom: 28px;
}
.checkout-heading-compact > p { margin-bottom: 8px; }
.checkout-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0, rgba(66, 228, 177, .08), transparent 34%),
    #0c1626;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}
.checkout-route-side {
  min-width: 0;
  display: grid;
  gap: 10px;
}
.checkout-route-side > span {
  color: #8392a0;
  font-size: 11px;
}
.checkout-route-side > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.checkout-route-side > div > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.checkout-route-side strong {
  overflow: hidden;
  color: #f1f7f5;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-route-side small {
  overflow: hidden;
  color: #7f8d9a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-route-side .choice-icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-radius: 13px;
}
.checkout-route-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(66, 228, 177, .075);
  font-size: 22px;
}
.checkout-route-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .065);
}
.checkout-route-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #71808f;
  font-size: 10px;
}
.checkout-route-meta strong { color: #cbd5d9; font-weight: 500; }
.checkout-route-meta span:last-child { justify-content: flex-end; color: #87a099; }
.checkout-route-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(66, 228, 177, .075);
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .75fr);
  align-items: start;
  gap: 24px;
  margin-top: 24px;
}
.checkout-form-card,
.checkout-auth-card,
.checkout-reviews-card {
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 20px;
  background: #0c1626;
}
.checkout-form-card { padding: clamp(24px, 4vw, 42px); }
.checkout-form-card > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.checkout-form-card > header > div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--mint);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-form-card h2,
.checkout-auth-card h2,
.checkout-reviews-card h2 {
  margin: 0;
  color: #f0f6f4;
  font-size: 28px;
  letter-spacing: -.025em;
}
.checkout-form-card > header > p {
  margin: 0 0 4px;
  color: #758493;
  font-size: 11px;
}
.checkout-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .065);
}
.checkout-fieldset legend {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 18px;
  color: #e6eeec;
  font-size: 16px;
  font-weight: 600;
}
.checkout-fieldset legend span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(66, 228, 177, .09);
  font-size: 10px;
}
.checkout-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  color: #9caab5;
  font-size: 12px;
}
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-fieldset-stack {
  grid-template-columns: minmax(0, 520px);
  justify-content: start;
  gap: 20px;
}
.checkout-fieldset-stack .checkout-field { grid-column: 1; }
.checkout-field > span { min-height: 18px; }
.checkout-field b,
.checkout-consent b,
.checkout-auth-card label b { color: #ff8181; font-weight: 500; }
.checkout-field small { color: #657584; font-size: 9px; }
.checkout-field input,
.checkout-auth-card input {
  min-height: 50px;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 11px;
  outline: 0;
  background: #08111f;
}
.checkout-field input:focus,
.checkout-auth-card input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(66, 228, 177, .075);
}
.checkout-form-card .errorlist,
.checkout-auth-card .errorlist {
  margin: 0;
  padding: 0;
  color: #ff8585;
  font-size: 10px;
  list-style: none;
}
.checkout-captcha-field {
  display: grid;
  gap: 9px;
}
.checkout-captcha-label {
  color: #9caab5;
  font-size: 12px;
}
.checkout-captcha-label b { color: #ff8181; font-weight: 500; }
.checkout-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-captcha strong {
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(66, 228, 177, .19);
  border-radius: 12px;
  color: #f1f7f5;
  background:
    linear-gradient(135deg, rgba(66, 228, 177, .16), transparent 62%),
    #101c2e;
  font-size: 23px;
  text-shadow: 1px 1px 0 rgba(66, 228, 177, .35);
}
.checkout-captcha strong:nth-of-type(2) {
  border-color: rgba(138, 115, 255, .23);
  background:
    linear-gradient(135deg, rgba(138, 115, 255, .17), transparent 62%),
    #10182c;
}
.checkout-captcha i {
  color: #7e8d99;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.checkout-captcha input {
  width: 64px;
  height: 52px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #f1f7f5;
  outline: 0;
  background: #08111f;
  font-size: 20px;
  text-align: center;
}
.checkout-captcha input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(66, 228, 177, .075);
}
.checkout-captcha button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(66, 228, 177, .07);
  cursor: pointer;
  font-size: 23px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.checkout-captcha button:hover {
  background: rgba(66, 228, 177, .14);
  transform: rotate(18deg);
}
.checkout-captcha button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}
.checkout-captcha button.is-loading {
  opacity: .55;
  pointer-events: none;
  transform: rotate(180deg);
}
.checkout-data-consent {
  margin-top: 4px;
  color: #aab7bf;
  font-size: 12px;
}
.form-alert {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  color: #ffc4c4;
  background: rgba(255, 96, 96, .08);
  font-size: 12px;
}
.checkout-recap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 4px 0 24px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}
.checkout-recap > div {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  background: rgba(255, 255, 255, .025);
}
.checkout-recap span { color: #71808e; font-size: 9px; }
.checkout-recap strong {
  overflow: hidden;
  color: #dae4e1;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-consent {
  margin-bottom: 22px;
  color: #96a4af;
  font-size: 12px;
}
.checkout-consent a { color: var(--mint); }
.checkout-submit {
  width: 100%;
  min-height: 56px;
  font-size: 15px;
}
.checkout-security {
  max-width: 570px;
  margin: 14px auto 0;
  color: #637281;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}
.checkout-instructions {
  margin-top: 34px;
  padding: 28px 30px;
  border: 1px solid rgba(66, 228, 177, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 228, 177, .07), transparent 34%),
    rgba(4, 12, 22, .48);
}
.checkout-instructions > span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-instructions h3 {
  margin: 8px 0 14px;
  color: #edf5f3;
  font-size: 20px;
  letter-spacing: -.02em;
}
.checkout-instructions p,
.checkout-instructions li {
  color: #92a1ac;
  font-size: 12px;
  line-height: 1.65;
}
.checkout-instructions p { margin: 0 0 10px; }
.checkout-instructions ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}
.checkout-instructions li::marker {
  color: var(--mint);
  font-weight: 700;
}
.checkout-sidebar { display: grid; gap: 18px; }
.checkout-auth-card,
.checkout-reviews-card { padding: 24px; }
.checkout-auth-card > p {
  margin: 10px 0 20px;
  color: #7e8d9a;
  font-size: 11px;
  line-height: 1.55;
}
.checkout-auth-card form {
  display: grid;
  gap: 14px;
}
.checkout-auth-card label {
  display: grid;
  gap: 7px;
  color: #98a6b1;
  font-size: 11px;
}
.checkout-auth-card form .button { width: 100%; margin-top: 2px; }
.checkout-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  color: var(--mint);
  font-size: 10px;
}
.checkout-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.checkout-user > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--mint-ink);
  background: var(--mint);
  font-weight: 700;
}
.checkout-user > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.checkout-user small {
  overflow: hidden;
  color: #71808e;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-auth-card.authenticated .button { width: 100%; }
.checkout-reviews-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.checkout-reviews-card > header a {
  padding-top: 3px;
  color: var(--mint);
  font-size: 10px;
}
.checkout-review-list { display: grid; gap: 10px; }
.checkout-review-list article {
  padding: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.checkout-review-list article > header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.checkout-review-list article > header strong {
  color: #e1e9e7;
  font-size: 11px;
}
.checkout-review-list time { color: #687785; font-size: 8px; }
.checkout-review-list article > b {
  display: block;
  margin-top: 6px;
  color: #ffb950;
  font-size: 13px;
  letter-spacing: .08em;
}
.checkout-review-list article > p {
  margin: 7px 0 0;
  color: #95a3ad;
  font-size: 10px;
  line-height: 1.55;
}
.checkout-empty-reviews { color: #71808e; font-size: 11px; }
.confirmation-heading { margin-bottom: 30px; }
.confirmation-layout { margin-top: 0; }
.confirmation-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 20px;
  background: #0c1626;
}
.confirmation-card > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.confirmation-card > header span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.confirmation-card > header h2 {
  margin: 0;
  color: #f0f6f4;
  font-size: 28px;
  letter-spacing: -.025em;
}
.confirmation-card > header small {
  max-width: 220px;
  color: #6e7d8b;
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
}
.confirmation-exchange {
  border-top: 1px solid rgba(255, 255, 255, .065);
  border-bottom: 1px solid rgba(255, 255, 255, .065);
}
.confirmation-exchange article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 0;
}
.confirmation-exchange article + article { border-top: 1px solid rgba(255, 255, 255, .065); }
.confirmation-exchange article > div { min-width: 0; display: grid; gap: 6px; }
.confirmation-label {
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
}
.confirmation-exchange strong {
  color: #f0f6f4;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -.035em;
}
.confirmation-exchange small {
  overflow-wrap: anywhere;
  color: #7e8d99;
  font-size: 10px;
}
.confirmation-exchange .choice-icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 15px;
}
.confirmation-personal { padding: 30px 0; }
.confirmation-personal > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.confirmation-personal > header span { color: #e7efed; font-size: 17px; font-weight: 600; }
.confirmation-personal > header small { color: #6e7d8b; font-size: 9px; }
.confirmation-personal dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}
.confirmation-personal dl > div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .025);
}
.confirmation-personal dt { color: #6e7d8b; font-size: 9px; }
.confirmation-personal dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: #dbe5e2;
  font-size: 12px;
}
.confirmation-submit {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .065);
}
.confirmation-consent {
  margin-bottom: 20px;
  color: #a0adb6;
  font-size: 12px;
}
.confirmation-consent a { color: var(--mint); }
.confirmation-consent b { color: #ff8181; font-weight: 500; }
.confirmation-button {
  width: min(290px, 100%);
  min-height: 54px;
}
.confirmation-button:disabled {
  color: #64727e;
  background: #1a2431;
  cursor: not-allowed;
  transform: none;
}

@media(max-width:900px) {
  .home-exchange { max-width: 680px; margin-top: 30px; }
  .checkout-page { padding-top: 42px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { grid-template-columns: 1fr 1fr; }
  .checkout-route { grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr); }
  .confirmation-layout .checkout-sidebar { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .home-exchange { margin-top: 24px; padding: 16px; }
  .checkout-page { padding: 30px 0 76px; }
  .checkout-back { min-height: 40px; margin-bottom: 24px; padding-inline: 13px; font-size: 13px; }
  .checkout-heading h1 { font-size: 43px; }
  .checkout-route {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .checkout-route-arrow {
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
  }
  .checkout-route-meta {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .checkout-route-meta span:last-child { justify-content: flex-start; }
  .checkout-form-card { padding: 22px 18px; }
  .checkout-form-card > header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .checkout-form-card h2 { font-size: 25px; }
  .checkout-fieldset { grid-template-columns: 1fr; }
  .checkout-field-wide { grid-column: auto; }
  .checkout-recap { grid-template-columns: 1fr; }
  .checkout-captcha { gap: 7px; }
  .checkout-captcha strong { width: 44px; height: 48px; }
  .checkout-captcha input { width: 56px; height: 48px; }
  .checkout-instructions { margin-top: 28px; padding: 22px 18px; }
  .checkout-sidebar { grid-template-columns: 1fr; }
  .confirmation-card { padding: 22px 18px; }
  .confirmation-card > header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .confirmation-card > header small { text-align: left; }
  .confirmation-personal > header { align-items: flex-start; flex-direction: column; gap: 6px; }
  .confirmation-personal dl { grid-template-columns: 1fr; }
  .confirmation-layout .checkout-sidebar { grid-template-columns: 1fr; }
}

/* Premium benefits section */
.benefits-section {
  position: relative;
  padding: 104px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(66, 228, 177, .12), transparent 38%),
    #070b13;
}

.benefits-section::before,
.benefits-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}
.benefits-section::before {
  top: 17%;
  left: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(66, 228, 177, .08);
  box-shadow: 0 0 90px rgba(66, 228, 177, .04);
}
.benefits-section::after {
  right: -80px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  background: rgba(46, 74, 113, .08);
}
.benefits-shell {
  position: relative;
  z-index: 1;
}
.benefits-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.benefits-heading > p {
  margin: 0 0 12px;
  color: #42e4b1;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.benefits-heading h2 {
  margin: 0;
  color: #edf5f3;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.benefits-heading > span {
  max-width: 620px;
  margin-top: 18px;
  color: #8e9dac;
  font-size: 15px;
  line-height: 1.65;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(18, 31, 51, .98), rgba(9, 16, 28, .98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.benefit-card::before {
  position: absolute;
  right: -95px;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 228, 177, .11), transparent 68%);
  content: "";
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 228, 177, .28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}
.benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 43px;
  border: 1px solid rgba(66, 228, 177, .2);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(66, 228, 177, .12), rgba(66, 228, 177, .035));
  color: #55e9ba;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 18px 50px rgba(14, 154, 116, .08);
}
.benefit-icon::after {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(66, 228, 177, .08);
  border-radius: 15px;
  content: "";
}
.benefit-icon svg {
  position: relative;
  z-index: 1;
  width: 51px;
  height: 51px;
}
.benefit-card > span {
  color: #42e4b1;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.benefit-card h3 {
  margin: 10px 0 14px;
  color: #edf5f3;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.benefit-card p {
  position: relative;
  max-width: 340px;
  margin: 0;
  color: #95a3b0;
  font-size: 14px;
  line-height: 1.72;
}
@media (max-width: 900px) {
  .benefits-section { padding: 86px 0 92px; }
  .benefits-heading { margin-bottom: 38px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 30px; }
  .benefit-icon { width: 78px; height: 78px; margin-bottom: 30px; }
  .benefit-icon svg { width: 45px; height: 45px; }
  .benefit-card p { max-width: 620px; }
}
@media (max-width: 560px) {
  .benefits-section { padding: 70px 0 76px; }
  .benefits-heading { margin-bottom: 30px; }
  .benefits-heading h2 { font-size: 38px; }
  .benefits-heading > span { margin-top: 14px; font-size: 14px; }
  .benefit-card { padding: 25px; border-radius: 18px; }
  .benefit-icon { width: 70px; height: 70px; margin-bottom: 26px; border-radius: 19px; }
  .benefit-icon svg { width: 40px; height: 40px; }
}

/* Open, borderless benefits composition */
.benefits-section {
  padding: 100px 0 112px;
  border-top: 1px solid rgba(66, 228, 177, .08);
  border-bottom: 1px solid rgba(66, 228, 177, .06);
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 228, 177, .075), transparent 32%),
    #060a11;
}
.benefits-heading { margin-bottom: 62px; }
.benefits-heading h2 {
  font-size: clamp(40px, 4.2vw, 58px);
  letter-spacing: -.04em;
}
.benefits-grid { gap: 0; }
.benefit-card {
  min-height: 0;
  padding: 0 54px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: none;
}
.benefit-card::before { display: none; }
.benefit-card:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .11), transparent);
  content: "";
}
.benefit-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.benefit-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #42e4b1;
  box-shadow: none;
  filter: drop-shadow(0 10px 24px rgba(66, 228, 177, .12));
}
.benefit-icon::after { display: none; }
.benefit-icon svg { width: 92px; height: 92px; }
.benefit-icon .icon-accent { stroke-width: 2.7; }
.benefit-icon .icon-detail { opacity: .3; }
.benefit-card h3 {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.benefit-card p {
  max-width: 390px;
  margin: 0 auto;
  color: #b3c0c8;
  font-size: 14px;
  line-height: 1.72;
}
@media (max-width: 900px) {
  .benefits-grid { gap: 42px; }
  .benefit-card { padding: 0 24px 42px; }
  .benefit-card:not(:last-child)::after {
    top: auto;
    right: 15%;
    bottom: 0;
    left: 15%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .11), transparent);
  }
}
@media (max-width: 560px) {
  .benefits-section { padding: 72px 0 78px; }
  .benefits-heading { margin-bottom: 46px; }
  .benefits-heading h2 { font-size: 39px; }
  .benefit-icon { width: 96px; height: 96px; margin-bottom: 22px; }
  .benefit-icon svg { width: 84px; height: 84px; }
  .benefit-card { padding-inline: 6px; }
  .benefit-card h3 { font-size: 19px; }
}

/* Recent exchanges */
.exchanges-section {
  position: relative;
  padding: 102px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(66, 228, 177, .09), transparent 32%),
    linear-gradient(180deg, #050911, #070c15);
}
.exchanges-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.exchanges-heading p {
  margin: 0 0 10px;
  color: #42e4b1;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.exchanges-heading h2 {
  margin: 0;
  color: #edf5f3;
  font-size: clamp(38px, 4.5vw, 61px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.exchanges-heading > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 7px;
  color: #81909e;
  font-size: 12px;
}
.exchanges-heading > span i,
.exchange-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42e4b1;
  box-shadow: 0 0 12px rgba(66, 228, 177, .7);
}
.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.exchange-card {
  --feed-accent: #42e4b1;
  --payout-accent: #42e4b1;
  position: relative;
  min-width: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--feed-accent) 7%, transparent), transparent 42%),
    linear-gradient(145deg, rgba(15, 27, 45, .97), rgba(8, 15, 26, .99));
  box-shadow: 0 22px 64px rgba(0, 0, 0, .16);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.exchange-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--feed-accent), transparent);
  content: "";
  opacity: .7;
}
.exchange-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--feed-accent) 22%, rgba(255, 255, 255, .075));
  box-shadow: 0 28px 76px rgba(0, 0, 0, .24);
}
.exchange-card[data-tone="usdt"] { --feed-accent: #26a17b; }
.exchange-card[data-tone="dot"] { --feed-accent: #e6007a; }
.exchange-card[data-tone="usdc"] { --feed-accent: #2775ca; }
.exchange-card[data-tone="near"] { --feed-accent: #d8e2e8; }
.exchange-card[data-tone="dash"] { --feed-accent: #008de4; }
.exchange-card[data-tone="eth"] { --feed-accent: #9ca9c8; }
.exchange-card[data-tone="zec"] { --feed-accent: #f4b728; }
.exchange-card[data-tone="tusd"] { --feed-accent: #536dfe; }
.exchange-card[data-tone="sol"] { --feed-accent: #14f195; }
.exchange-card[data-tone="doge"] { --feed-accent: #c2a633; }
.exchange-card[data-tone="xlm"] { --feed-accent: #b8c6d1; }
.exchange-card[data-tone="trx"] { --feed-accent: #ef0027; }
.exchange-card[data-tone="ltc"] { --feed-accent: #5f8fd3; }
.exchange-card[data-tone="btc"] { --feed-accent: #f7931a; }
.exchange-card[data-tone="xrp"] { --feed-accent: #00aae4; }
.exchange-card[data-payout-tone="tbank"] { --payout-accent: #ffdd2d; }
.exchange-card[data-payout-tone="sber"] { --payout-accent: #21a038; }
.exchange-card[data-payout-tone="alfa"] { --payout-accent: #ef3124; }
.exchange-card[data-payout-tone="vtb"] { --payout-accent: #009fdf; }
.exchange-card[data-payout-tone="gazprombank"] { --payout-accent: #4b8cd8; }
.exchange-card[data-payout-tone="ozon"] { --payout-accent: #005bff; }
.exchange-card[data-payout-tone="raiffeisen"] { --payout-accent: #ffe600; }
.exchange-card[data-payout-tone="mts"] { --payout-accent: #ff0032; }
.exchange-card[data-payout-tone="mir"] { --payout-accent: #37a72e; }
.exchange-card[data-payout-tone="sbp"] { --payout-accent: #00b4e3; }
.exchange-card[data-payout-tone="yoomoney"] { --payout-accent: #8b3ffd; }
.exchange-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.exchange-card-head time {
  color: #81909e;
  font-size: 10px;
}
.exchange-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(66, 228, 177, .1);
  border-radius: 999px;
  color: #65e5bc;
  background: rgba(66, 228, 177, .045);
  font-size: 9px;
}
.exchange-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.exchange-side {
  min-width: 0;
}
.exchange-caption {
  display: block;
  margin-bottom: 10px;
  color: #617181;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.exchange-asset {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}
.exchange-asset > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}
.exchange-asset > span.bank {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.exchange-asset img { width: 100%; height: 100%; object-fit: contain; }
.exchange-asset div {
  display: grid;
  min-width: 0;
  gap: 4px;
}
.exchange-asset strong {
  overflow: hidden;
  color: var(--feed-accent);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.exchange-side-payout .exchange-asset strong { color: var(--payout-accent); }
.exchange-asset small {
  overflow: hidden;
  color: #71808e;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.exchange-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(66, 228, 177, .09);
  border-radius: 50%;
  color: #42e4b1;
  background: rgba(66, 228, 177, .045);
}
.exchange-arrow b { font-size: 14px; font-weight: 500; }
.exchanges-note {
  margin: 18px 0 0;
  color: #596776;
  font-size: 10px;
  text-align: right;
}
@media (max-width: 1080px) {
  .exchanges-grid { grid-template-columns: 1fr; }
  .exchange-card { padding: 24px; }
  .exchange-route { grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .exchanges-section { padding: 72px 0 78px; }
  .exchanges-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .exchanges-heading h2 { font-size: 39px; }
  .exchanges-heading > span { padding: 0; }
  .exchange-card { padding: 20px; }
  .exchange-route { grid-template-columns: minmax(0, 1fr) 27px minmax(0, 1fr); gap: 6px; }
  .exchange-asset { gap: 8px; }
  .exchange-asset > span { flex-basis: 34px; width: 34px; height: 34px; }
  .exchange-asset strong { font-size: 12px; }
  .exchange-arrow { width: 27px; height: 27px; }
  .exchange-card-head { margin-bottom: 20px; }
}

/* Reviews preview and moderated review feed */
.reviews-preview {
  padding: 108px 0 116px;
  background:
    radial-gradient(circle at 8% 100%, rgba(67, 76, 172, .12), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(66, 228, 177, .06), transparent 25%),
    #09111e;
}
.reviews-preview-heading {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.reviews-preview-heading > p,
.reviews-page-hero > p,
.review-submit-section > header > p {
  margin: 0 0 11px;
  color: #42e4b1;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.reviews-preview-heading h2 {
  margin: 0;
  color: #edf5f3;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.reviews-preview-heading > span,
.reviews-page-hero > div > span,
.review-submit-section > header > span {
  max-width: 640px;
  margin-top: 16px;
  color: #8796a4;
  font-size: 14px;
  line-height: 1.65;
}
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-review-card {
  --review-accent: #42e4b1;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--review-accent) 10%, transparent), transparent 36%),
    linear-gradient(145deg, rgba(18, 31, 51, .98), rgba(9, 17, 29, .98));
  box-shadow: 0 22px 56px rgba(0, 0, 0, .16);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.home-review-card:nth-child(2) { --review-accent: #8d79ff; }
.home-review-card:nth-child(3) { --review-accent: #65b8ff; }
.home-review-card:hover {
  border-color: color-mix(in srgb, var(--review-accent) 30%, transparent);
  box-shadow: 0 26px 68px rgba(0, 0, 0, .24);
  transform: translateY(-3px);
}
.home-review-card-top,
.review-feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.review-quote {
  height: 34px;
  color: var(--review-accent, #42e4b1);
  font-family: Georgia, serif;
  font-size: 53px;
  line-height: .92;
  opacity: .72;
}
.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--review-accent, #42e4b1) 23%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--review-accent, #42e4b1) 11%, #0b1523);
  color: var(--review-accent, #42e4b1);
  font-size: 14px;
  font-weight: 750;
}
.review-person {
  display: grid;
  min-width: 0;
  gap: 4px;
  margin-right: auto;
}
.review-person strong { color: #edf5f3; font-size: 13px; }
.review-person small,
.review-person time { color: #72808e; font-size: 9px; }
.review-stars {
  display: flex;
  align-items: center;
  color: #f0bb63;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
}
.home-review-card blockquote,
.review-feed-item blockquote {
  padding: 0;
  border: 0;
  color: #c4ced6;
  font-style: normal;
  overflow-wrap: anywhere;
}
.home-review-card blockquote {
  margin: 28px 0 auto;
  font-size: 15px;
  line-height: 1.72;
}
.home-review-card > footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.review-score {
  margin-left: auto;
  color: #a9b6c1;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .03em;
}
.reviews-preview-action { display: flex; justify-content: center; margin-top: 38px; }
.reviews-preview-action .button { min-width: 230px; }

.reviews-page {
  min-height: 80vh;
  padding: 82px 0 120px;
  background:
    radial-gradient(circle at 88% 5%, rgba(66, 228, 177, .075), transparent 25%),
    radial-gradient(circle at 6% 40%, rgba(86, 75, 185, .09), transparent 25%),
    #070b13;
}
.reviews-page-shell { max-width: 1180px; }
.reviews-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}
.reviews-page-hero > div { max-width: 790px; }
.reviews-page-hero h1 {
  margin: 0;
  color: #edf5f3;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.reviews-page-hero > div > span { display: block; }
.reviews-page-hero aside {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 31, 51, .9), rgba(9, 18, 30, .88));
}
.reviews-page-hero aside strong {
  color: #42e4b1;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.045em;
}
.reviews-page-hero aside span { margin-top: 7px; color: #dce8e5; font-size: 13px; font-weight: 650; }
.reviews-page-hero aside small { margin-top: 12px; color: #71808d; font-size: 9px; }
.reviews-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-feed-item {
  --review-accent: #42e4b1;
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 27px 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--review-accent) 8%, transparent), transparent 36%),
    rgba(15, 26, 43, .82);
}
.review-feed-item:nth-child(4n + 2) { --review-accent: #8d79ff; }
.review-feed-item:nth-child(4n + 3) { --review-accent: #65b8ff; }
.review-feed-item:nth-child(4n + 4) { --review-accent: #e8a858; }
.review-feed-item:nth-child(3n) {
  transform: translateY(12px);
}
.review-feed-item::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--review-accent), transparent);
  content: "";
  opacity: .6;
}
.review-feed-item blockquote {
  margin: 25px 0 auto;
  font-size: 15px;
  line-height: 1.72;
}
.review-feed-item > footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 34px 0 0;
}
.reviews-pagination a,
.reviews-pagination strong,
.reviews-pagination > span {
  display: grid;
  place-items: center;
  min-width: 37px;
  height: 37px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  color: #9ba8b3;
  background: #0e1828;
  font-size: 11px;
  text-decoration: none;
}
.reviews-pagination strong {
  border-color: rgba(66, 228, 177, .35);
  color: #07100d;
  background: #42e4b1;
}
.reviews-pagination > span { border-color: transparent; background: transparent; }
.review-submit-section {
  margin-top: 110px;
  padding-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.review-submit-section > header { max-width: 720px; margin-bottom: 38px; }
.review-submit-section > header h2 {
  margin: 0;
  color: #edf5f3;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.review-submit-section > header > span { display: block; }
.review-form-shell {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 26px;
  background: #0d1727;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}
.review-form-aside {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 38px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(66, 228, 177, .21), transparent 27%),
    radial-gradient(circle at 100% 100%, rgba(125, 104, 255, .18), transparent 36%),
    linear-gradient(145deg, #102235, #0b1727 66%);
}
.review-form-aside::after {
  position: absolute;
  right: -82px;
  bottom: -105px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(66, 228, 177, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(66, 228, 177, .025), 0 0 0 68px rgba(66, 228, 177, .018);
  content: "";
}
.review-form-aside-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 195, 90, .34);
  border-radius: 18px;
  color: #ffc35a;
  background: rgba(255, 195, 90, .095);
  box-shadow: 0 12px 34px rgba(255, 170, 54, .12), inset 0 0 20px rgba(255, 195, 90, .05);
  font-size: 28px;
  text-shadow: 0 0 15px rgba(255, 195, 90, .55);
}
.review-form-aside > p {
  margin: 0 0 12px;
  color: #42e4b1;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.review-form-aside h3 {
  max-width: 240px;
  margin: 0;
  color: #eef7f5;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.review-form-aside > span:not(.review-form-aside-mark) {
  max-width: 245px;
  margin-top: 18px;
  color: #8e9eaa;
  font-size: 12px;
  line-height: 1.65;
}
.review-form-aside ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 40px 0 0;
  list-style: none;
}
.review-form-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bac7cf;
  font-size: 11px;
}
.review-form-aside li i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #42e4b1;
  background: rgba(66, 228, 177, .1);
  font-size: 10px;
  font-style: normal;
}
.review-submit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 20px 18px;
  padding: 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 228, 177, .045), transparent 30%),
    #0d1727;
}
.review-submit-form label { display: grid; align-content: start; gap: 8px; }
.review-submit-form label > span { color: #b9c5cd; font-size: 11px; font-weight: 600; }
.review-submit-form label > span small { color: #687785; }
.review-submit-form .required-marker,
.review-star-field .required-marker {
  margin-left: 2px;
  color: #ff7584;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 117, 132, .28);
}
.review-submit-form input:not([type="radio"]):not([type="hidden"]),
.review-submit-form select,
.review-submit-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(151, 174, 191, .16);
  border-radius: 13px;
  background: rgba(6, 13, 24, .78);
  color: #edf5f3;
  font: inherit;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.review-submit-form input::placeholder,
.review-submit-form textarea::placeholder { color: #495765; opacity: 1; }
.review-submit-form input:hover,
.review-submit-form textarea:hover {
  border-color: rgba(151, 174, 191, .27);
  background: rgba(7, 15, 27, .96);
}
.review-submit-form input:not([type="radio"]):not([type="hidden"]):focus,
.review-submit-form select:focus,
.review-submit-form textarea:focus {
  border-color: #42e4b1;
  background: #07101c;
  box-shadow: 0 0 0 4px rgba(66, 228, 177, .08), 0 12px 30px rgba(0, 0, 0, .12);
}
.review-submit-form textarea { min-height: 166px; resize: vertical; line-height: 1.6; }
.review-star-field {
  display: grid;
  grid-column: 1 / -1;
  align-content: start;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.review-star-field legend {
  margin: 0 0 9px;
  padding: 0;
  color: #b9c5cd;
  font-size: 11px;
  font-weight: 600;
}
.review-star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 7px;
  min-height: 66px;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid rgba(255, 195, 90, .18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 195, 90, .08), transparent 32%),
    rgba(6, 13, 24, .78);
}
.review-star-picker label {
  display: block;
  color: #3f4a59;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: color 140ms ease, transform 140ms ease, text-shadow 140ms ease, filter 140ms ease;
}
.review-star-picker input:checked ~ label,
.review-star-picker label:hover,
.review-star-picker label:hover ~ label {
  color: #ffc35a;
  filter: saturate(1.15);
  text-shadow: 0 0 13px rgba(255, 183, 68, .48);
}
.review-star-picker label:hover { transform: translateY(-2px) scale(1.06); }
.review-star-picker input:focus-visible + label {
  border-radius: 4px;
  outline: 2px solid #42e4b1;
  outline-offset: 3px;
}
.review-submit-form .errorlist {
  margin: 0;
  padding: 0;
  color: #ff8686;
  font-size: 10px;
  list-style: none;
}
.review-body-field { grid-column: 1 / -1; }
.review-submit-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 2px;
}
.review-submit-action p { max-width: 430px; margin: 0; color: #657481; font-size: 9px; line-height: 1.6; }
.review-submit-action .button {
  min-width: 230px;
  border-radius: 13px;
  box-shadow: 0 15px 36px rgba(66, 228, 177, .16);
}
@media (max-width: 900px) {
  .home-reviews-grid { grid-template-columns: 1fr; }
  .home-review-card { min-height: 0; }
  .reviews-page-hero { grid-template-columns: 1fr; gap: 26px; }
  .reviews-page-hero aside { min-height: 0; grid-template-columns: auto 1fr; align-items: baseline; gap: 7px 12px; }
  .reviews-page-hero aside small { grid-column: 1 / -1; margin-top: 0; }
  .reviews-feed { grid-template-columns: 1fr; }
  .review-feed-item:nth-child(3n) { transform: none; }
  .review-form-shell { grid-template-columns: 1fr; }
  .review-form-aside { min-height: 0; padding: 30px; }
  .review-form-aside-mark { margin-bottom: 28px; }
  .review-form-aside ul { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; padding-top: 0; }
}
@media (max-width: 640px) {
  .reviews-preview { padding: 72px 0 78px; }
  .reviews-preview-heading { margin-bottom: 30px; }
  .reviews-preview-heading h2 { font-size: 39px; }
  .reviews-page { padding: 50px 0 78px; }
  .reviews-page-hero { margin-bottom: 34px; }
  .reviews-page-hero h1 { font-size: 43px; }
  .reviews-page-hero aside { padding: 18px; border-radius: 16px; }
  .reviews-page-hero aside strong { font-size: 34px; }
  .review-feed-item { min-height: 0; padding: 22px 20px; }
  .review-stars { font-size: 17px; }
  .home-review-card { padding: 22px; border-radius: 18px; }
  .review-submit-section { margin-top: 70px; padding-top: 56px; }
  .review-form-shell { border-radius: 20px; }
  .review-form-aside { padding: 25px 22px 27px; }
  .review-form-aside-mark { width: 50px; height: 50px; margin-bottom: 24px; border-radius: 15px; font-size: 24px; }
  .review-form-aside h3 { font-size: 25px; }
  .review-form-aside ul { grid-template-columns: 1fr; gap: 10px; }
  .review-submit-form { grid-template-columns: 1fr; padding: 24px 20px; }
  .review-name-field,.review-email-field,.review-star-field,.review-body-field { grid-column: auto; }
  .review-star-picker { min-height: 60px; padding: 8px 12px; }
  .review-star-picker label { font-size: 34px; }
  .review-submit-action { grid-column: auto; align-items: stretch; flex-direction: column; }
  .review-submit-action .button { width: 100%; min-width: 0; }
}
