/* ── DESIGN SYSTEM TOKENS ─────────────────────────────────── */
:root {
  --purple:    #533AFD;
  --purple-h:  #4329E8;
  --purple-a:  #3720D4;
  --purple-d:  #C9C3F0;
  --navy:      #061B31;
  --slate-blue:#273951;
  --dark-blue: #0D1738;
  --navy-slate:#1A2C44;
  --i-slate:   #50617A;
  --black:     #000000;
  --white:     #FFFFFF;
  --light-s:   #64748D;
  --border:    #D4DEE9;
  --bg-light:  #E5EDF5;
  --lav:       #E8E9FF;
  --orange:    #FF6118;
  --bg:        #FFFFFF;
  --bg2:       #F8FAFC;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 300;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-light);
  transition: background .2s ease, box-shadow .2s ease;
}
.nav-logo {
  font-weight: 700; font-size: 20px; color: #0A2540;
  letter-spacing: -0.5px; text-decoration: none;
}
.nav-links { display: flex; gap: 4px; list-style: none }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--navy);
  text-decoration: none; padding: 8px 12px; border-radius: 4px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: #F3F3F3; color: var(--purple) }
.nav-r { display: flex; gap: 8px; align-items: center }
.nbtn {
  height: 36px; padding: 0 16px; border-radius: 4px;
  font-size: 14px; font-weight: 400; cursor: pointer;
  font-family: inherit; transition: all .15s; border: none;
  line-height: 1;
}
.nbtn-ghost {
  background: transparent; color: var(--purple);
  border: 1px solid transparent;
}
.nbtn-ghost:hover { border-color: var(--purple) }
.nbtn-solid {
  background: var(--purple); color: #fff;
  box-shadow: 0 4px 14px rgba(83,58,253,.3);
}
.nbtn-solid:hover { background: var(--purple-h); transform: translateY(-1px) }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 80px 40px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,
    rgba(83,58,253,.07) 0%,
    rgba(255,97,24,.04) 100%);
  pointer-events: none;
}
.hero-mesh {
  position: absolute; top: -80px; right: -80px;
  width: 65%; height: 110%;
  pointer-events: none; z-index: 0;
}
.hero-mesh svg { width: 100%; height: 100% }
.hero-mesh svg ellipse,
.hero-mesh svg circle {
  animation: meshFloat 8s ease-in-out infinite;
}
.hero-mesh svg ellipse:nth-child(2) { animation-delay: -2s }
.hero-mesh svg ellipse:nth-child(3) { animation-delay: -4s }
@keyframes meshFloat {
  0%,100% { transform-origin: center; transform: scale(1) }
  50%      { transform: scale(1.04) }
}
.hero-left { position: relative; z-index: 1; max-width: 560px }
.hero-kpi {
  font-size: 13px; color: var(--light-s);
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.hero-kpi strong { color: var(--navy); font-weight: 600 }
h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeUp .5s .05s ease both;
}
h1 .accent { color: var(--purple) }
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--slate-blue);
  max-width: 480px; margin-bottom: 36px;
  animation: fadeUp .5s .1s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .5s .15s ease both;
}
.hbtn-p {
  height: 48px; padding: 0 24px; border: none; border-radius: 4px;
  background: var(--purple); color: #fff;
  font: 400 16px/1 inherit; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all .25s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 0 4px 14px rgba(83,58,253,.35);
}
.hbtn-p:hover { background: var(--purple-h); transform: translateY(-2px) }
/* hero trust bar */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  margin-bottom: 28px;
  animation: fadeUp .5s .12s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--slate-blue); font-weight: 400;
}
.hero-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00c070; flex-shrink: 0;
}

.hbtn-g {
  height: 48px; padding: 0 24px; border-radius: 4px;
  border: 1px solid var(--border); background: #fff;
  color: var(--navy); font: 400 15px/1 inherit; cursor: pointer;
  display: flex; align-items: center; transition: all .2s;
}
.hbtn-g:hover { border-color: var(--i-slate); background: var(--bg2) }

