:root {
  --bg: #070b0d;
  --surface: #0b1114;
  --surface-2: #0f171a;
  --ink: #f4f6f5;
  --text: #c6cdca;
  --muted: #7f8a86;
  --line: #202a2d;
  --line-strong: #303c3f;
  --green: #35d06f;
  --green-dark: #0d2115;
  --danger: #ff6b6b;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  color-scheme: dark;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after { display: none; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 13, 0.96);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.site-nav__discord { color: var(--ink); }

.site-nav a.site-nav__discord { color: var(--green); }
.site-nav__trade { display: none; }

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

.button,
.user-signin {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--green);
  border-radius: 5px;
  padding: 0 22px;
  background: var(--green);
  color: #07100d;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover,
.user-signin:hover {
  background: #50dd82;
  border-color: #50dd82;
}

.button:active,
.user-signin:active { transform: translateY(1px); }

.button--compact,
.user-signin { min-height: 40px; padding: 0 17px; font-size: 13px; }
.button--full { width: 100%; }

.user-signin {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.user-signin:hover {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.header-actions .user-slot { min-width: 80px; }

.user-menu { position: relative; }

.user-menu-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 4px 10px 4px 5px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.user-menu-button img { width: 30px; height: 30px; border-radius: 50%; }
.user-menu-button .name { max-width: 84px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.user-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  z-index: 40;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 8px;
  background: var(--surface-2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.user-menu-popover[hidden] { display: none; }

.user-menu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 12px;
  border-bottom: 1px solid var(--line);
}

.user-menu-header img { width: 34px; height: 34px; border-radius: 50%; }
.user-menu-header .name, .user-menu-header .id { display: block; }
.user-menu-header .name { color: var(--ink); font-weight: 650; }
.user-menu-header .id { color: var(--muted); font-size: 11px; }

.user-menu-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  color: var(--text);
  text-decoration: none;
}

.user-menu-link:hover { background: var(--surface); color: var(--ink); }
.user-menu-link .meta { color: var(--muted); font-size: 11px; }
.user-menu-link.danger { color: var(--danger); }
.user-menu-rule { border: 0; border-top: 1px solid var(--line); margin: 6px 0; }

main,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
  padding: 74px 0 66px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 208, 111, 0.1);
}

.hero h1,
.section-head h2,
.method-strip h2,
.closing-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(78px, 8.3vw, 126px); }

.hero__lede {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--text);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

.text-link:hover { color: var(--green); }

.trade-composer {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.trade-composer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trade-composer__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.trade-composer__head > span { color: var(--muted); font-size: 12px; }
.trade-composer__head .live-dot { width: 6px; height: 6px; margin-right: 6px; }

.trade-field {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px;
  background: #090f11;
}

.trade-field__label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.trade-field__row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.asset-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
}

.asset-logo--cashapp { background: #00d632; }
.asset-logo--crypto { background: #26a17b; }
.asset-logo img { width: 24px; height: 24px; object-fit: contain; }

.trade-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.route-picker { position: relative; min-width: 0; }

.route-picker__native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.route-picker__trigger {
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.route-picker__value {
  flex: 0 1 auto;
  overflow: hidden;
  color: var(--ink);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-picker__chevron {
  width: 14px;
  height: 14px;
  flex: none;
  margin-left: -5px;
  opacity: 0.8;
  transition: transform 150ms ease, opacity 150ms ease;
}

.route-picker__trigger[aria-expanded="true"] .route-picker__chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.route-picker__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: -8px;
  width: min(310px, calc(100vw - 64px));
  max-height: 292px;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 7px;
  background: #0b1114;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.route-picker__menu[hidden] { display: none; }

.route-picker__option {
  width: 100%;
  min-height: 50px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 0;
  border-radius: 5px;
  padding: 7px 9px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.route-picker__option:hover,
.route-picker__option:focus-visible { background: #11191c; color: var(--ink); outline: 0; }
.route-picker__option[aria-selected="true"] { background: #101c16; color: var(--ink); }
.route-picker__option[aria-selected="true"]::after { content: "✓"; color: var(--green); font-weight: 700; }

.route-picker__option-logo {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.route-picker__option-logo img { width: 18px; height: 18px; object-fit: contain; }

.amount-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
}

.amount-wrap input {
  width: 3ch;
  max-width: 12ch;
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
  text-align: right;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}

.amount-wrap input::-webkit-inner-spin-button,
.amount-wrap input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.receive-value { text-align: right; }
.receive-value strong { display: block; color: var(--ink); font-size: 25px; line-height: 1.2; }
.receive-value span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }

.swap-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 6px 0;
}

.swap-divider span { height: 1px; background: var(--line); }
.swap-divider img { width: 34px; height: 34px; border-radius: 50%; }

.trade-summary {
  margin: 16px 0;
  border-top: 1px solid var(--line);
}

.trade-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
}

.trade-summary dt { color: var(--muted); }
.trade-summary dd { margin: 0; color: var(--ink); font-variant-numeric: tabular-nums; }
.trade-summary__net dd { color: var(--green); font-weight: 700; }

.trade-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-bar > div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px 40px;
}

.proof-bar > div + div { border-left: 1px solid var(--line); }
.proof-bar__label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.proof-bar strong { color: var(--ink); font-size: clamp(25px, 2.4vw, 34px); font-variant-numeric: tabular-nums; line-height: 1.2; }
.proof-bar > div > span:last-child { color: var(--muted); font-size: 12px; }

.exchanger-callout {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 34px 0 48px;
  border: 1px solid var(--line-strong);
  padding: 24px 28px;
  background: var(--surface);
}
.exchanger-callout div { display: grid; gap: 5px; }
.exchanger-callout div > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.exchanger-callout strong { color: var(--ink); font-size: 17px; }
.exchanger-callout > a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--green);
  text-underline-offset: 6px;
}

.popular-routes {
  padding: 84px 0 0;
}

.popular-routes__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 30px;
}

