@font-face {
  font-family: "Anta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anta-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --ink: #050b18;
  --muted: #58647d;
  --soft: #f6f8ff;
  --panel: #ffffff;
  --line: #dbe1ee;
  --line-soft: #e9edf5;
  --violet: #6f3bff;
  --violet-dark: #4f20e9;
  --blue: #087cf0;
  --cyan: #12bddb;
  --green: #16bb7c;
  --dark: #07101f;
  --radius: 15px;
  --shadow: 0 24px 60px rgba(19, 30, 58, 0.09);
  --font-display: "Anta", "Space Grotesk", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - 48px);
}

.mobile-only {
  display: none;
}

.pay-topbar {
  align-items: center;
  display: flex;
  height: 52px;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
  z-index: 50;
  font-family: var(--font-body);
}

.pay-topbar-dashboard {
  background:
    radial-gradient(circle at 58% 48%, rgba(111, 86, 255, 0.055), transparent 26%),
    radial-gradient(circle at 22% 58%, rgba(31, 174, 218, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 252, 255, 0.95)),
    #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
  color: #071126;
}

.pay-topbar::before {
  background:
    radial-gradient(circle at 16% 70%, rgba(29, 150, 255, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 46%, rgba(96, 92, 255, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 62%, rgba(132, 80, 255, 0.12) 0 1px, transparent 2px),
    linear-gradient(112deg, transparent 0 17%, rgba(28, 207, 255, 0.055) 17.2%, transparent 18.2% 100%),
    linear-gradient(72deg, transparent 0 37%, rgba(119, 74, 255, 0.055) 37.2%, transparent 38.2% 100%),
    repeating-linear-gradient(102deg, transparent 0 58px, rgba(28, 207, 255, 0.032) 59px, transparent 61px 124px),
    repeating-linear-gradient(64deg, transparent 0 76px, rgba(132, 80, 255, 0.03) 77px, transparent 79px 150px);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.pay-topbar::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.74));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.pay-topbar-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: min(calc(100% - 32px), 1024px);
  z-index: 1;
}

.pay-topbar-logo {
  display: inline-flex;
  line-height: 0;
  width: 138px;
}

.pay-topbar-logo img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.pay-topbar-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

.pay-login-button {
  align-items: center;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border: 1px solid rgba(89, 43, 240, 0.7);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(79, 32, 233, 0.18);
  color: #fff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.035em;
  line-height: 1;
  min-height: 30px;
  min-width: 66px;
  padding: 0 13px;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.pay-login-button:hover,
.pay-login-button:focus-visible {
  background: linear-gradient(135deg, #7b49ff, #5a27f3);
  box-shadow: 0 10px 22px rgba(79, 32, 233, 0.26);
  outline: none;
  transform: translateY(-1px);
}

.pay-language-menu,
.pay-user-menu {
  display: inline-flex;
  line-height: 0;
  position: relative;
}

.pay-user-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #071126;
  cursor: pointer;
  display: inline-flex;
  gap: 9px;
  justify-content: flex-end;
  line-height: 1;
  min-height: 40px;
  min-width: 0;
  padding: 0;
}

.pay-user-avatar {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
  color: #071126;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.pay-user-name {
  color: #071126;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  max-width: min(220px, 30vw);
  min-width: 44px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pay-user-chevron {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 999px;
  color: #071126;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  transition: transform 160ms ease;
  width: 20px;
}

.pay-user-menu.is-open .pay-user-chevron {
  transform: rotate(180deg);
}

.pay-user-chevron svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 12px;
}

.pay-language-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
  color: #071126;
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  gap: 4px;
  justify-content: center;
  line-height: 1;
  min-height: 22px;
  padding: 0 7px;
}

.pay-language-button img {
  border-radius: 2px;
  height: 10px;
  object-fit: cover;
  width: 14px;
}

.pay-language-popover,
.pay-user-popover {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 9px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  display: grid;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  visibility: hidden;
  width: 148px;
  z-index: 60;
}

.pay-language-popover {
  top: calc(100% + 18px);
}

.is-open > .pay-language-popover,
.is-open > .pay-user-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.pay-language-option,
.pay-user-popover a {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: rgba(7, 17, 38, 0.78);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  line-height: 1;
  min-height: 32px;
  padding: 0 8px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.pay-language-option:hover,
.pay-language-option:focus-visible,
.pay-language-option.is-active,
.pay-user-popover a:hover,
.pay-user-popover a:focus-visible {
  background: rgba(112, 75, 255, 0.08);
  color: #071126;
}

.pay-language-option img {
  border-radius: 3px;
  height: 15px;
  object-fit: cover;
  width: 20px;
}

.hero {
  background:
    radial-gradient(circle at 53% 36%, rgba(115, 70, 255, 0.115), transparent 30%),
    radial-gradient(circle at 75% 42%, rgba(34, 144, 255, 0.07), transparent 27%),
    radial-gradient(circle at 17% 58%, rgba(46, 202, 220, 0.045), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  border-bottom: 1px solid var(--line-soft);
  min-height: 660px;
  overflow: hidden;
  padding: 80px 0 52px;
  position: relative;
}

.hero::before,
.hero::after {
  border: 1px solid rgba(111, 59, 255, 0.055);
  border-radius: 50%;
  content: "";
  height: 600px;
  left: 48%;
  position: absolute;
  top: -250px;
  transform: translateX(-50%);
  width: 600px;
}

.hero::after {
  height: 820px;
  top: -360px;
  width: 820px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: 300px minmax(0, 662px);
  justify-content: center;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.deals-copy h2,
.payout-copy h2,
.cta-card h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(40px, 3.75vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 23px;
}

.hero-copy h1 span {
  display: block;
  transform: none;
  white-space: nowrap;
}

.hero-lead {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.48;
  margin: 0 0 32px;
  max-width: 280px;
}

.hero-actions {
  display: grid;
  gap: 14px;
  width: 250px;
}

.payment-product {
  background:
    radial-gradient(circle at 58% 38%, rgba(111, 59, 255, 0.12), transparent 42%),
    rgba(247, 247, 255, 0.78);
  border: 1px solid rgba(193, 187, 234, 0.72);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(55, 38, 130, 0.1);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 200px;
  height: 520px;
  min-width: 0;
  padding: 18px;
  position: relative;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 52px;
  padding: 0 20px;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #7244ff 0%, #5a1df5 100%);
  box-shadow: 0 13px 28px rgba(100, 49, 255, 0.22);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 17px 34px rgba(100, 49, 255, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--violet);
  color: var(--violet-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(111, 59, 255, 0.05);
}

.qr-product {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(195, 201, 216, 0.8);
  border-radius: 15px;
  box-shadow: 0 14px 36px rgba(22, 31, 57, 0.055);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
}

.qr-ribbon {
  align-items: center;
  background: linear-gradient(180deg, #f2edff, #faf8ff);
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  color: var(--violet);
  display: flex;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.15em;
  left: 50%;
  position: absolute;
  top: -19px;
  transform: translateX(-50%);
  width: 244px;
}

.qr-ribbon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  width: 18px;
}

.qr-utilities {
  display: grid;
  gap: 10px;
  position: absolute;
  right: 18px;
  top: 25px;
}

.qr-utilities button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #566173;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
  width: 42px;
}

.qr-utilities button:hover,
.qr-utilities button:focus-visible {
  border-color: rgba(111, 59, 255, 0.48);
  box-shadow: 0 7px 18px rgba(78, 49, 168, 0.12);
  color: var(--violet);
}

.qr-utilities svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 21px;
}

.qr-frame {
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 11px;
  padding: 15px;
  position: relative;
}

.qr-frame img {
  height: 244px;
  image-rendering: pixelated;
  width: 244px;
}

.qr-mark {
  align-items: center;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 0 0 9px #fff;
  display: flex;
  height: 74px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
}

.qr-mark img {
  height: 96px;
  object-fit: contain;
  width: 96px;
}

.qr-domain,
.qr-handle {
  margin: 0;
  text-align: center;
}

.qr-domain {
  color: #777e89;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 21px;
}

.qr-handle {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1;
  white-space: nowrap;
}

.payment-summary {
  display: grid;
  gap: 16px;
  grid-template-rows: 286px 182px;
  min-width: 0;
  position: relative;
}

.rail-lines {
  height: 100%;
  left: -48px;
  overflow: visible;
  position: absolute;
  top: 0;
  width: 48px;
  z-index: 2;
}

.rail-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
}

.rail-purple { stroke: var(--violet); }
.rail-blue { stroke: var(--blue); }
.dot-purple { fill: var(--violet); }
.dot-blue { fill: var(--blue); }

.summary-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 34, 68, 0.055);
  min-width: 0;
  padding: 17px 16px;
  position: relative;
  z-index: 1;
}

