@font-face {
  font-family: "Onest Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/onest-cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}
@font-face {
  font-family: "Onest Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/onest-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Unbounded Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("/fonts/unbounded-cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}
@font-face {
  font-family: "Unbounded Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("/fonts/unbounded-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --bg: #0b0d12;
  --panel: #12151b;
  --panel-2: #171b22;
  --line: #272c35;
  --line-soft: #1d2128;
  --text: #f3f1eb;
  --muted: #9ba1ac;
  --orange: #ff6b2c;
  --orange-light: #ff8a58;
  --green: #b8f440;
  --danger: #ff6a6a;
  --radius: 24px;
  --max: 1180px;
  --font-body: "Onest Variable", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Unbounded Variable", "Onest Variable", ui-sans-serif, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 8%, rgba(255, 107, 44, .10), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
h1, h2, h3, .brand { font-family: var(--font-display); }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.hidden { display: none !important; }
.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;
}

.topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 20px;
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.topline__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, .16);
}
.header {
  width: min(calc(100% - 40px), var(--max));
  height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.055em;
  text-decoration: none;
}
.brand > span:last-child > span { color: var(--orange); }
.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px 4px 10px 4px;
  background: var(--orange);
  color: white;
  font-weight: 950;
  transform: skew(-5deg);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav a, .header__support {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }
