@charset "UTF-8";
/* ============================================================
   PaySpot ME — International money transfer (RIA) page
   Used ONLY by usluga-medjunarodni-transfer-novca-cg/-en.html.

   Self-contained + namespaced under .mt so it never collides with
   the legacy css/style.css. The shared header/footer keep
   css/site-chrome.css + js/site.js; this file styles the page body
   that lives inside the fixed-scroll .root.

   Design: PaySpot "ink vault" language — near-black surfaces, brand
   red, the diamond mark. Signature is the live RIA "transfer slip"
   in the hero (real tariff drives the fee) and the send/receive
   corridor. Type roles: Space Grotesk (display/figures), Poppins
   (body, matches the site), Space Mono (PIN + money data).
   ============================================================ */

.mt {
  /* ---- tokens (mirror the brand system) ---- */
  --red: #e10000;
  --red-600: #c20000;
  --red-700: #a30000;
  --red-300: #ff6a62;
  --red-soft: #ffecec;

  --ink: #0e0f14;
  --ink-1: #14151a;
  --ink-2: #1a1c24;
  --panel: #15161d;
  --text: #1f2330;
  --muted: #626875;
  --muted-2: #8a909c;
  --line: #e9ebf0;
  --line-2: #f0f2f6;

  --paper: #ffffff;
  --soft: #eef0f4;

  --radius-xl: 30px;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-md: 0 16px 40px rgba(16, 18, 27, 0.1);
  --shadow-lg: 0 34px 80px rgba(16, 18, 27, 0.18);
  --shadow-red: 0 18px 40px rgba(225, 0, 0, 0.3);

  --grad-red: linear-gradient(120deg, #ff3b30 0%, #e10000 55%, #b00000 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --disp: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --mark-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");
  --mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23e6eaf1' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");

  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  /* the legacy .root paints #fff behind everything; the dark hero
     overrides locally */
}

.mt *,
.mt *::before,
.mt *::after {
  box-sizing: border-box;
}
.mt h1,
.mt h2,
.mt h3,
.mt h4,
.mt p {
  margin: 0;
}
.mt a {
  color: inherit;
  text-decoration: none;
}
.mt img {
  display: block;
  max-width: 100%;
}
.mt :focus-visible {
  outline: 3px solid rgba(225, 0, 0, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.mt-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* shared eyebrow — uppercase red micro-label with a leading bar */
.mt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.mt-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.mt-eyebrow--light {
  color: var(--red-300);
}
.mt-eyebrow--light::before {
  background: var(--red-300);
}
.mt-eyebrow--center {
  justify-content: center;
}

/* section heading block */
.mt-head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.mt-head .mt-eyebrow {
  margin-bottom: 16px;
}
.mt-title {
  font-family: var(--disp);
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mt-title .hl {
  color: var(--red);
}
.mt-sub {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}

/* buttons */
.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
/* scoped under .mt so the color wins over `.mt a { color: inherit }`
   (which otherwise out-specifies a single-class button rule) */
.mt .mt-btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.mt .mt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.mt .mt-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.mt .mt-btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}
.mt .mt-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.mt-btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

/* ============================================================
   HERO  —  copy + live transfer slip on an ink stage
   ============================================================ */
.mt-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      1000px 640px at 84% 14%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #15161d 0%, #0e0f14 60%, #101117 100%);
  color: #fff;
  /* clears the fixed header (top bar ~42 + nav ~84) and breathes */
  padding: clamp(132px, 15vh, 176px) 0 clamp(64px, 8vh, 104px);
}
/* diamond watermark on the stage */
.mt-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 620px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
/* closing red hairline beam */
.mt-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(760px, 86%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 0, 0, 0.75),
    transparent
  );
}
.mt-hero .mt-wrap {
  position: relative;
  z-index: 2;
}
.mt-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
}
.mt-hero-copy .mt-eyebrow {
  margin-bottom: 22px;
}
.mt-hero h1 {
  font-family: var(--disp);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
/* the key phrase in a solid red stamp — a marker swipe, not the
   gradient-text default */
.mt-hero h1 .hl {
  display: inline-block;
  white-space: nowrap;
  background: var(--grad-red);
  color: #fff;
  padding: 0.02em 0.26em 0.1em;
  border-radius: 0.16em;
  box-shadow: 0 14px 36px rgba(225, 0, 0, 0.36);
}
.mt-lead {
  margin-top: 26px;
  max-width: 540px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.mt-lead b {
  color: #fff;
  font-weight: 600;
}

/* "why RIA" — three proofs as a hairline-divided row */
.mt-why {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.mt-why-item {
  padding: 20px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mt-why-item:first-child {
  border-left: 0;
}
.mt-why-item b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.mt-why-item b::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red-300);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.mt-why-item span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

/* ----- the transfer slip ----- */
.mt-slip {
  position: relative;
  border-radius: 28px;
  padding: 30px clamp(22px, 2.4vw, 32px) 26px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.02) 60%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* top hairline beam */
.mt-slip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 98, 0.6),
    transparent
  );
}
.mt-slip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.mt-slip-brand {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.66);
}
.mt-slip-brand b {
  color: #fff;
}
.mt-slip-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-300);
  padding: 5px 11px;
  border-radius: var(--pill);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
}
.mt-slip-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-300);
  box-shadow: 0 0 0 0 rgba(255, 106, 98, 0.6);
  animation: mt-ping 2s var(--ease) infinite;
}