/* ── HERO RIGHT / CARD ────────────────────────────────────── */
.hero-right {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp .5s .2s ease both;
}
.card-scene { position: relative; width: 300px }
.card-glow {
  position: absolute; inset: -60px; border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(83,58,253,.25) 0%,
    rgba(255,97,24,.18) 45%,
    transparent 70%);
  filter: blur(40px); z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .8; transform: scale(1) }
  50%      { opacity: 1;  transform: scale(1.05) }
}
.stripe-card {
  position: relative; z-index: 1; width: 100%;
  border-radius: 20px; background: #fff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 8px 24px rgba(0,0,0,.10),
    0 32px 64px rgba(0,0,0,.14);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.stripe-card:hover { transform: scale(1.02) rotate(-1deg) }
.sc-gradient {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(155deg,
    #b8a5ff 0%, #8b6dff 18%, #533AFD 38%,
    #7c6eff 55%, #a88cff 70%, #e0a87a 88%, #FF6118 100%);
}
.sc-gradient::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(145deg,
    rgba(255,255,255,.22) 0%, transparent 45%, rgba(0,0,0,.04) 100%);
}
.sc-chip-block {
  position: absolute; top: 22px; left: 20px;
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
.sc-chip {
  width: 46px; height: 36px; border-radius: 7px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 2px 8px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.9);
  position: relative; overflow: hidden;
}
.sc-chip::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: 34%; height: 1px; background: rgba(0,0,0,.1);
}
.sc-chip::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 39%; width: 1px; background: rgba(0,0,0,.08);
}
.sc-chip-inner {
  position: absolute; top: 7px; left: 7px; right: 7px; bottom: 7px;
  border-radius: 3px; border: 1px solid rgba(0,0,0,.06);
}
.sc-nfc { display: flex; align-items: center }
.sc-nfc svg { width: 22px; height: 22px }
.sc-crypto-row {
  position: absolute; bottom: 14px; left: 18px;
  display: flex; align-items: center; z-index: 2;
}
.sc-crypto-ico {
  width: 22px; height: 22px; border-radius: 50%;
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.5);
  margin-left: -6px;
  transition: transform .2s ease;
}
.sc-crypto-ico:first-child { margin-left: 0 }
.sc-crypto-ico svg { width: 100%; height: 100%; display: block }
.sc-crypto-ico:hover { transform: translateY(-3px); z-index: 5 }
.sc-crypto-more {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.25); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
  margin-left: -6px; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.5);
  letter-spacing: -.5px;
}
.sc-bottom {
  background: #fff; padding: 12px 18px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.sc-number {
  font-size: 13px; letter-spacing: 2.5px; color: var(--navy);
  font-weight: 500; font-family: 'Courier New', monospace;
}
.sc-bottom-row {
  display: flex; justify-content: space-between; align-items: center;
}
.sc-card-label {
  font-size: 9px; color: var(--light-s); font-weight: 400;
  line-height: 1.5; text-transform: uppercase; letter-spacing: 0.5px;
}
.sc-card-label span {
  display: block; font-size: 11px; color: var(--navy);
  font-weight: 500; letter-spacing: 0;
}
.sc-visa {
  font-family: 'Times New Roman', Georgia, serif;
  font-style: italic; font-weight: 900; font-size: 28px;
  color: #1A1F71; letter-spacing: -1px; line-height: 1;
  user-select: none;
}
.pill {
  position: absolute; background: #fff;
  border: 1px solid rgba(0,0,0,.08); border-radius: 14px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.11);
  font-size: 13px; font-weight: 500; color: var(--navy);
  white-space: nowrap; z-index: 3;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.15);
}
.pill-sub { font-size: 11px; color: var(--light-s); margin-top: 2px }
/* stacked coins inside pill */
.pill-coins {
  display: flex; align-items: center; flex-shrink: 0;
}
.pill-coin {
  width: 22px; height: 22px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 1.5px solid #fff;
  margin-left: -6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  transition: transform .2s ease;
}
.pill-coin:first-child { margin-left: 0 }
.pill-coin svg { width: 100%; height: 100%; display: block }
.pill-coin:hover { transform: translateY(-2px); z-index: 20 !important }
.pill-ico {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pill-usdt  { top: -56px; right: -24px; gap: 12px }
.pill-world { bottom: -20px; left: -20px }
.pdot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #00c070;
  margin-right: 5px; vertical-align: middle;
}