.popular-routes__head h2 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: clamp(43px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.popular-routes__head > p {
  max-width: 340px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.popular-routes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.popular-routes__grid a {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 5px 14px;
  padding: 24px 26px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 140ms ease;
}

.popular-routes__grid a + a { border-left: 1px solid var(--line); }
.popular-routes__grid a:hover { background: var(--surface); }
.popular-routes__grid span { color: var(--muted); font-size: 12px; }
.popular-routes__grid strong { font-size: 18px; line-height: 1.2; }
.popular-routes__grid i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--green);
  font-size: 18px;
  font-style: normal;
}

.process { padding: 112px 0 96px; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.34fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -42px; }
.section-head h2,
.method-strip h2,
.closing-grid h2 { font-size: clamp(53px, 5.9vw, 82px); }
.section-head > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 17px; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process__grid li {
  min-height: 260px;
  padding: 35px 42px 38px;
}

.process__grid li + li { border-left: 1px solid var(--line); }
.process__number { display: block; margin-bottom: 40px; color: var(--green); font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1; }
.process__grid h3 { margin: 0 0 13px; color: var(--ink); font-size: 19px; }
.process__grid p { max-width: 290px; margin: 0; color: var(--muted); }

.method-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding: 0 0 96px;
}

.method-strip__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 18px 64px;
}

.method-strip__head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.method-strip h2 { max-width: none; margin: 0; font-size: 56px; }
.method-strip__head > p:last-child { max-width: 520px; margin: 0 0 5px; color: var(--muted); font-size: 16px; }

.method-groups {
  border-top: 1px solid var(--line);
}