.mt-slip-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.mt-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 14px;
}
.mt-amount input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-family: var(--disp);
  font-size: clamp(38px, 5.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}
.mt-amount input::-webkit-outer-spin-button,
.mt-amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mt-amount .cur {
  flex: 0 0 auto;
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 600;
  color: var(--red-300);
}

/* range */
.mt-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.14);
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-size: var(--p, 25%) 100%;
  outline: none;
  cursor: pointer;
}
.mt-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.mt-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.mt-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.mt-rows {
  margin-top: 22px;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.mt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(20, 21, 26, 0.5);
}
.mt-row .k {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
}
.mt-row .v {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mt-row--total {
  background: rgba(225, 0, 0, 0.14);
}
.mt-row--total .k {
  color: #fff;
  font-weight: 600;
}
.mt-row--total .v {
  color: var(--red-300);
  font-size: 18px;
}
.mt-row--eta .v {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red-300);
}
.mt-row--eta .v svg {
  width: 15px;
  height: 15px;
}

/* reference code */
.mt-code {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #0c0d12;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
.mt-code .ck {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.mt-code .cv {
  font-family: var(--mono);
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red-300);
}
.mt-slip-note {
  margin-top: 16px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

/* ============================================================
   CORRIDOR — send / receive numbered rails
   ============================================================ */
.mt-corridor {
  background: var(--paper);
  padding: clamp(70px, 9vw, 110px) 0 clamp(50px, 6vw, 80px);
}
.mt-rail {
  margin-top: 0;
}
.mt-rail + .mt-rail {
  margin-top: clamp(54px, 6vw, 84px);
}
.mt-rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mt-rail-head h2 {
  font-family: var(--disp);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 12px;
}
.mt-dir {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 9px 16px;
  border-radius: var(--pill);
  background: var(--red-soft);
  border: 1px solid #ffd6d2;
}
.mt-dir svg {
  width: 16px;
  height: 16px;
}

/* the track: 4 nodes joined by a dashed flight-line */
.mt-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.mt-track::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    var(--red) 0 14px,
    transparent 14px 26px
  );
  background-size: 26px 2px;
  opacity: 0.4;
  z-index: 0;
}
.mt-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.mt-node:hover {
  transform: translateY(-6px);
  border-color: #ffd0cc;
  box-shadow: 0 26px 52px rgba(150, 30, 30, 0.14);
}
/* diamond icon tile holding an upright stroke icon */
.mt-node-ico {
  width: 54px;
  height: 54px;
  margin: 6px 0 22px 6px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #ffd6d2;
  transform: rotate(45deg);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.mt-node-ico svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}