/* ── STATS ────────────────────────────────────────────────── */
.stats-section {
  background: var(--lav);
  padding: 80px 40px; text-align: center;
}
.stats-section h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 300;
  letter-spacing: -1.5px; color: var(--navy); margin-bottom: 60px;
  line-height: 1.1;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(83,58,253,.15);
  border-bottom: 1px solid rgba(83,58,253,.15);
  max-width: 1100px; margin: 0 auto;
}
.stat {
  padding: 40px 20px;
  border-right: 1px solid rgba(83,58,253,.12);
  text-align: center;
}
.stat:last-child { border-right: none }
.stat-num {
  font-size: clamp(26px, 3vw, 40px); font-weight: 300;
  color: var(--light-s); letter-spacing: -2px; margin-bottom: 8px;
  line-height: 1; transition: color .3s ease;
}
.stat:first-child .stat-num { color: var(--navy) }
.stat:hover .stat-num { color: var(--purple) }
.stat-lbl {
  font-size: 13px; color: var(--light-s); line-height: 1.5;
  max-width: 160px; margin: 0 auto;
}

/* ── BURST ────────────────────────────────────────────────── */
.burst-section {
  position: relative; height: 500px; overflow: hidden;
  background: linear-gradient(180deg,
    var(--lav) 0%, #ddd8ff 30%, #c8baff 55%, #e8c8e8 80%, #f0d0d8 100%);
}
#burstCanvas { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: block }

/* ── CRYPTO NETWORKS ──────────────────────────────────────── */
.crypto-nets { padding: 100px 40px; max-width: 1100px; margin: 0 auto }
.sec-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 300;
  letter-spacing: -1.5px; color: var(--navy); line-height: 1.1;
  margin-bottom: 14px;
}
.sec-body {
  font-size: 16px; line-height: 1.75; color: var(--slate-blue);
  max-width: 500px; margin-bottom: 56px;
}
.nets-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 0;
}
.net-card {
  background: #fff; border: 1px solid var(--border); border-radius: 5px;
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.34,1.2,.64,1), border-color .3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.net-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-3px); border-color: #B8CCDB;
}
.net-header { display: flex; align-items: center; gap: 14px }
.net-logo-stack { position: relative; width: 44px; height: 44px; flex-shrink: 0 }
.net-logo-stack svg {
  position: absolute; width: 26px; height: 26px;
  border-radius: 50%; border: 2px solid #fff; box-sizing: content-box;
}
.net-logo-stack svg:nth-child(1) { top: -2px; left: -2px; z-index: 4 }
.net-logo-stack svg:nth-child(2) { top: -2px; right: -2px; z-index: 3 }
.net-logo-stack svg:nth-child(3) { bottom: -2px; left: -2px; z-index: 2 }
.net-logo-stack svg:nth-child(4) { bottom: -2px; right: -2px; z-index: 1 }
.net-single { width: 44px; height: 44px; flex-shrink: 0 }
.net-single svg { width: 44px; height: 44px; border-radius: 50% }
.net-info h4 {
  font-size: 16px; font-weight: 400; color: var(--navy);
  letter-spacing: -.3px;
}
.net-info p { font-size: 12px; color: var(--light-s); margin-top: 2px }
.net-tokens { display: flex; gap: 6px; flex-wrap: wrap }
.net-tok {
  font-size: 11px; font-weight: 500; padding: 3px 10px;
  border-radius: 999px; background: var(--bg2);
  color: var(--slate-blue); border: 1px solid var(--border);
}
.net-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #065F46; font-weight: 500;
  background: #D1FAE5; border: 1px solid #A7F3D0;
  border-radius: 3px; padding: 4px 8px; width: fit-content;
}
.net-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #00c070; display: inline-block;
}