.header__support {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--text);
}
.header__support:hover { border-color: var(--orange); }
.menu-button { display: none; }

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .8fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 78px;
}
.hero > * { min-width: 0; }
.eyebrow, .section-index, .card-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
}
.eyebrow span { width: 30px; height: 1px; background: var(--orange); }
.hero h1, .section-heading h2, .support-section h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 620;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero h1 { font-family: var(--font-body); font-weight: 850; letter-spacing: -.075em; }
.hero__lead {
  max-width: 570px;
  margin: 31px 0 37px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero__facts {
  display: flex;
  gap: 31px;
}
.hero__facts div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}
.hero__facts div:last-child { border: 0; }
.hero__facts strong { color: var(--orange); font-size: 11px; }
.hero__facts span { color: #c6c9cf; font-size: 11px; font-weight: 750; line-height: 1.45; text-transform: uppercase; }

.exchange-card {
  position: relative;
  padding: 30px;
  border: 1px solid #30353e;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(25, 29, 37, .98), rgba(15, 18, 23, .98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
}
.exchange-card::before {
  content: "";
  position: absolute;
  inset: -1px 15% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.card-heading h2, .dialog-head h2, .order-success h2 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: -.045em;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c9cfda;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(184, 244, 64, .6); }
.currency-field {
  padding: 15px 17px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0d1015;
  transition: border-color .2s ease;
}
.currency-field:focus-within { border-color: #555c68; }
.currency-field label { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.currency-field__control { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.currency-field input, .currency-field select {
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.currency-field input { width: 100%; font-size: 27px; font-weight: 760; letter-spacing: -.04em; }
.currency-field input::-webkit-inner-spin-button { appearance: none; }
.currency-field select {
  max-width: 168px;
  padding: 10px 28px 10px 12px;
  border-radius: 10px;
  background-color: var(--panel-2);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}
.currency-field small { display: block; min-height: 16px; margin-top: 3px; color: #646b77; font-size: 10px; }
.exchange-divider { height: 12px; position: relative; z-index: 2; display: grid; place-items: center; }
.exchange-divider span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 4px solid var(--panel);
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 13px;
}
.exchange-divider button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 4px solid var(--panel);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.direction-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: -5px 0 18px;
  padding: 4px;
  border-radius: 12px;
  background: #0d1015;
}
.direction-tabs button {
  min-height: 39px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}
.direction-tabs button.active { background: var(--panel-2); color: var(--text); box-shadow: 0 2px 12px rgba(0,0,0,.22); }
.network-choice { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.network-choice span { color: var(--muted); font-size: 10px; }
.network-choice select { padding: 6px 26px 6px 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel-2); color: var(--text); font-size: 10px; font-weight: 800; }
.promo-row { display: grid; grid-template-columns: 1fr auto; gap: 7px; margin-top: 16px; }
.promo-row input { min-width: 0; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: #0d1015; color: var(--text); font-size: 11px; text-transform: uppercase; }
.promo-row input:focus { border-color: var(--orange); }
.promo-row button { padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel-2); color: var(--text); font-size: 10px; font-weight: 750; cursor: pointer; }
.promo-row button:hover { border-color: var(--orange); }
.promo-status { min-height: 15px; margin: 5px 2px 0; color: var(--green); font-size: 10px; }
.dialog-quote strong small { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; font-weight: 500; }
.lock-countdown { margin: 12px 0 18px; color: var(--green); font-size: 11px; font-weight: 750; }
.referral-banner { width: min(calc(100% - 40px), var(--max)); margin: 15px auto -20px; padding: 10px 14px; border: 1px solid rgba(184,244,64,.25); border-radius: 10px; background: rgba(184,244,64,.06); color: var(--muted); font-size: 11px; text-align: center; }
.referral-banner strong { color: var(--green); }
.quote-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 19px 2px 17px; }
.quote-summary div:last-child { text-align: right; }
.quote-summary span, .quote-summary strong { display: block; }
.quote-summary span { color: #6e7581; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.quote-summary strong { margin-top: 4px; color: #d5d7dc; font-size: 12px; }
.primary-button, .secondary-button {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border: 0;
  border-radius: 13px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.primary-button:hover:not(:disabled) { background: var(--orange-light); transform: translateY(-1px); }
.primary-button:disabled { cursor: not-allowed; opacity: .45; }
.primary-button span, .secondary-button span { font-size: 19px; font-weight: 400; }
.card-note { display: flex; align-items: flex-start; gap: 8px; margin: 15px 3px 0; color: #686f7b; font-size: 10px; line-height: 1.45; }
.card-note span { width: 15px; height: 15px; flex: 0 0 15px; display: grid; place-items: center; border: 1px solid #4a505a; border-radius: 50%; font-size: 9px; }
.form-error, .field-error { min-height: 0; margin: 0; color: var(--danger); font-size: 11px; }
.form-error:not(:empty) { margin: 0 0 10px; }

.trust-strip {
  width: min(calc(100% - 40px), var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div { display: flex; align-items: center; gap: 16px; padding: 28px 30px; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { border-right: 0; }
.trust-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border: 1px solid #383e48; border-radius: 50%; color: var(--orange); }
.trust-strip p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.trust-strip strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 12px; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 132px 0;
}
.section-index { display: block; margin-bottom: 30px; color: var(--orange); }
.section-heading { max-width: 480px; }
.section-heading h2 { font-size: clamp(38px, 4.5vw, 58px); }
.section-heading > p { margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.process { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 12vw, 150px); align-items: start; }
.assets-section { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(50px, 10vw, 120px); align-items: start; }
.asset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.asset-card { min-height: 82px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); color: var(--text); text-align: left; cursor: pointer; transition: border-color .2s, transform .2s; }
.asset-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.asset-card__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: #0d1015; color: var(--orange); font-weight: 900; }
.asset-card strong, .asset-card small { display: block; }
.asset-card strong { font-size: 14px; }
.asset-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.asset-card b { color: var(--orange); font-size: 17px; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps > li > span { color: var(--orange); font-size: 11px; font-weight: 800; }
.steps h3 { margin: -5px 0 7px; font-size: 20px; letter-spacing: -.03em; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.rates-section { border-top: 1px solid var(--line); }
.section-heading--row { max-width: none; display: flex; justify-content: space-between; align-items: end; }
.rates-meta { display: grid; gap: 4px; padding-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.rates-table-wrap { width: 100%; max-width: 100%; margin-top: 58px; overflow-x: auto; overscroll-behavior-inline: contain; }
.rates-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.rates-table th { padding: 0 18px 13px; color: #686f7a; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-align: right; text-transform: uppercase; }
.rates-table th:first-child { text-align: left; }
.rates-table td { padding: 23px 18px; border-top: 1px solid var(--line); font-size: 15px; font-variant-numeric: tabular-nums; text-align: right; }
.rates-table td:first-child { text-align: left; }
.asset-cell { display: flex; align-items: center; gap: 13px; }
.asset-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--panel-2); color: var(--orange); font-size: 12px; font-weight: 900; }
.asset-cell strong, .asset-cell small { display: block; }
.asset-cell small { color: var(--muted); font-size: 10px; }
.loading-cell { color: var(--muted); text-align: center !important; }
.rates-disclaimer { max-width: 620px; margin: 20px 0 0 auto; color: #676e79; font-size: 11px; text-align: right; }

.track-section { border-top: 1px solid var(--line); }
.track-card { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 11vw, 135px); padding: clamp(36px, 6vw, 74px); border-radius: var(--radius); background: var(--text); color: var(--bg); }
.track-card__copy h2 { margin: 0; font-size: clamp(36px, 4.5vw, 55px); font-weight: 620; line-height: 1; letter-spacing: -.055em; }
.track-card__copy > p { max-width: 470px; margin: 25px 0; color: #5c616a; font-size: 14px; line-height: 1.7; }
.track-form { align-self: center; }
.track-form label, .order-form > label { display: block; margin: 16px 0 7px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.track-form input, .order-form input, .order-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #c8c6c0;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #101216;
  font-size: 13px;
}
.track-form input:focus, .order-form input:focus, .order-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 107, 44, .12); }
.secondary-button { margin-top: 20px; background: var(--bg); color: white; }
.secondary-button:hover { background: #252932; }
.track-form .form-error { margin-top: 10px; color: #c63838; }
.saved-orders { display: flex; flex-wrap: wrap; gap: 7px; }
.saved-order-button { padding: 7px 10px; border: 1px solid #cbc8c1; border-radius: 99px; background: transparent; color: #555961; font-size: 10px; cursor: pointer; }
.saved-order-button:hover { border-color: var(--orange); color: var(--bg); }
.status-result { margin-top: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.status-result__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.status-result h3 { margin: 0; font-size: 22px; }
.status-pill { padding: 7px 11px; border-radius: 99px; background: rgba(184, 244, 64, .12); color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.status-pill[data-status="cancelled"], .status-pill[data-status="expired"] { color: var(--danger); background: rgba(255,106,106,.1); }
.status-result__head small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.status-timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin: 22px 0; }
.status-timeline span { position: relative; padding-top: 18px; color: #555d68; font-size: 8px; text-align: center; }
.status-timeline span::before { content: ""; position: absolute; top: 5px; left: -50%; width: 100%; height: 1px; background: var(--line); }
.status-timeline span:first-child::before { display: none; }
.status-timeline i { position: absolute; z-index: 1; top: 1px; left: 50%; width: 9px; height: 9px; border: 2px solid var(--panel); border-radius: 50%; background: #363c46; transform: translateX(-50%); }
.status-timeline span.done { color: var(--text); }
.status-timeline span.done::before, .status-timeline span.done i { background: var(--orange); }
.status-grid strong small { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; font-weight: 500; }
.payment-panel { margin-top: 18px; padding: 20px; border: 1px solid rgba(184,244,64,.25); border-radius: 14px; background: rgba(184,244,64,.05); }
.payment-panel .section-index { margin-bottom: 9px; color: var(--green); }
.payment-panel > strong { display: block; overflow-wrap: anywhere; font-size: 15px; }
.payment-panel p { margin: 7px 0; color: var(--muted); font-size: 11px; }
.payment-panel button { margin-top: 10px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; background: transparent; color: var(--text); font-size: 9px; cursor: pointer; }
.payment-reference-form, .review-form { margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #0d1015; }
.payment-reference-form label, .review-form h4 { display: block; margin: 0 0 9px; color: var(--text); font-size: 11px; }
.payment-reference-form input, .review-form input, .review-form select, .review-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; outline: 0; background: var(--panel); color: var(--text); font-size: 11px; }
.payment-reference-form .secondary-button, .review-form .secondary-button { margin-top: 10px; background: var(--orange); }
.review-form__row { display: grid; grid-template-columns: 1fr 100px; gap: 8px; }
.review-form textarea { min-height: 90px; margin-top: 8px; resize: vertical; }
.review-thanks { margin: 0; color: var(--green); font-size: 12px; }
.transaction-note { display: grid; grid-template-columns: 140px 1fr; gap: 10px; margin-top: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; }
.transaction-note span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.transaction-note code { overflow-wrap: anywhere; color: var(--text); font-size: 10px; }
.customer-support { margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #0d1015; }
.customer-support__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.customer-support__head .section-index { margin: 0 0 4px; }
.customer-support__head h4 { margin: 0; font-family: var(--font-display); font-size: 14px; font-weight: 620; }
.customer-support__head small { color: var(--muted); font-size: 9px; }
.customer-message-list { display: grid; gap: 7px; max-height: 260px; margin-bottom: 14px; overflow-y: auto; }
.customer-message { max-width: 88%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px 11px 11px 3px; background: var(--panel); }
.customer-message[data-sender="customer"] { margin-left: auto; border-color: rgba(255,107,44,.25); border-radius: 11px 11px 3px 11px; background: rgba(255,107,44,.07); }
.customer-message > div { display: flex; justify-content: space-between; gap: 15px; }
.customer-message strong { color: var(--orange); font-size: 8px; text-transform: uppercase; }
.customer-message time { color: #626975; font-size: 8px; }
.customer-message p { margin: 5px 0 0; color: #d9dbe0; font-size: 10px; line-height: 1.55; white-space: pre-wrap; }
.customer-message-empty { padding: 18px; color: var(--muted); font-size: 10px; text-align: center; }
.customer-support-form textarea { width: 100%; min-height: 76px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; outline: 0; background: var(--panel); color: var(--text); font-size: 11px; resize: vertical; }
.customer-support-form textarea:focus { border-color: var(--orange); }
.customer-support-form .secondary-button { min-height: 44px; margin-top: 8px; background: var(--orange); }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.status-grid div { padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.status-grid span, .status-grid strong { display: block; }
.status-grid span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.status-grid strong { margin-top: 7px; font-size: 13px; }

.faq-section { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(60px, 10vw, 120px); border-top: 1px solid var(--line); }
.reviews-section { border-top: 1px solid var(--line); }
.reviews-section .section-heading--row > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 50px; }
.review-card { display: flex; flex-direction: column; min-height: 230px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
.review-card > div { display: flex; justify-content: space-between; gap: 10px; }
.review-card > div span { color: var(--orange); letter-spacing: .08em; }
.review-card small { color: var(--muted); font-size: 9px; }
.review-card p { margin: 24px 0; color: #d6d8dd; font-size: 13px; line-height: 1.7; }
.review-card footer { margin-top: auto; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer small { margin-top: 3px; }
.reviews-empty { grid-column: 1 / -1; padding: 40px; border: 1px dashed var(--line); border-radius: 14px; color: var(--muted); font-size: 12px; text-align: center; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #e2e1dc; font-size: 14px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 700px; margin: -5px 45px 24px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.support-section {
  padding: 110px 20px;
  background: var(--orange);
  color: white;
  text-align: center;
}
.support-section .section-index { margin-bottom: 22px; color: rgba(255,255,255,.72); }
.support-section h2 { font-size: clamp(42px, 6vw, 72px); font-weight: 620; }
.support-section > p { margin: 25px auto; font-size: 14px; }
.support-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.support-actions a, .support-placeholder { display: inline-flex; align-items: center; min-height: 45px; padding: 0 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 99px; font-size: 12px; font-weight: 750; text-decoration: none; }
.support-actions a:hover { background: white; color: var(--orange); }

.footer {
  width: min(calc(100% - 40px), var(--max));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
  padding: 44px 0;
}
.brand--footer { font-size: 16px; }
.brand--footer .brand__mark { width: 29px; height: 29px; }
.footer p, .footer small { margin: 0; color: #6f7580; font-size: 10px; }
.footer > div { display: flex; gap: 17px; }
.footer > div a { color: var(--muted); font-size: 10px; text-decoration: none; }
.footer > div a:hover { color: var(--text); }

.order-dialog {
  width: min(calc(100% - 28px), 560px);
  max-height: min(90vh, 760px);
  padding: 0;
  border: 1px solid #343a45;
  border-radius: 22px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0,0,0,.65);
}
.order-dialog::backdrop { background: rgba(4, 6, 9, .82); backdrop-filter: blur(8px); }
.order-form, .order-success { padding: 30px; }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.dialog-close { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--text); }
.dialog-quote { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin: 24px 0 7px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #0d1015; }
.dialog-quote div:last-child { text-align: right; }
.dialog-quote span, .dialog-quote strong { display: block; }
.dialog-quote span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.dialog-quote strong { margin-top: 3px; font-size: 15px; }
.dialog-quote > b { color: var(--orange); }
.order-form > label { color: #c5c8ce; }
.order-form textarea { resize: vertical; }
.order-form .field-error { margin-top: 4px; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 18px 0 0 !important; color: var(--muted) !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.consent input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--orange); }
.order-form .primary-button { margin-top: 18px; }
.order-success { text-align: center; }
.success-check { width: 56px; height: 56px; display: grid; place-items: center; margin: 4px auto 22px; border-radius: 50%; background: var(--green); color: #10140a; font-size: 25px; }
.order-success h2 { margin: 7px 0 13px; font-size: 28px; }
.order-success > p { color: var(--muted); font-size: 13px; }
.secret-box { display: flex; align-items: center; gap: 10px; margin: 22px 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: #0d1015; }
.secret-box code { min-width: 0; flex: 1; overflow: hidden; color: #e1e4e9; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.secret-box button, .text-button { border: 0; background: transparent; color: var(--orange); font-size: 11px; font-weight: 750; cursor: pointer; }
.text-button { margin-top: 15px; color: var(--muted); }
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  max-width: 340px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #171b21;
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }

.legal-page { width: min(calc(100% - 40px), 820px); min-height: calc(100vh - 200px); margin: 0 auto; padding: 80px 0; }
.legal-page h1 { margin: 0 0 30px; font-size: clamp(36px, 6vw, 62px); font-weight: 620; line-height: 1; letter-spacing: -.055em; }
.legal-page h2 { margin: 36px 0 10px; font-size: 17px; font-weight: 620; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-alert { padding: 16px 18px; border-left: 3px solid var(--orange); background: var(--panel); }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 55px; padding-top: 60px; }
  .hero__copy { max-width: 700px; }
  .exchange-card { max-width: 620px; width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div, .trust-strip > div:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .process, .faq-section, .assets-section { grid-template-columns: 1fr; gap: 70px; }
  .track-card { grid-template-columns: 1fr; gap: 35px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr auto; }
  .footer p { display: none; }
}

@media (max-width: 720px) {
  .topline { font-size: 9px; }
  .header { height: 72px; }
  .header .brand { gap: 8px; font-size: 12px; letter-spacing: -.035em; }
  .header .brand__mark { width: 30px; height: 30px; flex: 0 0 30px; }
  .menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 4px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { width: 15px; height: 1px; background: var(--text); }
  .nav {
    position: absolute;
    inset: 106px 20px auto;
    z-index: 10;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #14171d;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  .nav.open { display: grid; gap: 16px; }
  .header__support { display: none; }
  .hero { width: min(calc(100% - 28px), var(--max)); padding: 50px 0 60px; }
  .hero h1 { font-size: clamp(51px, 16vw, 72px); }
  .hero__lead { font-size: 14px; }
  .hero__facts { gap: 13px; justify-content: space-between; }
  .hero__facts div { gap: 5px; padding-right: 12px; }
  .hero__facts strong { display: none; }
  .hero__facts span { font-size: 9px; }
  .exchange-card { padding: 20px; border-radius: 19px; }
  .currency-field__control { grid-template-columns: minmax(0, .9fr) minmax(120px, 1fr); }
  .currency-field select { width: 100%; max-width: none; font-size: 11px; }
  .trust-strip, .section, .footer { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 86px 0; }
  .section-heading--row { display: block; }
  .rates-meta { margin-top: 25px; text-align: left; }
  .rates-table-wrap { margin-top: 35px; }
  .rates-table { min-width: 100%; table-layout: fixed; }
  .rates-table th, .rates-table td { padding: 14px 5px; font-size: 9px; }
  .rates-table th:first-child, .rates-table td:first-child { width: 40%; }
  .asset-cell { gap: 7px; }
  .asset-icon { width: 28px; height: 28px; font-size: 9px; }
  .asset-cell strong { font-size: 10px; }
  .asset-cell small { display: none; }
  .rates-disclaimer { text-align: left; }
  .track-card { margin: 0 -14px; padding: 30px 20px; border-radius: 0; }
  .status-grid { grid-template-columns: 1fr; }
  .status-timeline { overflow-x: auto; grid-template-columns: repeat(6, 82px); padding-bottom: 8px; }
  .asset-grid, .reviews-grid { grid-template-columns: 1fr; }
  .transaction-note { grid-template-columns: 1fr; }
  .status-result__head { align-items: flex-start; flex-direction: column; }
  .support-section { padding: 78px 20px; }
  .footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer .brand { justify-content: center; }
  .footer > div { justify-content: center; flex-wrap: wrap; }
  .order-form, .order-success { padding: 22px; }
}

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