.mt-node:hover .mt-node-ico {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.mt-step {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
}
.mt-node h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mt-node p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
/* receive rail — incoming accent: cool-tinted step number diamond on
   the node corner via the dir chip; nodes themselves stay consistent */
.mt-rail--in .mt-dir {
  color: var(--ink);
  background: #eef0f4;
  border-color: #dfe3ea;
}
.mt-rail--in .mt-dir svg {
  color: var(--red);
}

/* ============================================================
   TRACK + SAFEGUARDS — two-up on a slate canvas
   ============================================================ */
.mt-info {
  background: var(--soft);
  background-image: var(--mark-light), var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -150px top -90px, left -170px bottom -120px;
  background-size: 400px auto, 360px auto;
  padding: clamp(66px, 8vw, 100px) 0;
}
.mt-info-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
/* dark "track your transfer" card */
.mt-track-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--radius-xl);
  background-color: var(--ink-1);
  background-image: radial-gradient(
      600px 320px at 110% -10%,
      rgba(225, 0, 0, 0.22),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -100px bottom -120px;
  background-size: auto, 320px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.mt-track-card .mt-eyebrow {
  margin-bottom: 16px;
}
.mt-track-card h3 {
  font-family: var(--disp);
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.mt-track-card p {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.66);
  max-width: 46ch;
}
/* faux PIN entry that turns into the tracking link */
.mt-track-entry {
  margin: 26px 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mt-pinbox {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  font-family: var(--mono);
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}
.mt-pinbox svg {
  width: 18px;
  height: 18px;
  color: var(--red-300);
  flex: 0 0 auto;
}
.mt-track-card .mt-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* white safeguards card */
.mt-safe-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -70px top -80px;
  background-size: 240px auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mt-safe-card .mt-eyebrow {
  margin-bottom: 16px;
}
.mt-safe-card h3 {
  font-family: var(--disp);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mt-safe-list {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}
.mt-safe-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.mt-safe-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
}
.mt-safe-list li b {
  color: var(--ink);
  font-weight: 700;
}
.mt-safe-list li.warn {
  font-weight: 600;
  color: var(--red-700);
}

/* ============================================================
   TARIFF — sending table (ink) + receiving (red) card
   ============================================================ */
.mt-tariff {
  background: var(--paper);
  padding: clamp(70px, 9vw, 110px) 0;
}
.mt-tariff-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  align-items: start;
}
/* the sending tariff lives in an ink panel — same surface that drives
   the hero calculator */
.mt-fees {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background-color: var(--ink-1);
  background-image: radial-gradient(
      700px 360px at -10% -20%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -110px bottom -130px;
  background-size: auto, 360px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 3vw, 40px);
}
.mt-fees-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.mt-fees-head h3 {
  font-family: var(--disp);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.mt-fees-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--red-300);
  padding: 6px 12px;
  border-radius: var(--pill);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
}
.mt-feetable {
  width: 100%;
  border-collapse: collapse;
}
.mt-feetable thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mt-feetable thead th:last-child {
  text-align: right;
}
.mt-feetable tbody td {
  padding: 13px 4px;
  font-family: var(--mono);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s var(--ease);
}
.mt-feetable tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: #fff;
}
.mt-feetable tbody tr:last-child td {
  border-bottom: 0;
}
.mt-feetable tbody tr:hover td {
  color: #fff;
}
/* the percentage tier reads as the headline rate */
.mt-feetable tbody tr.rate td:last-child {
  color: var(--red-300);
}
.mt-fees-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.mt-fees-foot svg {
  width: 15px;
  height: 15px;
  color: var(--red-300);
  flex: 0 0 auto;
}

/* receiving — bold red statement card */
.mt-receive {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 3.2vw, 44px);
  background-color: var(--red-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.13' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E"),
    var(--grad-red);
  background-repeat: no-repeat;
  background-position: right -50px bottom -90px, 0 0;
  background-size: 260px auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-red);
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mt-receive .mt-receive-ico {
  width: 56px;
  height: 56px;
  margin: 6px 0 24px 6px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}
.mt-receive .mt-receive-ico svg {
  width: 26px;
  height: 26px;
  transform: rotate(-45deg);
}
.mt-receive .mt-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.mt-receive .mt-free {
  font-family: var(--disp);
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-top: 12px;
}
.mt-receive p {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
}
.mt-receive .mt-receive-foot {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.mt-cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 0% 0%, #2a0d12, #0e0f14 60%);
}
.mt-cta::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -70px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225, 0, 0, 0.5), transparent 65%);
  filter: blur(54px);
}
.mt-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mark-white) left -120px center / 320px auto no-repeat;
  pointer-events: none;
}
.mt-cta .mt-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 60px;
}
.mt-cta-copy .mt-eyebrow {
  margin-bottom: 14px;
}
.mt-cta h2 {
  font-family: var(--disp);
  color: #fff;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mt-cta p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.mt-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL  (driven by site.js [data-reveal] -> .in)
   ============================================================ */
.mt [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.mt [data-reveal].in {
  opacity: 1;
  transform: none;
}
/* containers that aren't the hover-cards get the simple transition */
.mt-head[data-reveal],
.mt-rail-head[data-reveal],
.mt-hero-copy[data-reveal],
.mt-slip[data-reveal],
.mt-track-card[data-reveal],
.mt-safe-card[data-reveal],
.mt-fees[data-reveal],
.mt-receive[data-reveal],
.mt-cta-copy[data-reveal],
.mt-cta-actions[data-reveal] {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* staggered node entrance — restated so hover transform/shadow survive
   (the bare reveal rule would otherwise drop them) */
.mt-track > [data-reveal] {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.mt-track > [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}
.mt-track > [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}
.mt-track > [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes mt-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 98, 0.55);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px rgba(255, 106, 98, 0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .mt-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mt-slip {
    max-width: 520px;
  }
  .mt-info-grid {
    grid-template-columns: 1fr;
  }
  .mt-tariff-grid {
    grid-template-columns: 1fr;
  }
  .mt-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .mt-track::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .mt-wrap {
    padding: 0 18px;
  }
  .mt-why {
    grid-template-columns: 1fr;
  }
  .mt-why-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mt-why-item:first-child {
    border-top: 0;
  }
  .mt-track {
    grid-template-columns: 1fr;
  }
  .mt-cta .mt-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mt * {
    transition-duration: 0.001ms !important;
    animation: none !important;
  }
  .mt [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