/* ── FEATURES BENTO ───────────────────────────────────────── */
.features { padding: 100px 40px; max-width: 1200px; margin: 0 auto }
.bento {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto; gap: 16px;
}
.bento-card {
  background: #fff; border: 1px solid var(--border); border-radius: 5px;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.34,1.2,.64,1), border-color .3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.bento-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.bento-card.tall { grid-row: span 2 }
.bc-body { padding: 28px 28px 0 }
.bc-body h3 {
  font-size: 18px; font-weight: 400; letter-spacing: -.4px;
  color: var(--navy); margin-bottom: 8px;
}
.bc-body p { font-size: 14px; line-height: 1.65; color: var(--slate-blue); max-width: 260px }
.bc-vis { margin-top: 24px; border-top: 1px solid var(--border); position: relative; overflow: hidden }
.bc-vis.h200 { height: 200px }
.bc-vis.h150 { height: 150px }
.bc-vis.h320 { height: 320px }
.vis-lav   { background: linear-gradient(160deg, #f0ecff, #e8f0ff) }
.vis-pink  { background: linear-gradient(160deg, #fff0f8, #ffe8f3) }
.vis-mint  { background: linear-gradient(160deg, #effffa, #e8fff6) }
.vis-peach { background: linear-gradient(160deg, #fff6ee, #fff0e6) }
.vis-sky   { background: linear-gradient(160deg, #eef8ff, #e6f2ff) }

/* ── MINI CARD inside bento ───────────────────────────────── */
.mini-sc {
  position: absolute; left: 50%; top: 22px; transform: translateX(-50%);
  width: 200px; border-radius: 14px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.12);
  overflow: hidden;
}
.msc-grad {
  height: 90px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #b8a5ff, #533AFD, #7c6eff, #FF6118);
}
.msc-grad::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.2) 0%, transparent 50%);
}
.msc-chip-row {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px; z-index: 2;
}
.msc-chip {
  width: 28px; height: 22px; border-radius: 4px;
  background: rgba(255,255,255,.85); box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.msc-bot { padding: 8px 12px; display: flex; align-items: center; justify-content: space-between }
.msc-visa { font-family: 'Times New Roman', serif; font-style: italic; font-weight: 900; font-size: 16px; color: #1a1f71 }
.msc-coins { display: flex; align-items: center }
.msc-coin-ico {
  width: 20px; height: 20px; border-radius: 50%; overflow: hidden;
  border: 1.5px solid #fff;
  margin-left: -5px; box-shadow: 0 1px 3px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.msc-coin-ico:first-child { margin-left: 0 }
.msc-coin-ico svg { width: 100%; height: 100%; display: block }
.msc-coin-more {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(83,58,253,.15);
  border: 1.5px solid rgba(83,58,253,.3);
  font-size: 7px; font-weight: 700; color: #533AFD;
  display: flex; align-items: center; justify-content: center;
  margin-left: -5px; flex-shrink: 0;
}

/* ── TRANSACTION LIST (premium fintech) ───────────────────── */
.tx-list-vis {
  position: absolute; inset: 0;
  padding: 10px 12px 0;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 5px;
}
.tx-r {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 11px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(14,28,54,.05);
  box-shadow: 0 1px 3px rgba(14,28,54,.04), 0 1px 2px rgba(14,28,54,.02);
  transition: box-shadow .22s ease, transform .22s ease, background .18s ease;
  cursor: default; flex-shrink: 0;
}
.tx-r:hover {
  box-shadow: 0 6px 20px rgba(14,28,54,.09), 0 2px 6px rgba(14,28,54,.04);
  transform: translateY(-1px);
  background: #fafbff;
}
.tx-l { display: flex; align-items: center; gap: 10px; min-width: 0 }
.tx-info { display: flex; flex-direction: column; gap: 2px; min-width: 0 }
.tx-n { font-size: 12.5px; font-weight: 600; color: #0A2540; line-height: 1.2; white-space: nowrap }
.tx-d { font-size: 10.5px; color: #8898AA; font-weight: 400; line-height: 1.2; white-space: nowrap }
.tx-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; margin-left: 8px }
.tx-a { font-size: 12.5px; font-weight: 700; color: #DC2626; line-height: 1.2; white-space: nowrap }
.tx-badge {
  font-size: 9.5px; font-weight: 500; line-height: 1; padding: 2px 5px;
  border-radius: 4px; background: rgba(220,38,38,.08); color: #DC2626;
  white-space: nowrap;
}

/* ── GLOBE ─────────────────────────────────────────────────── */
.globe-vis { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center }
.globe {
  width: 110px; height: 110px; border-radius: 50%;
  border: 1.5px solid rgba(83,58,253,.2); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.globe::before {
  content: ""; position: absolute; width: 140%; height: 140%; border-radius: 50%;
  border: 1px solid rgba(83,58,253,.08); top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.globe::after {
  content: ""; position: absolute; width: 180%; height: 180%; border-radius: 50%;
  border: 1px solid rgba(83,58,253,.05); top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gdot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 0 0 3px rgba(83,58,253,.2);
}

/* ── CRYPTO PILLS ─────────────────────────────────────────── */
.cpills-vis { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px }
.cpill {
  display: flex; align-items: center; gap: 7px; background: #fff;
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ── PAY METHODS ──────────────────────────────────────────── */
.pay-vis { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px }
.pmeth {
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  padding: 10px 14px; display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ── USE CASES ────────────────────────────────────────────── */
.usecases { background: var(--bg2); padding: 100px 40px }
.usecases-inner { max-width: 1100px; margin: 0 auto }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: 5px;
  padding: 28px;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.34,1.2,.64,1), border-color .3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.case-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-3px); border-color: #B8CCDB;
}
.case-iw {
  width: 48px; height: 48px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.case-card h4 { font-size: 16px; font-weight: 400; letter-spacing: -.2px; margin-bottom: 8px; color: var(--navy) }
.case-card p { font-size: 13px; color: var(--slate-blue); line-height: 1.6; margin-bottom: 14px }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap }
.ctag {
  font-size: 11px; font-weight: 500; padding: 4px 8px;
  border-radius: 3px; background: var(--lav);
  color: var(--purple); border: 1px solid var(--purple-d);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how { padding: 100px 40px; max-width: 1100px; margin: 0 auto; text-align: center }
.steps-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 64px; position: relative;
}
.steps-row::before {
  content: ""; position: absolute; top: 27px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  border-radius: 2px; z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1 }
.step-n {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: background .2s, box-shadow .2s, transform .2s;
}
.step-item:hover .step-n {
  background: var(--lav);
  box-shadow: 0 4px 16px rgba(83,58,253,.2);
  transform: scale(1.08);
}
.step-item h4 { font-size: 15px; font-weight: 400; margin-bottom: 8px; color: var(--navy) }
.step-item p  { font-size: 13px; color: var(--slate-blue); line-height: 1.65 }

/* ── STEP COINS ───────────────────────────────────────────── */
.step-coins {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-top: 16px;
}
.step-coin {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%; overflow: visible;
  flex-shrink: 0; cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.step-coin-inner {
  width: 32px; height: 32px; border-radius: 50%;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15), 0 0 0 1.5px rgba(255,255,255,.6);
  transition: box-shadow .2s ease;
}
.step-coin-inner svg { width: 100%; height: 100%; display: block; flex-shrink: 0 }
.step-coin:hover { transform: translateY(-4px) scale(1.1) }
.step-coin:hover .step-coin-inner {
  box-shadow: 0 8px 20px rgba(0,0,0,.2), 0 0 0 2px rgba(255,255,255,.9);
}
/* coin tooltip */
.step-coin::after {
  content: attr(data-name);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) scale(.85); opacity: 0;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 500; white-space: nowrap;
  padding: 3px 7px; border-radius: 4px; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10;
}
.step-coin:hover::after { opacity: 1; transform: translateX(-50%) scale(1) }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-wrap { padding: 60px 40px 120px }
.cta-box {
  max-width: 1100px; margin: 0 auto; background: var(--dark-blue);
  border-radius: 5px; padding: 80px 72px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 80px;
  position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(83,58,253,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 20%, rgba(255,97,24,.25) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 85%, rgba(83,58,253,.15) 0%, transparent 40%);
  pointer-events: none;
}
.cta-left { position: relative; z-index: 1 }
.cta-left h2 {
  font-size: clamp(26px, 3vw, 40px); font-weight: 300;
  letter-spacing: -1.5px; color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.cta-left p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7 }
.cta-right {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.cta-btn-w {
  height: 48px; padding: 0 28px; border: none; border-radius: 4px;
  background: #fff; color: var(--navy); font: 400 15px/1 inherit;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .25s cubic-bezier(.34,1.2,.64,1);
}
.cta-btn-w:hover {
  background: var(--bg-light);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transform: translateY(-3px);
}
.cta-btn-o {
  height: 48px; padding: 0 24px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: rgba(255,255,255,.7); font: 400 15px/1 inherit; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.cta-btn-o:hover { border-color: rgba(255,255,255,.5); color: #fff }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap }
.ti { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.4) }
.tdot { width: 5px; height: 5px; border-radius: 50%; background: #00c070 }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border); padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.foot-logo { font-weight: 600; font-size: 16px; color: var(--navy) }
.foot-links { display: flex; gap: 20px }
.foot-links a {
  font-size: 13px; color: var(--light-s); text-decoration: none; transition: color .15s;
}
.foot-links a:hover { color: var(--navy) }
.foot-copy { font-size: 13px; color: var(--light-s) }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease }
.r.v { opacity: 1; transform: translateY(0) }
.stats-row .stat:nth-child(1).r { transition-delay:   0ms }
.stats-row .stat:nth-child(2).r { transition-delay:  80ms }
.stats-row .stat:nth-child(3).r { transition-delay: 160ms }
.stats-row .stat:nth-child(4).r { transition-delay: 240ms }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
@keyframes float  { 0%,100% { transform: translateY(0) }  50% { transform: translateY(-7px) } }
.float-a { animation: float 4s ease-in-out infinite }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,27,49,.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 400;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto }
.modal {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 28px; width: 460px; max-width: 100%; max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  transform: scale(.95) translateY(8px); opacity: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); opacity: 1 }
.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.modal-title { font-size: 20px; font-weight: 400; color: var(--navy); letter-spacing: -.3px }
.modal-subtitle { font-size: 13px; color: var(--light-s); margin-top: 4px }
.close-btn {
  width: 32px; height: 32px; border-radius: 4px; background: transparent;
  border: 1px solid var(--border); color: var(--light-s); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.close-btn:hover { background: var(--bg2); color: var(--navy) }
.close-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round }
.crypto-title    { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 2px }
.crypto-subtitle { font-size: 13px; color: var(--light-s); margin-bottom: 14px }
.crypto-options  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px }

/* EVM accordion */
.evm-group {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.evm-group:hover { border-color: #B8CCDB }
.evm-group.expanded { background: #fff }
.evm-group.has-selection {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(83,58,253,.1);
}
.evm-header {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; cursor: pointer; user-select: none;
}
.evm-logo-stack { position: relative; width: 42px; height: 42px; flex-shrink: 0 }
.evm-logo-stack svg {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bg2); box-sizing: content-box; transition: border-color .2s;
}
.evm-group.expanded .evm-logo-stack svg { border-color: #fff }
.evm-logo-stack svg:nth-child(1) { top: -2px; left: -2px; z-index: 4 }
.evm-logo-stack svg:nth-child(2) { top: -2px; right: -2px; z-index: 3 }
.evm-logo-stack svg:nth-child(3) { bottom: -2px; left: -2px; z-index: 2 }
.evm-logo-stack svg:nth-child(4) { bottom: -2px; right: -2px; z-index: 1 }
.evm-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0 }
.evm-title    { font-size: 14px; font-weight: 500; color: var(--navy) }
.evm-subtitle { font-size: 12px; color: var(--light-s); line-height: 1.4 }
.evm-chevron  { flex-shrink: 0; color: var(--light-s); transition: transform .25s }
.evm-chevron svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round }
.evm-group.expanded .evm-chevron { transform: rotate(180deg) }
.evm-networks { max-height: 0; overflow: hidden; transition: max-height .3s cubic-bezier(.16,1,.3,1) }
.evm-group.expanded .evm-networks { max-height: 700px }
.evm-networks-inner {
  padding: 4px 8px 10px; display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border); margin-top: 2px;
}
.evm-hint { padding: 10px 14px 6px; font-size: 11px; color: var(--light-s); line-height: 1.5 }
.evm-network {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 4px; cursor: pointer; transition: background .15s;
}
.evm-network:hover    { background: rgba(83,58,253,.05) }
.evm-network.selected { background: rgba(83,58,253,.08) }
.evm-network-logo { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; overflow: hidden }
.evm-network-logo svg { width: 100%; height: 100%; display: block }
.dual-logo { width: 44px; height: 28px; overflow: visible; position: relative; flex-shrink: 0 }
.dual-logo svg { width: 28px; height: 28px; border-radius: 50%; display: block; position: absolute; top: 0 }
.dual-logo svg:nth-child(1) { left: 0; z-index: 2 }
.dual-logo svg:nth-child(2) { left: 18px; z-index: 1; box-shadow: -1px 0 0 2px #fff }
.trx-logo-stack { position: relative; width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center }
.trx-logo-stack svg {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bg2); box-sizing: content-box; transition: border-color .2s;
}
.evm-group.expanded .trx-logo-stack svg { border-color: #fff }
.trx-logo-stack svg:nth-child(1) { left: 0; z-index: 2 }
.trx-logo-stack svg:nth-child(2) { right: 0; z-index: 1 }
.evm-network-info  { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0 }
.evm-network-name  { font-size: 13px; font-weight: 500; color: var(--navy) }
.evm-network-chain { font-size: 11px; color: var(--light-s) }
.evm-network-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all .2s;
}
.evm-network.selected .evm-network-check { background: var(--purple); border-color: var(--purple) }
.evm-network-check svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0 }
.evm-network.selected .evm-network-check svg { opacity: 1 }

/* Solana single option */
.crypto-option {
  display: flex; align-items: center; gap: 14px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 4px; padding: 14px 16px;
  cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s, transform .05s;
}
.crypto-option:hover    { background: #fff; border-color: #B8CCDB; box-shadow: 0 2px 12px rgba(0,0,0,.06) }
.crypto-option:active   { transform: scale(.995) }
.crypto-option.selected { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(83,58,253,.1) }
.crypto-logo     { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0 }
.crypto-logo > svg { width: 100%; height: 100%; border-radius: 50% }
.crypto-info     { flex: 1; display: flex; flex-direction: column; gap: 2px }
.crypto-name     { font-size: 14px; font-weight: 500; color: var(--navy) }
.crypto-network  { font-size: 12px; color: var(--light-s) }
.check-indicator {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all .2s;
}
.crypto-option.selected .check-indicator { background: var(--purple); border-color: var(--purple) }
.check-indicator svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity .15s }
.crypto-option.selected .check-indicator svg { opacity: 1 }


/* Continue button */
.continue-btn {
  width: 100%; height: 48px; border-radius: 4px;
  font-size: 15px; font-weight: 400; border: none;
  background: rgba(83,58,253,.12); color: var(--purple-d);
  cursor: not-allowed; transition: all .2s; font-family: inherit;
}
.continue-btn.enabled {
  background: var(--purple); color: #fff; cursor: pointer;
  box-shadow: 0 4px 14px rgba(83,58,253,.35);
}
.continue-btn.enabled:hover { background: var(--purple-h) }
.continue-btn.loading {
  cursor: not-allowed; pointer-events: none;
  color: transparent; background: var(--purple);
  position: relative; overflow: hidden;
}
.continue-btn.loading::after {
  content: ''; position: absolute; width: 20px; height: 20px;
  top: 50%; left: 50%; margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg) } }

/* ── iOS SAFE AREA (notch / Dynamic Island) ───────────────── */
@supports (padding: max(0px)) {
  nav {
    padding-left:  max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
  }
  .hero, .stats-section, .crypto-nets, .features,
  .usecases, .how, .cta-wrap, footer {
    padding-left:  max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
  }
  footer { padding-bottom: max(32px, env(safe-area-inset-bottom)) }
}
@media (max-width: 640px) {
  @supports (padding: max(0px)) {
    nav { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)) }
    .hero, .features, .crypto-nets, .usecases, .how, .cta-wrap, footer {
      padding-left:  max(16px, env(safe-area-inset-left));
      padding-right: max(16px, env(safe-area-inset-right));
    }
    footer { padding-bottom: max(24px, env(safe-area-inset-bottom)) }
  }
}

/* ── ACCESSIBILITY ────────────────────────────────────────── */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* ─ Tablet (≤960px) ─────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 20px }
  .nav-links { display: none }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    text-align: center;
    min-height: auto;
  }
  .hero-sub { margin: 0 auto 32px }
  .hero-btns { justify-content: center }
  .hero-right { margin-top: 48px }
  .card-scene { width: 280px }
  .pill-usdt  { top: -16px; right: -12px }
  .pill-world { bottom: -16px; left: -12px }

  .stats-section { padding: 60px 24px }
  .stats-row { grid-template-columns: 1fr 1fr }

  .features, .crypto-nets { padding: 70px 24px }
  .bento { grid-template-columns: 1fr }
  .bento-card.tall { grid-row: span 1 }

  .nets-grid { grid-template-columns: 1fr }
  .cases-grid { grid-template-columns: 1fr 1fr }
  .usecases { padding: 70px 24px }

  .how { padding: 70px 24px }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px }
  .steps-row::before { display: none }

  .cta-wrap { padding: 40px 24px 80px }
  .cta-box  { grid-template-columns: 1fr; padding: 50px 32px; gap: 32px }

  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start }

  .step-coins { gap: 6px }
  .step-coin, .step-coin-inner { width: 28px; height: 28px }
  .step-coin::after { display: none }
}

/* ─ iPhone / Android (≤640px) ───────────────────────────── */
@media (max-width: 640px) {
  /* nav */
  nav { height: 56px; padding: 0 16px }
  .nav-r .nbtn-ghost { display: none }
  .nbtn-solid { height: 32px; padding: 0 14px; font-size: 13px }

  /* hero */
  .hero { padding: 48px 16px 32px }
  h1 {
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: -1.8px;
    line-height: 1.1;
  }
  .hero-sub { font-size: 15px; line-height: 1.65 }
  .hbtn-p, .hbtn-g { height: 44px; font-size: 15px }
  .hero-right { margin-top: 40px }
  .card-scene { width: 100%; max-width: 320px }
  .pill { padding: 8px 12px; font-size: 12px; gap: 8px }
  .pill-usdt { top: -12px; right: -8px }
  .pill-world { bottom: -12px; left: -8px }
  .pill-ico { width: 26px; height: 26px }

  /* stats */
  .stats-section { padding: 48px 16px }
  .stats-section h2 { font-size: 26px; margin-bottom: 40px }
  .stats-row { grid-template-columns: 1fr 1fr }
  .stat { padding: 28px 12px }
  .stat-num { font-size: 28px }
  .stat-lbl { font-size: 12px }

  /* networks */
  .crypto-nets { padding: 56px 16px }
  .sec-title { font-size: 26px }
  .sec-body { font-size: 14px }
  .nets-grid { grid-template-columns: 1fr; gap: 12px }
  .net-card { padding: 18px }

  /* features */
  .features { padding: 56px 16px }
  .bc-body { padding: 20px 20px 0 }
  .bc-body h3 { font-size: 16px }
  .bc-body p { font-size: 13px }

  /* transaction list */
  .tx-list-vis { padding: 8px 10px 0 }
  .tx-r { padding: 8px 10px; border-radius: 10px }
  .tx-avatar { width: 32px; height: 32px; border-radius: 8px; font-size: 10px }
  .tx-n { font-size: 12px }
  .tx-d { font-size: 10px }
  .tx-a { font-size: 12px }
  .tx-badge { font-size: 9px }

  /* use cases */
  .usecases { padding: 56px 16px }
  .cases-grid { grid-template-columns: 1fr }
  .case-card { padding: 20px }

  /* how it works */
  .how { padding: 56px 16px }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px }
  .step-n { width: 48px; height: 48px; font-size: 16px }
  .step-item h4 { font-size: 14px }
  .step-item p  { font-size: 12px }
  .step-coins { gap: 5px; margin-top: 12px }
  .step-coin, .step-coin-inner { width: 26px; height: 26px }

  /* CTA */
  .cta-wrap { padding: 32px 16px 64px }
  .cta-box  { padding: 40px 24px; gap: 24px }
  .cta-left h2 { font-size: 26px }
  .cta-left p  { font-size: 14px }
  .cta-btn-w { height: 44px; font-size: 14px }

  /* modal */
  .modal { padding: 20px; border-radius: 12px }
  .modal-title { font-size: 18px }

  /* footer */
  footer { padding: 24px 16px; gap: 16px }
  .foot-links { gap: 14px; flex-wrap: wrap }
}

/* ─ Small phones (≤390px — iPhone SE, Galaxy S series) ──── */
@media (max-width: 390px) {
  .hero { padding: 36px 14px 28px }
  h1 { font-size: 32px; letter-spacing: -1.5px }
  .hero-sub { font-size: 14px }
  .hero-btns { flex-direction: column; align-items: stretch }
  .hbtn-p, .hbtn-g { justify-content: center }
  .stats-row { grid-template-columns: 1fr }
  .stat { border-right: none; border-bottom: 1px solid rgba(83,58,253,.12) }
  .stat:last-child { border-bottom: none }
  .steps-row { grid-template-columns: 1fr }
  .cta-box { padding: 28px 18px }
  .trust-row { gap: 10px }
}

/* ── Three payment buttons ─────────────────────────────────── */
.pay-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.pay-buttons-row .continue-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  background: #533AFD;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
}
.pay-buttons-row .continue-btn:hover {
  background: #4025e0;
}

/* ── Three payment buttons ─────────────────────────────────── */
.pay-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.pay-buttons-row .continue-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  background: #533AFD;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  transition: background 0.2s;
}
.pay-buttons-row .continue-btn:hover {
  background: #4025e0;
}