.method-group {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.method-group__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.method-strip__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-strip__list li {
  min-height: 91px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
}

.method-strip__list li + li { border-left: 1px solid var(--line); }
.method-strip__list img { width: 28px; height: 28px; object-fit: contain; }
.method-strip__list span { color: var(--ink); font-weight: 600; }
.method-groups > .text-link { display: inline-block; margin-top: 24px; white-space: nowrap; font-size: 13px; }

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-panel,
.final-cta { padding: 72px 0 78px; }
.faq-panel { padding-right: 72px; }
.final-cta { padding-left: 72px; border-left: 1px solid var(--line); }
.closing-grid h2 { margin-bottom: 36px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-size: 22px; font-weight: 400; transition: transform 150ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; margin: -3px 0 20px; color: var(--muted); }

.final-cta { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.final-cta h2 { font-size: clamp(56px, 5.4vw, 78px); }
.final-cta > p:not(.eyebrow) { max-width: 420px; margin: 0 0 30px; color: var(--muted); font-size: 18px; }
.final-cta__note { margin-top: 14px; color: var(--muted); font-size: 11px; }

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-footer .brand img { width: 132px; }
.site-footer p { margin: 0; color: var(--muted); }
.site-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 20px; }
.site-footer > span { grid-column: 1 / -1; margin-top: -36px; color: #515c58; font-size: 11px; }

@media (max-width: 1080px) {
  html { scroll-padding-top: 92px; }
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }
  .site-nav {
    grid-column: auto;
    order: initial;
    min-width: 0;
    min-height: 0;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    overflow: visible;
    border-top: 0;
  }
  .site-nav a { min-height: 40px; display: inline-flex; align-items: center; white-space: nowrap; font-size: 14px; }
  .site-nav a.site-nav__trade { display: none; }
  .header-actions { grid-column: auto; }
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr); gap: 48px; }
  .hero h1 { font-size: clamp(74px, 9vw, 96px); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 126px; }
  main,
  .site-footer { width: min(100% - 36px, 680px); }
  .site-header__inner {
    width: calc(100% - 36px);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 18px;
    padding-top: 8px;
  }
  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    min-height: 50px;
    justify-content: flex-start;
    gap: clamp(18px, 4vw, 28px);
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { min-height: 49px; }
  .header-actions { grid-column: 2; }
  .header-actions .button { display: none; }
  .site-nav a.site-nav__trade { display: inline-flex; color: var(--green) !important; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding: 60px 0 48px; }
  .hero__copy { max-width: 650px; }
  .hero h1 { font-size: clamp(82px, 15vw, 112px); }
  .trade-composer { max-width: 620px; width: 100%; }
  .proof-bar > div { padding-inline: 24px; }
  .popular-routes__head { grid-template-columns: 1fr; gap: 14px; }
  .popular-routes__head > p { max-width: 500px; }
  .popular-routes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .popular-routes__grid a:nth-child(3) { border-left: 0; }
  .popular-routes__grid a:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head .eyebrow { grid-column: auto; margin-bottom: 0; }
  .section-head > p:last-child { max-width: 500px; }
  .process__grid li { min-height: 230px; padding-inline: 28px; }
  .method-strip__head { grid-template-columns: 1fr; gap: 16px; }
  .method-strip__head .eyebrow { grid-column: auto; }
  .closing-grid { grid-template-columns: 1fr; }
  .faq-panel { padding-right: 0; }
  .final-cta { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; padding: 42px 0; }
  .site-footer nav { justify-content: flex-start; }
  .site-footer > span { grid-column: auto; margin: 6px 0 0; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 154px; }
  body { font-size: 14px; }
  main,
  .site-footer,
  .site-header__inner { width: calc(100% - 28px); }
  .site-header__inner { min-height: 66px; gap: 0 12px; padding-top: 6px; }
  .brand img { width: 116px; }
  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 8px;
    min-height: 78px;
    padding: 6px 0;
    overflow: visible;
  }
  .site-nav a { min-height: 32px; justify-content: center; font-size: 11.5px; }
  .hero { gap: 38px; padding: 46px 0 42px; }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(62px, 17vw, 70px); letter-spacing: -0.045em; }
  .hero__lede { margin-top: 24px; font-size: 17px; }
  .hero__actions { gap: 22px; margin-top: 28px; }
  .button { min-height: 49px; padding: 0 17px; }
  .trade-composer { padding: 13px; border-radius: 7px; }
  .trade-field { padding: 13px; }
  .trade-field__row { grid-template-columns: 1fr; gap: 0; }
  .amount-wrap,
  .receive-value { grid-column: 1 / -1; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
  .amount-wrap { justify-content: flex-start; }
  .amount-wrap input { text-align: left; }
  .receive-value { text-align: left; }
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar > div { min-height: 102px; padding: 22px 4px; }
  .proof-bar > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .exchanger-callout { align-items: flex-start; flex-direction: column; gap: 18px; margin: 28px 0 12px; padding: 22px; }
  .popular-routes { padding-top: 64px; }
  .popular-routes__head h2 { font-size: 48px; }
  .popular-routes__grid { grid-template-columns: 1fr; }
  .popular-routes__grid a { min-height: 88px; padding: 19px 4px; }
  .popular-routes__grid a + a,
  .popular-routes__grid a:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .process { padding: 82px 0 70px; }
  .section-head { margin-bottom: 38px; }
  .section-head h2,
  .method-strip h2,
  .closing-grid h2 { font-size: 54px; }
  .process__grid { grid-template-columns: 1fr; }
  .process__grid li { min-height: 0; padding: 30px 4px 32px; }
  .process__grid li + li { border-top: 1px solid var(--line); border-left: 0; }
  .process__number { margin-bottom: 22px; font-size: 30px; }
  .method-strip { gap: 28px; padding-bottom: 72px; }
  .method-group { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .method-group__label { padding: 0 4px 8px; }
  .method-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-strip__list li { min-height: 66px; padding-inline: 12px; }
  .method-strip__list li + li { border-left: 0; }
  .method-strip__list li:nth-child(even) { border-left: 1px solid var(--line); }
  .method-strip__list li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .method-strip__list span { font-size: 13px; }
  .faq-panel,
  .final-cta { padding: 58px 0 62px; }
  .closing-grid h2 { margin-bottom: 28px; }
  .final-cta h2 { font-size: 60px; }
  .site-footer nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 18px; }
}

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