@font-face {
  font-family: Inter;
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
/* Mira component recipes adapted from shadcn/ui (MIT). See licenses/shadcn-ui-LICENSE.md.
   Source: https://github.com/shadcn-ui/ui/blob/main/apps/v4/registry/styles/style-mira.css */
:root {
  --font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --background: #fafafa;
  --foreground: #171717;
  --card: #ffffff;
  --card-foreground: #171717;
  --primary: #2859d7;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --secondary-foreground: #262626;
  --muted: #f5f5f5;
  --muted-foreground: #656565;
  --accent: #f0f0f0;
  --accent-foreground: #171717;
  --border: #e5e5e5;
  --input: #d4d4d4;
  --ring: #737373;
  --destructive: #b42333;
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) * 1.4);
  --control-height: 1.75rem;
  --control-height-lg: 2rem;
  --card-spacing: 1rem;
  --dark: #0a0a0a;
  --dark-panel: #141414;
  --dark-line: #292929;
  --dark-muted: #a3a3a3;
  --paper: var(--background);
  --white: var(--card);
  --ink: var(--foreground);
  --line: var(--border);
  --blue: var(--primary);
  --blue-hover: #214cbd;
  --blue-ink: #2854c5;
  --container: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
h3 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
p {
  color: var(--muted-foreground);
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 88px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--blue-ink);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 40px;
}
.section-heading > p {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.75;
}
.button {
  min-height: var(--control-height-lg);
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background-clip: padding-box;
  font-size: 12px;
  line-height: 1.625;
  font-weight: 500;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
  cursor: pointer;
}
.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.button-primary:hover {
  background: var(--blue-hover);
}
.button span,
.text-link span,
.header-account-actions .button span {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  min-height: var(--control-height);
  border-radius: var(--radius-md);
}
.text-link:hover {
  color: var(--blue-ink);
}
:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ring) 50%, transparent);
  outline-offset: 2px;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: 12px;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* A quiet header: no moving decoration or floating container. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--dark);
  color: #f7f8fb;
  border-bottom: 1px solid var(--dark-line);
}
.header-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  fill: #f5f7ff;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--dark-muted);
  font-size: 12px;
}
.site-nav a:hover {
  color: #fff;
}
.header-account-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.account-login {
  display: inline-flex;
  align-items: center;
  min-height: var(--control-height-lg);
  padding: 5px 2px;
  border-radius: var(--radius-md);
  color: #d4d4d4;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.account-login:hover {
  color: #fff;
}
.menu-button,
.mobile-account-actions {
  display: none;
}
/* One hero artwork, one message. */
.hero {
  background: var(--dark);
  color: #f4f6fa;
  padding: 24px 0 0;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 520px;
}
.hero-copy {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: #96b5ff;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(52px, 5.25vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  color: #a3a3a3;
}
.hero-lead {
  max-width: 450px;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.hero-actions .text-link {
  color: #d4d4d4;
  font-size: 12px;
}
.hero-actions .text-link:hover {
  color: #fff;
}
.hero-note {
  font-size: 12px;
  color: #a3a3a3;
  margin-top: 20px;
}
.hero-art {
  align-self: center;
  position: relative;
  min-width: 0;
  max-width: 480px;
  justify-self: end;
}
.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mask-image:
    linear-gradient(to right, transparent, black 12%, black 88%, transparent),
    linear-gradient(to bottom, transparent, black 8%, black 86%, transparent);
  mask-composite: intersect;
}
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 16px 24px;
  font-size: 11px;
  letter-spacing: 0;
  color: #a3aab7;
}
/* Merchant benefits, prominent without decorative cards. */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  padding-block: 32px 36px;
  gap: 24px;
}
.hero-facts > div {
  min-width: 0;
}
.hero-facts dt {
  color: #f5f5f5;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.3;
}
.hero-facts dd {
  max-width: 240px;
  margin: 10px 0 0;
  color: var(--dark-muted);
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 850px) {
  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
  .hero-facts dt {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .hero-facts {
    margin-top: 32px;
    padding-block: 28px 32px;
    gap: 26px 20px;
  }
  .hero-facts dt {
    font-size: clamp(18px, 5vw, 24px);
  }
  .hero-facts dd {
    margin-top: 8px;
    font-size: 12px;
  }
}
/* Payment flow remains readable and still at every viewport. */
.platform-section {
  padding-bottom: 0;
}
.payment-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--foreground) 10%, transparent);
}
.payment-flow > div {
  padding: 20px;
  min-width: 0;
}
.payment-flow > div + div {
  border-left: 1px solid var(--line);
}
.step-heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.step-heading > span {
  font:
    11px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: #636d7e;
}
.step-heading h3 {
  font-size: 14px;
}
.tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: var(--muted);
  min-height: 2rem;
  width: max-content;
  max-width: 100%;
}
.tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 10px;
  min-height: 26px;
  border-radius: var(--radius-md);
}
.tabs button:hover {
  color: var(--foreground);
  background: var(--accent);
}
.tabs button.is-active {
  background: var(--card);
  color: var(--foreground);
  border-color: color-mix(in srgb, var(--foreground) 5%, transparent);
  box-shadow: 0 1px 2px #00000008;
}
.rail-tabs {
  margin-bottom: 16px;
}
.rail-tabs button {
  padding: 2px 16px;
}
.rail-tabs button.is-active {
  color: var(--foreground);
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
}
.payment-method svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #53647f;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.payment-flow p {
  font-size: 12px;
  line-height: 1.625;
  margin-top: 16px;
}
.routing-graphic {
  height: 139px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.routing-graphic svg {
  width: 100%;
  overflow: visible;
}
.routing-graphic .route-line {
  fill: none;
  stroke: #cbd3df;
  stroke-width: 1.3;
}
.routing-graphic .route-accent {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
}
.routing-graphic rect {
  fill: #f0f4ff;
  stroke: #ccd9fc;
  stroke-width: 1;
}
.routing-graphic .route-v {
  fill: var(--blue);
}
.wallet-graphic {
  margin-top: 38px;
  min-height: 125px;
}
.wallet-graphic-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.asset-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #cbd9ff;
  border-radius: 50%;
  color: var(--blue-ink);
  font-size: 19px;
  font-weight: 500;
}
.wallet-graphic strong {
  font-size: 12px;
  font-weight: 500;
}
.wallet-graphic strong > span {
  color: var(--muted-foreground);
  font-size: 11px;
  font-weight: 400;
}
.wallet-graphic small {
  display: block;
  font-size: 11px;
  margin-top: 3px;
  color: var(--muted-foreground);
}
.wallet-graphic-top > svg {
  margin-left: auto;
  width: 19px;
  height: 19px;
  stroke: #366d57;
  stroke-width: 1.6;
  fill: none;
}
.wallet-graphic-bottom {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted-foreground);
}
.wallet-graphic-bottom code {
  color: #394354;
  font-size: 11px;
}
.platform-footnote {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--muted-foreground);
  font-size: 11px;
}
.industries {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.industries p {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.industries p > span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted-foreground);
  margin-top: 5px;
}
.industries ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: -0.02em;
}
/* Pricing keeps the calculation visible instead of decorating it. */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pricing-copy > p:not(.eyebrow) {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.85;
}
.price-statement {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
}
.price-statement > strong {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1.2;
}
.price-statement > strong > span {
  font-size: 44px;
  font-weight: 400;
}
.price-statement p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.9;
}
.price-statement p > span {
  font-size: 12px;
  color: var(--muted-foreground);
}
.pricing-copy > .text-link {
  margin-top: 22px;
}
.calculator {
  padding: var(--card-spacing);
  background: var(--card);
  color: var(--card-foreground);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--foreground) 10%, transparent);
}
.calculator-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.calculator-heading h3 {
  font-size: 14px;
}
.calculator-heading > span {
  font-size: 10px;
  color: var(--secondary-foreground);
  padding: 2px 8px;
  background: var(--secondary);
  border-radius: 999px;
  line-height: 1.5;
  font-weight: 500;
  min-height: 20px;
}
.calculator-fields {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}
.calculator-field {
  min-width: 0;
}
.calculator-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--foreground);
}
.field-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  height: var(--control-height);
  min-height: var(--control-height);
  border: 1px solid var(--input);
  border-radius: var(--radius-md);
  padding: 2px 8px;
  background: color-mix(in srgb, var(--input) 20%, transparent);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field-wrap:focus-within {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ring) 30%, transparent);
}
.field-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  appearance: textfield;
  -moz-appearance: textfield;
  line-height: 1.625;
  height: 100%;
}
.field-wrap input::-webkit-inner-spin-button,
.field-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field-wrap select {
  border: 0;
  background: transparent;
  height: 100%;
  min-height: 0;
  max-width: 64px;
  font-size: 12px;
  color: var(--foreground);
  cursor: pointer;
}
.field-wrap > span {
  font-size: 12px;
  color: var(--muted-foreground);
  padding: 0 4px;
}
.field-error {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: var(--destructive);
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.field-wrap:has([aria-invalid="true"]) {
  border-color: #b02739;
}
.preset-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 20px;
  padding: 0;
  border: 0;
}
.preset-row legend {
  float: left;
  font-size: 12px;
  color: var(--muted-foreground);
  margin-right: auto;
  padding: 0;
  line-height: 28px;
}
.preset-row button {
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  color: var(--foreground);
  min-height: 28px;
  font-size: 12px;
  line-height: 1.625;
}
.preset-row button.is-active {
  background: var(--secondary);
  color: var(--foreground);
  border-color: var(--input);
}
.fee-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.fee-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 12px;
}
.fee-breakdown dt {
  color: var(--muted-foreground);
}
.fee-breakdown dd {
  font-variant-numeric: tabular-nums;
}
.fee-total {
  padding: 16px 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.fee-total > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.fee-total > div > span {
  font-size: 12px;
  font-weight: 500;
}
.fee-total strong {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--blue-ink);
}
.fee-total > p {
  text-align: right;
  font-size: 11px;
  margin-top: 5px;
}
.calculator-notice {
  font-size: 11px;
  line-height: 1.6;
}
.formula-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding: 12px 0 0;
  font-size: 12px;
  color: var(--foreground);
  background: none;
  text-align: left;
  min-height: 32px;
  gap: 12px;
}
.formula-toggle > span {
  font-size: 17px;
  font-family: Arial, sans-serif;
}
.formula-detail p {
  font-size: 12px;
  line-height: 1.625;
  margin-top: 14px;
}
/* Developer content uses a real text example, with no fake live activity. */
.developer-section {
  background: var(--dark);
  color: #edf0f7;
}
.developer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.developer-section .eyebrow {
  color: #96b5ff;
}
.developer-copy > p:not(.eyebrow) {
  max-width: 400px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark-muted);
  margin-top: 24px;
}
.integration-steps {
  list-style: none;
  margin: 24px 0 20px;
  padding: 0;
  color: #cbd1dd;
  font-size: 12px;
}
.integration-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}
.integration-steps li > span {
  color: #8693ab;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.developer-copy > .text-link {
  color: #e0e6f0;
}
.developer-copy > .text-link:hover {
  color: #9dbaff;
}
.integration-desk {
  min-width: 0;
  padding: var(--card-spacing);
  background: var(--card);
  color: var(--card-foreground);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--foreground) 10%, transparent);
}
.desk-tabs {
  margin-bottom: 4px;
}
.desk-tabs button {
  padding: 2px 10px;
}
.desk-tabs button.is-active,
.desk-tabs button:hover {
  color: var(--foreground);
}
.code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0 8px;
  font-size: 11px;
  color: #a9b3c6;
}
.code-bar > span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.code-bar b {
  font-weight: 500;
  color: #90b1ff;
  margin-right: 10px;
}
.code-bar button {
  color: var(--foreground);
  border: 1px solid var(--input);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--input) 30%, transparent);
  padding: 3px 8px;
  min-height: 28px;
  font-size: 12px;
  line-height: 1.625;
  white-space: nowrap;
}
.code-bar button:hover {
  background: var(--muted);
}
.request-panel pre {
  font:
    12px/1.75 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: #c2cbda;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 16px 0 24px;
}
.code-key {
  color: #c5cddb;
}
.code-value {
  color: #95b6ff;
}
.code-number {
  color: #c5cddb;
}
.webhook-example {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--dark-line);
  padding: 16px 0 0;
  color: #c9d1e0;
  font-size: 12px;
}
.webhook-example > span {
  color: #9da7b9;
}
.webhook-example code {
  color: #96b5ff;
  font-size: 11px;
}
.integration-note {
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.625;
  color: #939dae;
}
.link-panel {
  min-height: 290px;
  padding: 20px 0;
}
.link-preview-label {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #a0aab9;
}
.link-amount {
  font-size: 40px;
  letter-spacing: -0.04em;
  margin-top: 16px;
  line-height: 1.4;
}
.link-amount > span {
  margin-left: 12px;
  font-size: 12px;
  color: #9fa9ba;
  letter-spacing: 0;
}
.link-panel dl {
  margin: 19px 0;
}
.link-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  margin: 10px 0;
}
.link-panel dt {
  color: #9ca7bb;
}
.example-url {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border: 1px solid #303846;
  border-radius: var(--radius-md);
  min-width: 0;
}
.example-url svg {
  width: 18px;
  height: 18px;
  stroke: #9db7e9;
  fill: none;
  stroke-width: 1.4;
  flex-shrink: 0;
}
.example-url code {
  font-size: 10px;
  color: #b4c6e7;
  overflow-wrap: anywhere;
}
/* Coverage is concise, with the detailed route catalogue on demand. */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.coverage-grid > div {
  border-top: 1px solid #ccd2dc;
  padding-top: 22px;
}
.coverage-grid > div > span {
  font-size: 10px;
  color: #636e80;
}
.coverage-grid h3 {
  margin: 12px 0 8px;
  font-size: 14px;
}
.coverage-grid p {
  font-size: 12px;
  line-height: 1.75;
  max-width: 330px;
}
.network-directory {
  margin-top: 32px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--foreground) 10%, transparent);
  overflow: hidden;
}
.network-directory > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  cursor: pointer;
}
.network-directory > summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}
.network-directory > summary strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.network-directory > summary > span > span {
  display: block;
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 3px;
}
.details-plus {
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
  flex-shrink: 0;
}
.network-directory[open] > summary .details-plus {
  transform: rotate(180deg);
}
.provider-fee-explorer {
  padding: 0 16px 16px;
}
.directory-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.directory-heading h3 {
  font-size: 14px;
}
.directory-heading > span {
  font-size: 11px;
  color: var(--muted-foreground);
}
.provider-fee-controls {
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  background: transparent;
  padding: 0;
}
.provider-fee-controls button {
  font-size: 12px;
  padding: 3px 8px;
  min-height: 28px;
  border: 1px solid var(--border);
  background: var(--card);
}
.provider-fee-grid {
  border-top: 1px solid var(--line);
}
.provider-fee-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.provider-fee-card header {
  display: flex;
  gap: 14px;
  align-items: center;
}
.provider-fee-mark {
  width: 42px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #3a465c;
  background: var(--muted);
  border-radius: var(--radius-md);
  padding: 5px;
}
.provider-fee-mark img {
  max-width: 32px;
  max-height: 22px;
}
.provider-fee-card h3 {
  font-size: 12px;
}
.provider-fee-card header p {
  font-size: 11px;
  margin-top: 3px;
}
.provider-inputs {
  font-size: 12px;
  color: #596476;
  line-height: 1.8;
}
.provider-inputs small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.05em;
  color: #636e80;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.provider-terms {
  font-size: 11px;
  color: #626c7d;
  text-align: right;
}
.provider-terms strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #3f4c60;
  margin-bottom: 4px;
}
.provider-fee-more {
  margin-top: 15px;
  font-size: 12px;
}
.directory-disclosure {
  font-size: 11px;
  line-height: 1.625;
  margin-top: 18px;
  max-width: 880px;
}
/* Simple native disclosures keep the page useful without more UI chrome. */
.faq-section {
  padding-top: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.faq-layout > div > .text-link {
  margin-top: 26px;
}
.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--border);
}
.faq-list details:first-child {
  border-top: 0;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 8px;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.625;
  min-height: 44px;
}
.faq-list summary > span {
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
  flex-shrink: 0;
}
.faq-list details[open] summary > span {
  transform: rotate(180deg);
}
.faq-list details p {
  padding: 0 32px 12px 8px;
  font-size: 12px;
  line-height: 1.625;
}
.final-cta {
  padding: 64px 0;
  background: var(--dark);
  color: #f3f5fa;
}
.cta-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.final-cta .eyebrow {
  color: #96b5ff;
  margin-bottom: 20px;
}
.final-cta h2 {
  font-size: 40px;
}
.cta-layout > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-email {
  font-size: 12px;
  color: #aeb8c9;
}
.cta-email:hover {
  color: #fff;
}
.site-footer {
  background: var(--dark);
  color: #a3adbd;
  padding-bottom: 30px;
}
.footer-main {
  border-top: 1px solid var(--dark-line);
  padding: 24px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-main .brand {
  color: #eef0f5;
  font-size: 20px;
}
.footer-main .brand-mark {
  width: 28px;
  height: 28px;
}
.footer-main nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
}
.footer-main nav a:hover {
  color: #fff;
}
.footer-main > span {
  font-size: 11px;
}
.footer-disclosure {
  font-size: 11px;
  color: #959faf;
  line-height: 1.8;
  max-width: 850px;
}
@media (min-width: 1500px) {
  .hero-layout {
    min-height: 540px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .site-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 24px;
  }
  .hero-layout {
    min-height: 520px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .section {
    padding: 90px 0;
  }
  .platform-section {
    padding-bottom: 0;
  }
  .section-heading {
    gap: 60px;
  }
  .payment-flow > div {
    padding: 25px 20px;
  }
  .step-heading {
    gap: 9px;
  }
  .step-heading h3 {
    font-size: 13px;
  }
  .pricing-layout,
  .developer-layout,
  .faq-layout {
    gap: 60px;
  }
  .industries {
    gap: 24px;
  }
  .industries ul {
    gap: 24px;
    font-size: 12px;
  }
  .wallet-graphic-top {
    gap: 8px;
  }
  .wallet-graphic strong {
    font-size: 11px;
  }
  .wallet-graphic strong > span {
    font-size: 10px;
  }
  .wallet-graphic-bottom {
    flex-wrap: wrap;
    gap: 4px;
  }
  .coverage-grid {
    gap: 28px;
  }
  .faq-section {
    padding-top: 0;
  }
}
@media (max-width: 850px) {
  html {
    scroll-padding-top: 84px;
  }
  .shell {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
  }
  .header-account-actions {
    display: none;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #343b48;
    border-radius: var(--radius-md);
    background: none;
    color: white;
  }
  .menu-button > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: #e3e7ef;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 22px 24px 28px;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-line);
    box-shadow: 0 12px 20px #0002;
  }
  .site-nav[data-open] {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .site-nav a {
    padding: 13px 5px;
    font-size: 14px;
  }
  .mobile-account-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--dark-line);
  }
  .site-nav .mobile-account-actions a {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }
  .hero-layout {
    min-height: 460px;
    gap: 0;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 25px;
  }
  .hero-art {
    width: 100%;
    margin-left: 0;
  }
  .hero-art figcaption {
    font-size: 9px;
    margin: 8px 20px 35px;
    gap: 12px;
  }
  .hero-note {
    margin-top: 12px;
  }
  .section {
    padding: 76px 0;
  }
  h2 {
    font-size: 37px;
  }
  .section-heading {
    gap: 38px;
    margin-bottom: 38px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .platform-section {
    padding-bottom: 0;
  }
  .payment-flow > div {
    padding: 23px 17px;
  }
  .step-heading {
    display: block;
    margin-bottom: 20px;
  }
  .step-heading > span {
    display: block;
    margin-bottom: 6px;
  }
  .step-heading h3 {
    font-size: 13px;
  }
  .payment-method {
    gap: 7px;
    font-size: 11px;
  }
  .payment-method svg {
    width: 17px;
  }
  .payment-flow p {
    font-size: 11px;
  }
  .wallet-graphic-top {
    flex-wrap: wrap;
  }
  .wallet-graphic-top > svg {
    display: none;
  }
  .wallet-graphic {
    margin-top: 40px;
  }
  .wallet-graphic strong > span {
    display: block;
  }
  .wallet-graphic small {
    font-size: 9px;
  }
  .asset-mark {
    width: 27px;
    height: 27px;
    font-size: 16px;
  }
  .industries {
    margin-top: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .industries p > span {
    display: inline;
    margin-left: 14px;
  }
  .industries ul {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }
  .pricing-layout,
  .developer-layout {
    gap: 35px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  .pricing-copy h2 {
    font-size: 34px;
  }
  .pricing-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .price-statement {
    gap: 15px;
  }
  .price-statement > strong {
    font-size: 62px;
  }
  .price-statement p {
    font-size: 12px;
  }
  .price-statement p > span {
    font-size: 10px;
  }
  .calculator-heading {
    gap: 8px;
  }
  .calculator-fields {
    grid-template-columns: 1fr;
  }
  .fee-breakdown > div {
    font-size: 11px;
    gap: 10px;
  }
  .fee-total strong {
    font-size: 29px;
  }
  .fee-total > div > span {
    font-size: 11px;
  }
  .developer-copy h2 {
    font-size: 35px;
  }
  .developer-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .request-panel pre {
    font-size: 11px;
  }
  .code-bar {
    gap: 8px;
    font-size: 9px;
  }
  .code-bar b {
    margin-right: 5px;
  }
  .integration-steps {
    font-size: 11px;
  }
  .developer-copy > .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .webhook-example {
    flex-wrap: wrap;
    gap: 5px;
  }
  .coverage-grid {
    gap: 24px;
  }
  .coverage-grid h3 {
    font-size: 14px;
  }
  .coverage-grid p {
    font-size: 11px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-layout {
    gap: 50px;
    grid-template-columns: 0.8fr 1.2fr;
    padding-top: 65px;
  }
  .final-cta h2 {
    font-size: 37px;
  }
  .footer-main nav {
    gap: 18px;
  }
  .footer-main > span {
    font-size: 9px;
  }
}
@media (max-width: 640px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 68px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-mark {
    width: 30px;
  }
  .hero {
    padding-top: 26px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 27px 0 0;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(48px, 12.5vw, 68px);
  }
  .hero-lead {
    font-size: 14px;
    max-width: 410px;
    margin-top: 24px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .hero-note {
    margin-top: 16px;
  }
  .hero-art {
    width: 100%;
    max-width: 430px;
    margin: 4px auto 0;
  }
  .hero-art img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.2;
    object-fit: cover;
    object-position: center 49%;
    mask-image: linear-gradient(
      to bottom,
      transparent,
      black 13%,
      black 80%,
      transparent
    );
  }
  .hero-art figcaption {
    font-size: 9px;
    margin: 0 4px 26px;
  }
  .section {
    padding: 68px 0;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 32px;
  }
  .section-heading > p {
    font-size: 13px;
    max-width: 400px;
  }
  .platform-section {
    padding-bottom: 0;
  }
  .payment-flow {
    grid-template-columns: 1fr;
  }
  .payment-flow > div {
    padding: 26px;
  }
  .payment-flow > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .step-heading {
    display: flex;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 22px;
  }
  .step-heading > span {
    margin: 0;
  }
  .step-heading h3 {
    font-size: 15px;
  }
  .payment-method {
    font-size: 12px;
    gap: 12px;
  }
  .payment-method svg {
    width: 20px;
  }
  .payment-flow p {
    font-size: 12px;
    margin-top: 20px;
    max-width: 390px;
  }
  .routing-graphic {
    height: 110px;
    max-width: 330px;
    margin-inline: auto;
  }
  .routing-graphic svg {
    max-height: 118px;
  }
  .wallet-graphic {
    margin: 22px 0 0;
    min-height: 0;
  }
  .wallet-graphic-top {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .wallet-graphic-top > svg {
    display: block;
  }
  .asset-mark {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .wallet-graphic strong {
    font-size: 13px;
  }
  .wallet-graphic strong > span {
    display: inline;
    font-size: 11px;
  }
  .wallet-graphic small {
    font-size: 10px;
  }
  .wallet-graphic-bottom {
    font-size: 11px;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
  }
  .platform-footnote {
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
  }
  .industries {
    margin-top: 40px;
    padding: 26px 0;
    gap: 20px;
  }
  .industries p > span {
    display: block;
    margin: 4px 0 0;
  }
  .industries ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    font-size: 13px;
  }
  .pricing-layout,
  .developer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-copy h2,
  .developer-copy h2 {
    font-size: 36px;
  }
  .price-statement {
    margin: 20px 0;
  }
  .price-statement > strong {
    font-size: 64px;
  }
  .price-statement p {
    font-size: 13px;
  }
  .price-statement p > span {
    font-size: 11px;
  }
  .pricing-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .pricing-copy > .text-link {
    margin-top: 14px;
    font-size: 12px;
  }
  .calculator-fields {
    grid-template-columns: 1.3fr 1fr;
    gap: 12px;
  }
  .fee-breakdown > div {
    font-size: 12px;
  }
  .fee-total > div > span {
    font-size: 11px;
  }
  .fee-total strong {
    font-size: 31px;
  }
  .developer-copy h2 br:nth-of-type(2) {
    display: none;
  }
  .developer-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .integration-steps {
    font-size: 12px;
    margin: 26px 0 16px;
  }
  .developer-copy > .text-link {
    font-size: 12px;
  }
  .request-panel pre {
    font-size: 12px;
  }
  .code-bar {
    font-size: 10px;
  }
  .webhook-example {
    flex-wrap: nowrap;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .coverage-grid > div {
    padding-top: 20px;
  }
  .coverage-grid h3 {
    font-size: 16px;
    margin: 12px 0 9px;
  }
  .coverage-grid p {
    font-size: 12px;
    max-width: 430px;
  }
  .network-directory {
    margin-top: 32px;
  }
  .network-directory > summary > span > span {
    font-size: 10px;
  }
  .provider-fee-card {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .provider-fee-card header {
    grid-column: 1/-1;
  }
  .provider-terms {
    text-align: left;
    align-self: end;
    font-size: 9px;
  }
  .provider-terms strong {
    font-size: 9px;
  }
  .provider-inputs {
    font-size: 10px;
  }
  .provider-fee-controls {
    gap: 4px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 58px;
  }
  .faq-layout > div > .text-link {
    margin-top: 15px;
  }
  .final-cta {
    padding: 58px 0;
  }
  .cta-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .final-cta h2 {
    font-size: 36px;
  }
  .cta-layout > div:last-child {
    align-items: flex-start;
    gap: 14px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 26px;
  }
  .footer-main .brand {
    font-size: 19px;
  }
  .footer-main nav {
    order: 3;
    width: 100%;
    font-size: 11px;
    gap: 25px;
  }
  .footer-main > span {
    font-size: 10px;
  }
  .footer-disclosure {
    font-size: 9px;
  }
}
@media (max-width: 359px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions {
    gap: 10px;
  }
  .calculator-fields {
    grid-template-columns: 1fr;
  }
  .fee-total strong {
    font-size: 29px;
  }
  .request-panel pre {
    font-size: 10px;
  }
  .code-bar {
    font-size: 9px;
  }
  .webhook-example {
    font-size: 9px;
  }
  .webhook-example code {
    font-size: 10px;
  }
  .example-url code {
    font-size: 9px;
  }
  .wallet-graphic-bottom {
    font-size: 10px;
  }
  .footer-main nav {
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
.dark {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --card: #171717;
  --card-foreground: #fafafa;
  --secondary: #262626;
  --secondary-foreground: #fafafa;
  --muted: #262626;
  --muted-foreground: #a3a3a3;
  --accent: #262626;
  --accent-foreground: #fafafa;
  --border: #2c2c2c;
  --input: #3a3a3a;
  --ring: #a3a3a3;
}
button:not(:disabled),
[role="button"]:not(:disabled),
a.button,
.account-login,
a.text-link,
summary,
select {
  cursor: pointer;
}
button:disabled,
[role="button"][aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}
.button:active,
.account-login:active,
.preset-row button:active,
.code-bar button:active {
  transform: translateY(1px);
}
.tabs button:focus-visible,
.button:focus-visible,
.account-login:focus-visible,
.preset-row button:focus-visible,
.code-bar button:focus-visible {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ring) 30%, transparent);
  outline: none;
}
.faq-list details[open] {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
  border-radius: var(--radius-md);
}
.faq-list summary:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-list summary > span svg,
.details-plus svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.provider-fee-controls button.is-active {
  background: var(--secondary);
  border-color: var(--input);
  box-shadow: none;
}
.field-wrap:has([aria-invalid="true"]) {
  border-color: var(--destructive);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--destructive) 20%, transparent);
}
@media (max-width: 640px) {
  .hero-art {
    max-width: 380px;
    margin: 16px auto 0;
    justify-self: center;
  }
  .hero h1 {
    letter-spacing: -0.055em;
  }
  .calculator {
    --card-spacing: 16px;
  }
  .calculator-field label {
    font-size: 11px;
  }
  .field-wrap {
    height: 36px;
  }
  .field-wrap input {
    font-size: 16px;
  }
  .button,
  .account-login {
    min-height: 36px;
    padding: 6px 10px;
  }
  .code-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-disclosure {
    font-size: 10px;
  }
}
@media (pointer: coarse) {
  .button,
  .account-login,
  .tabs button,
  .preset-row button,
  .code-bar button,
  .formula-toggle,
  .field-wrap,
  .menu-button {
    min-height: 44px;
  }
  .field-wrap {
    height: 44px;
  }
  .tabs {
    height: auto;
  }
}
@media (max-width: 640px) {
  .hero-art {
    display: none;
  }
}