.summary-card h2 {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
}

.methods-subtitle {
  color: #778090;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  margin: 5px 0 8px;
}

.market-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.market-list li {
  margin: 0;
}

.market-option {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: 27px 24px minmax(0, 1fr) 18px;
  min-height: 42px;
  padding: 0 7px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.market-list li:last-child .market-option { border-bottom-color: transparent; }

.market-option:has(input:checked) {
  background: rgba(111, 59, 255, 0.055);
  border: 1px solid rgba(111, 59, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(78, 49, 168, 0.06);
  margin: 0 -3px 1px;
  padding: 0 9px;
}

.market-option:focus-within {
  outline: 2px solid rgba(111, 59, 255, 0.42);
  outline-offset: 2px;
}

.market-option img {
  border-radius: 50%;
  height: 22px;
  object-fit: cover;
  width: 22px;
}

.market-option b,
.market-option strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.market-option input {
  accent-color: var(--violet);
  height: 18px;
  margin: 0;
  width: 18px;
}

.pix-symbol {
  display: grid;
  gap: 1px;
  grid-template-columns: 9px 9px;
  transform: rotate(45deg);
}

.pix-symbol i {
  background: #16c5b6;
  border-radius: 3px 1px;
  height: 9px;
  width: 9px;
}

.spei-symbol {
  color: #1a3a97;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.spei-symbol span { color: #ff6a2e; }

.pse-symbol {
  align-items: center;
  background: #08466c;
  border-radius: 50%;
  color: #8ed7ff;
  display: inline-flex;
  font-size: 10px;
  font-style: italic;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.receive-card > strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 10px 0 8px;
}

.receive-card p {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 11px;
  margin: 0 0 8px;
}

.usdc-logo {
  flex: 0 0 auto;
  height: 29px;
  object-fit: contain;
  width: 29px;
}

.usdc-icon {
  align-items: center;
  background: #0d82e9;
  border: 2px solid #0d82e9;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.usdc-icon.small {
  font-size: 9px;
  height: 19px;
  width: 19px;
}

.wallet-pill {
  background: #f0eaff;
  border-radius: 999px;
  color: var(--violet);
  display: flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  padding: 6px 11px;
  width: 100%;
}

.wallet-pill.small {
  display: inline-flex;
  font-size: 8px;
  padding: 4px 6px;
  width: auto;
}

.flow-section {
  background: #fff;
  padding: 26px 0 55px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 31px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 24px;
}

.center { text-align: center; }

.journey-surface {
  background:
    radial-gradient(circle at 16% 54%, rgba(111, 59, 255, 0.07), transparent 28%),
    radial-gradient(circle at 88% 48%, rgba(8, 124, 240, 0.06), transparent 30%),
    linear-gradient(90deg, #fcfbff 0%, #fff 48%, #fbfdff 100%);
  border: 1px solid #dce2ef;
  border-radius: 15px;
  box-shadow: 0 20px 54px rgba(23, 36, 68, 0.075);
  overflow: hidden;
  padding: 8px 16px 10px;
}

.journey-steps {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 27% 24% 26% 23%;
  min-height: 46px;
  padding: 0 8px 8px;
}

.journey-step {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 0 9px;
}

.journey-step > span {
  align-items: center;
  background: linear-gradient(135deg, #7c4aff, #5923f0);
  border: 4px solid #eee9ff;
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(91, 42, 240, 0.13);
  color: #fff;
  display: inline-flex;
  flex: 0 0 31px;
  font-size: 11px;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.journey-step.is-result > span {
  background: linear-gradient(135deg, #138cf4, #066ed9);
  border-color: #e4f1ff;
}

.journey-step strong {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.22;
}

.journey-grid {
  display: grid;
  grid-template-columns: 27% 50% 23%;
  min-height: 320px;
}

.journey-act {
  min-width: 0;
  padding: 0 17px 13px;
}

.journey-act + .journey-act {
  border-left: 1px solid rgba(209, 217, 232, 0.82);
}

.journey-act-head {
  margin-bottom: 23px;
  text-align: center;
}

.journey-act-head h3 {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  margin: 0;
}

.journey-local .journey-act-head h3 > span,
.journey-local .journey-act-head h3 > small {
  display: block;
}

.journey-local .journey-act-head h3 > small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.35;
  margin-top: 3px;
}

.journey-result .journey-act-head h3 { color: var(--blue); }

.journey-act-head > span {
  background: linear-gradient(90deg, rgba(111, 59, 255, 0.6), rgba(111, 59, 255, 0.12));
  display: block;
  height: 1px;
  margin-top: 13px;
  position: relative;
  width: 100%;
}

.journey-result .journey-act-head > span {
  background: linear-gradient(90deg, rgba(8, 124, 240, 0.56), rgba(8, 124, 240, 0.1));
}

.journey-act-head > span::after {
  background: var(--violet);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: -1px;
  transform: translateX(-50%);
  width: 54px;
}

.journey-result .journey-act-head > span::after { background: var(--blue); }

.journey-helper {
  color: #59657a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 15px;
  text-align: center;
}

.journey-link-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #7e55ff;
  border-radius: 8px;
  color: var(--violet);
  display: flex;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  height: 40px;
  justify-content: space-between;
  padding: 0 8px 0 11px;
}

.journey-link-row > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-link-row button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 28px;
}

.journey-link-row button:hover,
.journey-link-row button:focus-visible {
  background: #f0ebff;
  outline: none;
}

.journey-link-row button img {
  height: 15px;
  width: 15px;
}

.journey-qr {
  display: flex;
  justify-content: center;
  margin: 15px auto 13px;
}

.journey-qr img {
  height: 92px;
  image-rendering: pixelated;
  width: 92px;
}

.journey-share-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.journey-share-actions button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #4f5a6d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding: 0;
}

.journey-share-actions button:hover .share-action-icon,
.journey-share-actions button:focus-visible .share-action-icon {
  border-color: #9a7cff;
  box-shadow: 0 7px 16px rgba(80, 44, 190, 0.11);
  transform: translateY(-1px);
}

.journey-share-actions button:focus-visible { outline: none; }

.share-action-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dde3ed;
  border-radius: 999px;
  display: flex;
  height: 42px;
  justify-content: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 42px;
}

.share-action-icon img {
  height: 19px;
  opacity: 0.75;
  width: 19px;
}

.share-action-icon.is-whatsapp {
  background: #1fc270;
  border-color: #1fc270;
}

.share-action-icon.is-whatsapp img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.journey-share-actions small {
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 1.1;
  white-space: nowrap;
}

.journey-local { padding-left: 23px; padding-right: 23px; }

.journey-local-labels {
  display: grid;
  font-family: var(--font-body);
  font-size: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 14px;
  padding: 0 2px;
  text-align: center;
}

.journey-local-labels strong { font-weight: 750; }

.journey-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  position: relative;
}

.journey-country-list,
.journey-rail-list {
  display: grid;
  gap: 8px;
}

.journey-country,
.journey-rail {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dfe4ee;
  border-radius: 8px;
  color: #27334a;
  cursor: pointer;
  display: grid;
  font-family: var(--font-body);
  height: 50px;
  min-width: 0;
  padding: 0 11px;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.journey-country {
  grid-template-columns: 24px 26px minmax(0, 1fr) 13px;
}

.journey-rail {
  gap: 10px;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
}

.journey-country:hover,
.journey-country:focus-visible,
.journey-rail:hover,
.journey-rail:focus-visible {
  border-color: #ad97ef;
  outline: none;
  transform: translateY(-1px);
}

.journey-country.is-active,
.journey-rail.is-active {
  border-color: #7b4cff;
  box-shadow: 0 7px 17px rgba(86, 47, 205, 0.13);
}

.journey-country > img:not(.row-caret) {
  border-radius: 999px;
  height: 22px;
  object-fit: cover;
  width: 22px;
}

.journey-country b {
  color: #667086;
  font-size: 10px;
  font-weight: 750;
}

.journey-country span {
  font-size: 11px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-country .row-caret {
  height: 12px;
  opacity: 0.58;
  width: 12px;
}

.journey-rail > img {
  height: 27px;
  object-fit: contain;
  width: 27px;
}

.journey-rail b {
  font-size: 12px;
  font-weight: 750;
}

.rail-check {
  align-items: center;
  background: var(--violet);
  border-radius: 999px;
  display: flex;
  height: 19px;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
  width: 19px;
}

.journey-rail.is-active .rail-check { opacity: 1; transform: scale(1); }

.rail-check img {
  filter: brightness(0) invert(1);
  height: 11px;
  width: 11px;
}

.journey-selection-bridge {
  height: 100%;
  position: relative;
}

.journey-selection-bridge::before {
  background: linear-gradient(90deg, #7445ff, #5d32ed);
  content: "";
  height: 2px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: 24px;
}

.journey-selection-bridge::after,
.journey-selection-bridge > span::after {
  background: #7144f5;
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  top: 21px;
  width: 8px;
}

.journey-selection-bridge::after { left: -3px; }
.journey-selection-bridge > span::after { right: -3px; }

.journey-result {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.journey-result .journey-act-head { margin-bottom: 20px; width: 100%; }

.journey-success-mark {
  align-items: center;
  background: linear-gradient(145deg, #28ce7e, #09a95b);
  border: 6px solid #e8f9f1;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(24, 187, 101, 0.18), 0 11px 25px rgba(18, 181, 99, 0.18);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 12px;
  width: 58px;
}

.journey-success-mark img {
  filter: brightness(0) invert(1);
  height: 26px;
  width: 26px;
}

.journey-success-title {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0 0 6px;
}

.journey-result > small {
  color: #69748a;
  font-family: var(--font-body);
  font-size: 10px;
}

.journey-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 17px 0 12px;
}

.journey-settlement {
  align-items: center;
  display: flex;
  font-family: var(--font-body);
  font-size: 11px;
  gap: 7px;
  justify-content: center;
}

.journey-settlement > img {
  height: 24px;
  width: 24px;
}

.journey-settlement b { font-weight: 800; }

.journey-settlement > span {
  background: #eee7ff;
  border-radius: 999px;
  color: var(--violet);
  font-size: 9px;
  font-weight: 700;
  padding: 6px 9px;
}

.journey-history {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  gap: 4px;
  margin-top: 23px;
  text-decoration: none;
}

.journey-history img {
  height: 11px;
  width: 11px;
}

.journey-history:hover,
.journey-history:focus-visible {
  color: var(--violet);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deals-section {
  background:
    radial-gradient(circle at 83% 31%, rgba(103, 82, 255, 0.09), transparent 31%),
    linear-gradient(180deg, #f9fbff, #fff);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 56px 0 48px;
  position: relative;
}

.deals-section::after {
  border: 1px solid rgba(111, 93, 255, 0.1);
  border-radius: 50%;
  content: "";
  height: 520px;
  pointer-events: none;
  position: absolute;
  right: -255px;
  top: -295px;
  width: 720px;
}

.deals-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 270px minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.label-pill {
  align-items: center;
  background: #eee9ff;
  border-radius: 999px;
  color: var(--violet);
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.07em;
  padding: 8px 11px;
}

.label-pill img {
  filter: invert(39%) sepia(88%) saturate(5913%) hue-rotate(249deg) brightness(101%) contrast(105%);
  height: 13px;
  width: 13px;
}

.deals-copy h2,
.payout-copy h2 {
  font-size: clamp(36px, 3.15vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  margin: 27px 0 22px;
}

.deals-copy h2 em {
  background: linear-gradient(90deg, #2c8cff, #6258ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.deals-copy h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 12px;
}

.deals-copy > p,
.payout-copy p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.inline-button {
  font-size: 12px;
  margin-top: 26px;
  min-height: 44px;
  padding: 0 18px;
}

.inline-button img {
  filter: invert(34%) sepia(92%) saturate(6070%) hue-rotate(249deg) brightness(99%) contrast(104%);
  height: 17px;
  width: 17px;
}

.proof-list {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.proof-list li {
  border-top: 1px solid var(--line-soft);
  min-height: 47px;
}

.proof-list button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111827;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  gap: 14px;
  min-height: 47px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.proof-list button::before {
  background: var(--violet);
  content: "";
  height: 0;
  left: -10px;
  position: absolute;
  transition: height 180ms ease;
  width: 2px;
}

.proof-list button:hover,
.proof-list button:focus-visible,
.proof-list button.is-active { color: #050b16; }
.proof-list button:hover::before,
.proof-list button:focus-visible::before,
.proof-list button.is-active::before { height: 26px; }
.proof-list button:focus-visible { outline: 2px solid rgba(102, 51, 255, 0.35); outline-offset: 3px; }

.proof-list img {
  filter: invert(36%) sepia(93%) saturate(6277%) hue-rotate(249deg) brightness(101%) contrast(105%);
  height: 17px;
  width: 17px;
}

.deal-workspace {
  background:
    radial-gradient(circle at 77% 26%, rgba(66, 92, 255, 0.17), transparent 31%),
    linear-gradient(145deg, #0e1b2e, #06101e 76%);
  border: 1px solid rgba(65, 102, 153, 0.47);
  border-radius: 17px;
  box-shadow: 0 24px 58px rgba(5, 13, 27, 0.25);
  color: #fff;
  min-height: 680px;
  padding: 28px 30px 30px;
}

.deal-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.deal-head small {
  color: #25e0d0;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
}

.deal-head h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
  margin: 8px 0 0;
}

.deal-head > span {
  background: rgba(119, 73, 255, 0.12);
  border: 1px solid rgba(131, 97, 255, 0.45);
  border-radius: 999px;
  color: #bca8ff;
  font-size: 10px;
  letter-spacing: 0.07em;
  padding: 8px 13px;
}

.deal-flow-summary small,
.deal-execution-label {
  color: #9cabc1;
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.deal-flow-summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(165, 184, 217, 0.17);
  border-radius: 10px;
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(82px, 1fr) 14px minmax(124px, 1.34fr) 14px minmax(82px, 1fr) minmax(64px, .72fr) minmax(58px, .65fr);
  margin-top: 30px;
  min-height: 99px;
  padding: 15px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.deal-entity {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: 0;
}

.deal-entity > span:last-child,
.deal-contract-entity { min-width: 0; }

.deal-entity strong,
.deal-inline-fact strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  margin-top: 5px;
}

.deal-contract-entity > strong {
  font-size: 11px;
  line-height: 1.2;
  margin: 0;
}

.deal-entity-icon {
  align-items: center;
  border: 1px solid rgba(142, 154, 182, 0.48);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.deal-entity-icon.teal { border-color: rgba(22, 211, 190, .7); color: #1ce0c8; }
.deal-entity-icon.violet { border-color: rgba(119, 73, 255, .64); color: #9278ff; }
.deal-entity-icon img {
  filter: invert(1);
  height: 17px;
  opacity: .94;
  width: 17px;
}

.deal-flow-arrow {
  filter: invert(62%) sepia(97%) saturate(354%) hue-rotate(122deg) brightness(102%) contrast(96%);
  height: 14px;
  width: 14px;
}

.deal-flow-arrow:nth-of-type(2) {
  filter: invert(47%) sepia(92%) saturate(2793%) hue-rotate(234deg) brightness(101%) contrast(102%);
}

.deal-inline-fact { min-width: 0; }
.deal-inline-fact strong { white-space: nowrap; }

.deal-execution {
  border-top: 1px solid rgba(165, 184, 217, 0.11);
  margin-top: 35px;
  padding-top: 19px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.deal-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  position: relative;
}

.deal-progress-line {
  background: linear-gradient(90deg, #1fd9bd 0 29%, #35b7eb 43%, #6d3cff 67%, #35435c 90%);
  height: 3px;
  left: 9.6%;
  position: absolute;
  right: 9.6%;
  top: 18px;
}

.deal-stage {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  gap: 9px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.deal-stage-node {
  align-items: center;
  background: #0c1727;
  border: 1px solid #8390a3;
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 38px;
}

.deal-stage-node img { filter: invert(1); height: 18px; width: 18px; }
.deal-stage.is-complete .deal-stage-node { background: #fff; border-color: #43f5d3; box-shadow: 0 0 16px rgba(40, 232, 198, .55); }
.deal-stage.is-complete .deal-stage-node img { filter: none; }
.deal-stage.is-current .deal-stage-node { background: #5b5ff1; border: 2px solid #fff; box-shadow: 0 0 20px rgba(92, 97, 255, .92); }
.deal-stage.is-review .deal-stage-node { border-color: #5f84ff; box-shadow: 0 0 13px rgba(74, 102, 255, .48); }
.deal-stage.is-review small { color: #4c97ff; }
.deal-stage small { color: #a5b0c3; font-family: var(--font-body); font-size: 7px; font-weight: 700; }
.deal-stage:hover .deal-stage-node,
.deal-stage:focus-visible .deal-stage-node { transform: translateY(-2px); }
.deal-stage:focus-visible { outline: none; }
.deal-stage:focus-visible .deal-stage-node { box-shadow: 0 0 0 3px rgba(112, 70, 255, .38), 0 0 20px rgba(92, 97, 255, .65); }
.deal-stage.is-inspected .deal-stage-node { box-shadow: 0 0 0 3px rgba(112, 70, 255, .32), 0 0 22px rgba(92, 97, 255, .72); transform: translateY(-2px); }

.deal-obligation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.deal-pair { position: relative; }
.deal-pair::before {
  border-left: 1px dashed rgba(164, 177, 200, .57);
  content: "";
  height: 42px;
  left: 50%;
  position: absolute;
  top: -42px;
}

.deal-obligation,
.deal-evidence {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(160, 177, 204, .35);
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: 100%;
}

.deal-obligation {
  align-items: center;
  display: grid;
  gap: 7px 9px;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  min-height: 112px;
  padding: 17px 15px 14px;
}

.deal-index {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--font-body);
  font-size: 11px;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.deal-index.green { color: #22d3a4; }
.deal-index.purple { color: #a071ff; }
.deal-index.blue { color: #438cff; }
.deal-obligation b,
.deal-evidence b { display: block; font-size: 11px; font-weight: 900; line-height: 1.18; }
.deal-obligation small,
.deal-evidence small { color: #9aa8bd; display: block; font-family: var(--font-body); font-size: 8px; font-weight: 700; margin-top: 3px; }
.deal-obligation > strong { font-size: 12px; font-weight: 900; }

.deal-meter {
  background: #243148;
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 4px;
  overflow: hidden;
}
.deal-meter i { display: block; height: 100%; }
.deal-meter.green i { background: #22d3a4; width: 50%; }
.deal-meter.purple i { background: #8a5cff; width: 30%; }
.deal-meter.blue i { background: #438cff; width: 20%; }

.deal-evidence {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 24px minmax(0, 1fr) 20px;
  margin-top: 20px;
  min-height: 76px;
  padding: 12px 14px;
  position: relative;
}
.deal-evidence::before {
  border-left: 1px solid rgba(164, 177, 200, .45);
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: -21px;
}
.deal-evidence > img:first-child { filter: invert(1); height: 21px; width: 21px; }
.deal-evidence-status {
  border: 1px solid #17c996;
  border-radius: 50%;
  filter: invert(74%) sepia(67%) saturate(802%) hue-rotate(104deg) brightness(91%) contrast(89%);
  height: 19px;
  padding: 3px;
  width: 19px;
}

.deal-obligation:hover,
.deal-obligation:focus-visible,
.deal-evidence:hover,
.deal-evidence:focus-visible { background: rgba(255,255,255,.055); border-color: rgba(117, 83, 255, .78); outline: none; transform: translateY(-1px); }

.green-text { color: #2bd99a !important; }
.purple-text { color: #a681ff; }
.blue-text { color: #438cff; }

[data-deal-region].is-focused {
  border-color: rgba(114, 77, 255, .82);
  box-shadow: 0 0 0 3px rgba(105, 65, 255, .12), 0 0 24px rgba(83, 69, 255, .16);
}
.deal-obligation.is-focused,
.deal-evidence.is-focused { border-color: rgba(114, 77, 255, .82); box-shadow: 0 0 0 2px rgba(105, 65, 255, .12); }

.context-note,
.payout-note {
  color: #5e6980;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin: 22px 0 0;
  text-align: center;
}

.context-note { align-items: center; display: flex; gap: 7px; justify-content: center; }
.context-note img {
  filter: invert(39%) sepia(91%) saturate(5793%) hue-rotate(248deg) brightness(101%) contrast(104%);
  height: 14px;
  width: 14px;
}
.payout-note {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-content: center;
}

.payout-note img {
  filter: invert(32%) sepia(99%) saturate(4582%) hue-rotate(251deg) brightness(100%) contrast(103%);
  height: 16px;
  width: 16px;
}

.payout-section {
  background:
    radial-gradient(circle at 4% 92%, rgba(112, 63, 255, 0.12), transparent 23%),
    radial-gradient(circle at 78% 20%, rgba(94, 87, 255, 0.045), transparent 34%),
    linear-gradient(118deg, #ffffff, #fbfcff 72%, #f7f9ff);
  overflow: hidden;
  padding: 46px 0 28px;
  position: relative;
}

.payout-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 350px minmax(0, 1fr);
}

.payout-copy h2 {
  font-size: clamp(36px, 3vw, 44px);
  line-height: 1.01;
  margin: 0;
  text-wrap: balance;
}

.payout-copy h2 em {
  background: linear-gradient(100deg, #3f78ff, #7139ff 68%, #5c20ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  white-space: nowrap;
}

.payout-copy p {
  color: #59647b;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 28px 0 0;
}

.payout-card {
  background: #fff;
  border: 1px solid #d8def0;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(24, 33, 64, 0.08);
  overflow: hidden;
}

.payout-card-head {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(180px, 0.78fr) minmax(420px, 1.42fr);
  padding: 24px 28px 18px;
}

.payout-card-head .mini-label {
  font-size: 16px;
  margin: 0;
}

.payout-tabs {
  display: grid;
  grid-template-columns: 0.82fr 1.3fr;
}

.payout-tabs button {
  align-items: center;
  background: #fff;
  border: 1px solid #d9e0ef;
  color: #4e596f;
  cursor: pointer;
  display: flex;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  height: 48px;
  justify-content: center;
  padding: 0 14px;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.payout-tabs button:first-child {
  border-radius: 9px 0 0 9px;
}

.payout-tabs button:last-child {
  border-radius: 0 9px 9px 0;
  margin-left: -1px;
}

.payout-tabs button:hover,
.payout-tabs button:focus-visible {
  border-color: #7c58ff;
  outline: none;
  position: relative;
  z-index: 1;
}

.payout-tabs button img {
  height: 17px;
  opacity: .82;
  width: 17px;
}

.payout-tabs button.is-active {
  background: linear-gradient(135deg, #6944ff, #5716f4);
  border-color: transparent;
  box-shadow: 0 8px 19px rgba(92, 39, 245, 0.22);
  color: #fff;
}

.payout-tabs button.is-active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.payout-comparison {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1.18fr .9fr 1.34fr;
  padding: 14px 28px 22px;
}

.payout-origin,
.payout-destination {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 218px;
  padding: 24px 16px;
  text-align: center;
}

.payout-origin {
  background: linear-gradient(135deg, #fff, #fafbff);
  border: 1px solid #dbe1ef;
  border-radius: 12px 0 0 12px;
}

.payout-origin small,
.payout-destination > small {
  color: #3f4960;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
}

.payout-origin > strong {
  align-items: center;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 41px);
  font-weight: 400;
  gap: 10px;
  margin: 28px 0 15px;
  white-space: nowrap;
}

.payout-origin > strong img {
  height: 45px;
  width: 45px;
}

.payout-origin > em {
  color: #515c72;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
}

.payout-conversion {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #ded9ff;
  border-top: 1px solid #ded9ff;
  display: grid;
  grid-template-rows: 1fr 36px 1fr;
  isolation: isolate;
  min-width: 0;
  padding: 12px 0;
  position: relative;
  text-align: center;
}

.payout-conversion::before {
  background: linear-gradient(90deg, #eee9ff 0%, #fafaff 20%, #fff 50%, #fafaff 80%, #eee9ff 100%);
  content: "";
  inset: -1px 0;
  -webkit-mask-image:
    radial-gradient(ellipse 22% 47% at left center, transparent 97%, #000 100%),
    radial-gradient(ellipse 22% 47% at right center, transparent 97%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 22% 47% at left center, transparent 97%, #000 100%),
    radial-gradient(ellipse 22% 47% at right center, transparent 97%, #000 100%);
  mask-composite: intersect;
  position: absolute;
  z-index: 0;
}

.conversion-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.conversion-item small {
  color: #6345ef;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.conversion-item strong {
  color: #6334f2;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  margin: 5px 0 4px;
}

.conversion-item em {
  color: #606b80;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.conversion-route {
  align-items: center;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  margin: 0 -17px;
  position: relative;
  z-index: 2;
}

.conversion-route i {
  border-top: 2px dashed #c9bfff;
  height: 0;
}

.conversion-route span {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(95, 61, 255, .1);
  color: #6431ff;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.conversion-route img {
  filter: invert(28%) sepia(95%) saturate(5576%) hue-rotate(251deg) brightness(103%) contrast(103%);
  height: 15px;
  width: 15px;
}

.payout-destination {
  background: linear-gradient(135deg, #fbfffd, #f5fbf8);
  border: 1px solid #cfe7db;
  border-radius: 0 12px 12px 0;
}

.payout-destination > strong {
  color: #1cbc74;
  font-family: var(--font-body);
  font-size: clamp(32px, 3.2vw, 45px);
  font-weight: 800;
  letter-spacing: -1.4px;
  margin: 17px 0 19px;
}

.payout-beneficiary {
  border-top: 1px solid #dce9e2;
  font-family: var(--font-body);
  padding-top: 18px;
  width: 100%;
}

.payout-beneficiary > span,
.payout-beneficiary em {
  color: #687488;
  display: block;
  font-size: 11px;
  font-style: normal;
}

.payout-beneficiary b {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 7px;
  justify-content: center;
  margin: 8px 0;
}

.payout-beneficiary b img {
  filter: invert(20%) sepia(18%) saturate(1476%) hue-rotate(177deg) brightness(91%) contrast(91%);
  height: 18px;
  width: 18px;
}

.payout-bottom {
  align-items: center;
  border-top: 1px solid #e1e5ef;
  display: grid;
  gap: 26px;
  grid-template-columns: .7fr 1.3fr;
  min-height: 88px;
  padding: 16px 28px;
}

.payout-status {
  align-items: center;
  display: flex;
  gap: 20px;
}

.payout-status small {
  color: #59647a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
}

.pending-pill {
  background: #fff1c9;
  border-radius: 999px;
  color: #aa6e08;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 13px;
}

.confirm-payout {
  font-family: var(--font-display);
  font-size: 13px;
  min-height: 52px;
  padding: 0 18px;
  width: 100%;
}

.confirm-payout:hover,
.confirm-payout:focus-visible {
  transform: translateY(-1px);
}

.final-cta {
  padding: 28px 0 30px;
}

.cta-card {
  align-items: center;
  background:
    radial-gradient(circle at 80% 40%, rgba(111, 59, 255, 0.08), transparent 30%),
    linear-gradient(100deg, #fff, #faf9ff);
  border: 1px solid #dedaf5;
  border-radius: 13px;
  display: grid;
  grid-template-columns: 270px 1px 1fr auto;
  min-height: 126px;
  padding: 24px 62px;
}

.cta-card h2 {
  font-size: clamp(24px, 1.9vw, 31px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}

.cta-divider {
  background: var(--violet);
  height: 65px;
  opacity: 0.65;
}

.cta-card > p {
  color: #47536b;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  padding-left: 60px;
}

.cta-actions {
  display: flex;
  gap: 16px;
}

.cta-actions .button {
  font-size: 12px;
  min-height: 46px;
  min-width: 128px;
}

.compliance-section {
  background:
    radial-gradient(ellipse at 82% 28%, rgba(112, 84, 255, 0.035), transparent 36%),
    radial-gradient(ellipse at 34% 78%, rgba(41, 182, 255, 0.028), transparent 40%),
    #fff;
  overflow: hidden;
  padding: 0;
}

.compliance-grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(270px, 1.55fr) repeat(4, minmax(130px, 1fr));
  overflow: hidden;
  padding: 32px 0;
  position: relative;
}

.compliance-rail {
  height: 92px;
  left: clamp(238px, 30.5%, 360px);
  object-fit: fill;
  pointer-events: none;
  position: absolute;
  right: 22px;
  top: 17px;
  width: calc(100% - clamp(238px, 30.5%, 360px) - 22px);
  z-index: 1;
}

.compliance-intro {
  align-self: center;
  padding: 0 42px 0 0;
  position: relative;
  z-index: 2;
}

.compliance-label {
  align-items: center;
  background: #f0ebff;
  border-radius: 999px;
  color: #6434f5;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: .01em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.compliance-label img {
  filter: invert(27%) sepia(98%) saturate(5109%) hue-rotate(251deg) brightness(101%) contrast(93%);
  height: 13px;
  width: 13px;
}

.compliance-intro h2 {
  color: #07091c;
  font-size: clamp(30px, 2.7vw, 36px);
  font-weight: 400;
  line-height: 1.04;
  margin: 23px 0 0;
  max-width: 310px;
}

.compliance-intro h2 em {
  background: linear-gradient(100deg, #19bce8, #5a8fff 45%, #7139ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.compliance-intro p {
  color: rgba(7, 9, 28, .62);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0 0;
  max-width: 330px;
}

.compliance-card {
  border-left: 1px solid rgba(12, 18, 39, .09);
  min-height: 184px;
  padding: 0 18px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.compliance-icon {
  align-items: center;
  background:
    radial-gradient(circle at 68% 28%, rgba(53, 203, 244, .1), transparent 42%),
    #fff;
  border: 1px solid rgba(81, 102, 169, .14);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(58, 75, 120, .09), inset 0 0 0 6px rgba(88, 103, 171, .04);
  display: flex;
  height: 56px;
  justify-content: center;
  margin: 0 auto 22px;
  width: 56px;
}

.compliance-icon img {
  filter: invert(12%) sepia(29%) saturate(1156%) hue-rotate(193deg) brightness(88%) contrast(97%);
  height: 25px;
  width: 25px;
}

.compliance-card h3 {
  color: #11152e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.22;
  margin: 0 auto;
  max-width: 165px;
}

.compliance-card p {
  color: rgba(17, 21, 46, .62);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.48;
  margin: 14px auto 0;
  max-width: 170px;
}

footer {
  border-top: 1px solid var(--line-soft);
  padding: 25px 0;
}

.footer-inner {
  align-items: center;
  display: grid;
  font-size: 12px;
  font-weight: 400;
  grid-template-columns: 150px 1fr auto;
}

.footer-inner > img {
  height: auto;
  width: 105px;
}

.footer-inner nav {
  display: flex;
  gap: 31px;
  justify-content: center;
}

.footer-inner a {
  color: #4e5a70;
  text-decoration: none;
}

.footer-inner a:hover { color: var(--violet); }

.toast {
  background: #071126;
  border-radius: 9px;
  bottom: 24px;
  color: #fff;
  font-size: 13px;
  left: 50%;
  opacity: 0;
  padding: 12px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 100;
}

.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.journey-surface.is-demonstrating {
  box-shadow: 0 0 0 4px rgba(111, 59, 255, 0.12), 0 24px 60px rgba(55, 30, 140, 0.13);
}

.journey-surface.is-demonstrating .journey-act {
  animation: demoPulse 2.4s ease both;
}

.journey-surface.is-demonstrating .journey-act:nth-of-type(2) { animation-delay: 240ms; }
.journey-surface.is-demonstrating .journey-act:nth-of-type(3) { animation-delay: 480ms; }

@keyframes demoPulse {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal 640ms ease both;
  }

  .reveal:nth-child(2) { animation-delay: 70ms; }
  .reveal:nth-child(3) { animation-delay: 130ms; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    gap: 32px;
    grid-template-columns: 260px minmax(0, 636px);
  }

  .payment-product {
    grid-template-columns: minmax(0, 1fr) 190px;
  }
  .qr-frame img { height: 232px; width: 232px; }
  .summary-card { padding-left: 14px; padding-right: 14px; }
  .journey-step strong { font-size: 10px; }
  .journey-act { padding-left: 13px; padding-right: 13px; }
  .journey-local { padding-left: 16px; padding-right: 16px; }
  .journey-local-grid { grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr); }
  .footer-inner nav { gap: 18px; }
}

@media (max-width: 960px) {
  .shell { width: calc(100% - 36px); }

  .hero { padding-top: 58px; }
  .hero-grid {
    gap: 24px;
    grid-template-columns: minmax(220px, 0.7fr) minmax(520px, 1.9fr);
  }

  .payment-product { grid-template-columns: minmax(0, 1fr) 184px; }

  .journey-steps {
    gap: 8px 0;
    grid-template-columns: 40% 60%;
    padding-bottom: 15px;
  }

  .journey-steps .journey-step:nth-child(3) { grid-column: 2; grid-row: 1; padding-left: 52%; }
  .journey-steps .journey-step:nth-child(4) { grid-column: 1 / -1; justify-content: center; }

  .journey-grid { grid-template-columns: 38% 62%; }
  .journey-result {
    border-left: 0 !important;
    border-top: 1px solid rgba(209, 217, 232, 0.82);
    grid-column: 1 / -1;
    padding-top: 25px;
  }
  .journey-result .journey-act-head { max-width: 420px; }

  .deals-grid,
  .payout-grid {
    gap: 34px;
    grid-template-columns: 240px 1fr;
  }
  .payout-grid { grid-template-columns: 300px 1fr; }

  .deal-workspace { padding: 20px; }
  .deal-flow-summary { gap: 5px; padding-left: 9px; padding-right: 9px; }
  .deal-entity { gap: 6px; }
  .deal-entity-icon { height: 31px; width: 31px; }
  .deal-entity-icon img { height: 15px; width: 15px; }
  .deal-entity strong,
  .deal-inline-fact strong { font-size: 10px; }
  .deal-contract-entity > strong { font-size: 9px; }
  .deal-obligation { padding-left: 10px; padding-right: 10px; }
  .payout-card-head { grid-template-columns: 148px minmax(0, 1fr); padding-left: 20px; padding-right: 20px; }
  .payout-tabs button { font-size: 12px; padding-left: 8px; padding-right: 8px; }
  .payout-comparison { padding-left: 20px; padding-right: 20px; }
  .payout-origin,
  .payout-destination { min-height: 205px; padding-left: 10px; padding-right: 10px; }
  .payout-origin > strong { font-size: 30px; }
  .payout-origin > strong img { height: 38px; width: 38px; }
  .payout-destination > strong { font-size: 34px; }
  .payout-bottom { padding-left: 20px; padding-right: 20px; }

  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 0 24px;
  }
  .compliance-rail { display: none; }
  .compliance-intro { grid-column: 1 / -1; padding: 0 0 30px; }
  .compliance-intro h2 { max-width: 440px; }
  .compliance-intro p { max-width: 500px; }
  .compliance-card { border-top: 1px solid rgba(12, 18, 39, .08); min-height: 240px; padding: 28px 18px 22px; }
  .compliance-card:nth-of-type(odd) { border-left: 0; }

  .cta-card { grid-template-columns: 230px 1px 1fr; padding: 24px 35px; }
  .cta-actions { grid-column: 1 / -1; justify-content: flex-end; margin-top: 20px; }
}

@media (max-width: 820px) {
  .hero-grid {
    gap: 56px;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .hero-copy {
    margin: 0 auto;
    max-width: 440px;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    margin: 0 auto;
  }

  .payment-product {
    margin: 0 auto;
    max-width: 662px;
    width: 100%;
  }

  .deals-grid { grid-template-columns: 1fr; }
  .deals-copy { max-width: 500px; }
  .deal-visual-wrap { width: 100%; }
}

@media (max-width: 720px) {
  .pay-topbar-logo { width: 116px; }
  .pay-login-button { min-width: 62px; }

  .hero {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .hero-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .hero-copy { text-align: center; }
  .hero-copy h1 {
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.12;
  }
  .hero-copy h1 span { transform: none; }
  .hero-lead {
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
    max-width: 347px;
  }
  .hero-actions { margin: 0 auto; width: min(100%, 330px); }
  .hero-actions .button { font-size: 15px; min-height: 58px; }
  .payment-product {
    grid-template-columns: minmax(0, 1fr) 184px;
  }
  .qr-product { height: 100%; margin: 0; max-width: none; width: auto; }
  .qr-frame img { height: min(58vw, 244px); width: min(58vw, 244px); }

  .section-title { font-size: 25px; }
  .flow-section { padding-bottom: 55px; }
  .journey-surface { padding: 16px 14px 18px; }
  .journey-steps {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .journey-steps .journey-step:nth-child(3),
  .journey-steps .journey-step:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    padding-left: 9px;
  }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-act { padding: 18px 18px 24px; }
  .journey-act + .journey-act {
    border-left: 0;
    border-top: 1px solid rgba(209, 217, 232, 0.82);
  }
  .journey-share { padding-top: 6px; }
  .journey-link-row { margin-left: auto; margin-right: auto; max-width: 350px; }
  .journey-share-actions { margin-left: auto; margin-right: auto; max-width: 350px; }
  .journey-local { padding-top: 24px; }
  .journey-local-grid { grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr); }
  .journey-result { grid-column: auto; }

  .deals-section,
  .payout-section { padding: 54px 0; }
  .deals-grid,
  .payout-grid { grid-template-columns: 1fr; }
  .deals-copy h2,
  .payout-copy h2 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.06;
  }
  .deals-copy { max-width: 500px; }
  .deal-workspace { padding: 22px; }

  .payout-copy { max-width: 480px; }
  .payout-card-head { grid-template-columns: minmax(155px, .72fr) minmax(0, 1.5fr); }
  .payout-tabs { grid-template-columns: .75fr 1.35fr; }

  .compliance-section { padding-bottom: 0; }
  .compliance-intro h2 { font-size: clamp(34px, 9vw, 42px); line-height: 1.06; }
  .compliance-intro p { font-size: 15px; line-height: 1.5; }

  .cta-card { display: flex; flex-direction: column; padding: 32px 24px; text-align: center; }
  .cta-card h2 { font-size: clamp(31px, 7.4vw, 40px); }
  .cta-divider { height: 1px; margin: 22px 0; width: 80px; }
  .cta-card > p { padding: 0; }
  .cta-actions { flex-direction: column; margin-top: 24px; width: 100%; }
  .cta-actions .button { width: 100%; }

  .footer-inner { gap: 25px; grid-template-columns: 1fr; justify-items: center; }
  .footer-inner { font-size: 15px; }
  .footer-inner nav { flex-wrap: wrap; gap: 15px 24px; }
}

@media (max-width: 600px) {
  .payment-product {
    grid-template-columns: 1fr;
    height: auto;
  }

  .qr-product { height: 440px; }

  .payment-summary {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .rail-lines { display: none; }

  .journey-step { padding-left: 4px; padding-right: 4px; }
  .journey-step > span { flex-basis: 28px; height: 28px; width: 28px; }
  .journey-step strong { font-size: 9px; }
  .journey-local { padding-left: 13px; padding-right: 13px; }
  .journey-local-labels { font-size: 10px; }
  .journey-local-grid { grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr); }
  .journey-country,
  .journey-rail { height: 48px; padding-left: 8px; padding-right: 8px; }
  .journey-country { grid-template-columns: 22px 23px minmax(0, 1fr) 10px; }
  .journey-rail { gap: 7px; grid-template-columns: 24px minmax(0, 1fr) 18px; }
  .journey-country > img:not(.row-caret) { height: 20px; width: 20px; }
  .journey-rail > img { height: 23px; width: 23px; }
  .journey-selection-bridge::before { top: 23px; }
  .journey-selection-bridge::after,
  .journey-selection-bridge > span::after { top: 20px; }

  .deal-head { align-items: flex-start; gap: 12px; }
  .deal-head h3 { font-size: 16px; }
  .deal-head > span { font-size: 8px; padding: 6px 9px; }
  .deal-flow-summary {
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }
  .deal-contract-entity { grid-column: 1 / -1; grid-row: 1; }
  .deal-flow-arrow { display: none; }
  .deal-entity strong,
  .deal-inline-fact strong { font-size: 11px; }
  .deal-timeline { margin-left: -5px; margin-right: -5px; }
  .deal-stage-node { height: 32px; width: 32px; }
  .deal-stage-node img { height: 15px; width: 15px; }
  .deal-progress-line { left: 10%; right: 10%; top: 15px; }
  .deal-stage small { font-size: 6px; }
  .deal-obligation-grid { gap: 19px; grid-template-columns: 1fr; margin-top: 30px; }
  .deal-pair::before { display: none; }
  .deal-evidence { margin-top: 9px; }
  .deal-evidence::before { display: none; }
}

@media (max-width: 440px) {
  .shell { width: calc(100% - 28px); }
  .pay-topbar-inner { width: calc(100% - 24px); }
  .pay-topbar-logo { width: 105px; }
  .pay-topbar-actions { gap: 7px; }
  .pay-login-button { min-height: 28px; min-width: 58px; padding: 0 10px; }

  .hero-copy h1 { font-size: clamp(36px, 10.2vw, 46px); }
  .payment-product {
    gap: 14px;
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px;
  }
  .qr-product { height: 440px; }
  .payment-summary {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .rail-lines { display: none; }
  .qr-ribbon { font-size: 13px; height: 42px; top: -21px; width: 205px; }
  .qr-utilities { right: 12px; top: 18px; }
  .qr-utilities button { height: 34px; width: 34px; }
  .qr-frame { padding: 12px; }
  .qr-frame img { height: 220px; width: 220px; }
  .qr-mark { height: 58px; width: 58px; }
  .qr-mark img { height: 78px; width: 78px; }
  .qr-domain { font-size: 14px; }
  .qr-handle { font-size: 20px; }

  .journey-surface { padding-left: 8px; padding-right: 8px; }
  .journey-step { align-items: flex-start; }
  .journey-step strong { line-height: 1.18; }
  .journey-act { padding-left: 11px; padding-right: 11px; }
  .journey-link-row { font-size: 9px; }
  .journey-local { padding-left: 8px; padding-right: 8px; }
  .journey-country { grid-template-columns: 22px minmax(0, 1fr) 10px; }
  .journey-country b { display: none; }
  .journey-country span { font-size: 10px; }
  .journey-rail b { font-size: 10px; }
  .journey-share-actions small { font-size: 8px; }
  .journey-amount { font-size: 39px; }

  .deal-workspace { min-height: auto; padding: 18px 14px; }
  .deal-head { gap: 10px; }
  .deal-head h3 { font-size: 14px; }
  .deal-head > span { font-size: 8px; padding: 6px 8px; }
  .deal-flow-summary { padding: 13px 10px; }
  .deal-entity-icon { height: 30px; width: 30px; }
  .deal-stage small { font-size: 5.5px; }
  .deal-stage-node { height: 29px; width: 29px; }
  .deal-progress-line { top: 14px; }

  .payout-card-head {
    align-items: stretch;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 20px 16px 14px;
  }
  .payout-card-head .mini-label { font-size: 14px; }
  .payout-tabs { grid-template-columns: .72fr 1.28fr; }
  .payout-tabs button { font-size: 11px; height: 46px; }
  .payout-comparison {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 12px 16px 20px;
  }
  .payout-origin,
  .payout-destination { min-height: 184px; }
  .payout-origin { border-radius: 12px 12px 0 0; }
  .payout-origin > strong { margin-bottom: 10px; margin-top: 17px; }
  .payout-conversion {
    border-bottom: 0;
    border-left: 1px solid #ded9ff;
    border-right: 1px solid #ded9ff;
    border-top: 0;
    grid-template-columns: 1fr 42px 1fr;
    grid-template-rows: 1fr;
    min-height: 112px;
    padding: 12px 10px;
  }
  .payout-conversion::before { -webkit-mask-image: none; mask-image: none; }
  .conversion-route {
    grid-template-columns: 1fr;
    grid-template-rows: 28px 1fr 28px;
    height: 100%;
    margin: -14px 0;
  }
  .conversion-route i { border-left: 2px dashed #c9bfff; border-top: 0; height: 100%; justify-self: center; width: 0; }
  .conversion-route span { height: 28px; justify-self: center; transform: rotate(90deg); width: 28px; }
  .conversion-route img { height: 13px; width: 13px; }
  .conversion-item strong { font-size: 20px; }
  .payout-destination { border-radius: 0 0 12px 12px; min-height: 230px; }
  .payout-destination > strong { margin-bottom: 15px; margin-top: 12px; }
  .payout-beneficiary { padding-top: 14px; }
  .payout-bottom { gap: 15px; grid-template-columns: 1fr; padding: 18px 16px; }
  .payout-status { justify-content: space-between; }
  .confirm-payout { min-height: 50px; }
}
