:root{
  --bg:#070A10;
  --card:rgba(255,255,255,.035);
  --stroke:rgba(255,255,255,.085);
  --text:#EEF2FF;
  --muted:rgba(238,242,255,.72);
  --accent:#8B5CF6;
  --accent2:#A78BFA;
  --shadow: 0 30px 120px rgba(0,0,0,.45);
  --r:22px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{ box-sizing:border-box; min-width:0; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; overflow-x: hidden; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:transparent;
  overflow-x:hidden;
  -webkit-tap-highlight-color: transparent;
}
button, a, [role="button"]{ touch-action: manipulation; }

/* Custom scrollbar design for all scrollable elements */
*::-webkit-scrollbar{ width: 10px; height: 10px; }
*::-webkit-scrollbar-track{ background: rgba(255,255,255,.03); border-radius: 10px; }
*::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.15); border-radius: 10px; border: 2px solid transparent; background-clip: padding-box; transition: background 0.2s ease; }
*::-webkit-scrollbar-thumb:hover{ background: rgba(255,255,255,.25); background-clip: padding-box; }
*::-webkit-scrollbar-thumb:active{ background: rgba(139,92,246,.4); background-clip: padding-box; }
*{ scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) rgba(255,255,255,.03); }

.container{ width: min(1140px, calc(100% - 40px)); margin: 0 auto; padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); box-sizing: border-box; }
body{ max-width: none; margin: 0; }
.section{ padding: clamp(28px, 4.5vw, 54px) 0; }
.page{ padding: 26px 0 26px; }

.bg-orbs{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.orb{
  position:absolute; width:680px; height:680px; border-radius:999px;
  filter: blur(34px);
  opacity:.85;
  transform: translateZ(0);
  animation: float 10s ease-in-out infinite;
}
.o1{ left:-260px; top:-280px; background: radial-gradient(circle, rgba(139,92,246,.28), transparent 62%); }
.o2{ right:-300px; top:-220px; background: radial-gradient(circle, rgba(167,139,250,.14), transparent 62%); animation-delay: -2.4s; }
.o3{ left:20%; bottom:-420px; background: radial-gradient(circle, rgba(139,92,246,.12), transparent 62%); animation-delay: -4.8s; }

@keyframes float{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(18px) translateX(10px); }
}

a{ color:inherit; text-decoration:none; }
h1{ margin: 14px 0 12px; font-size: clamp(38px, 5.6vw, 60px); letter-spacing:-.035em; }
h2{ margin:0 0 10px; font-size: 26px; letter-spacing:-.02em; }
h3{ margin: 12px 0 8px; font-size:18px; letter-spacing:-.01em; }
p{ margin:0; }
.lead{ color: rgba(238,242,255,.86); line-height:1.7; max-width: 62ch; font-size: 16px; }
.muted{ color: var(--muted); line-height:1.75; }
.micro{ font-size:12px; }
.mono{ font-family: var(--mono); }

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background: transparent;
  backdrop-filter: blur(12px);
  border-bottom: none;
}
.header--compact .header__inner{ padding: 14px 0; }
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: transparent;
  border: none;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:950; letter-spacing:.2px; }
.brand__sub{ font-size:12px; color: var(--muted); margin-top:3px; }

.nav{ display:flex; align-items:center; gap:10px; }
.nav__link{
  padding: 8px 0; border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .08s ease;
}
.nav__link:hover{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08); color: var(--text); }
.nav__link:active{ transform: translateY(1px); }
.nav__link--manual{
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(238,242,255,.9);
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.25);
  position: relative;
  overflow: hidden;
}
.nav__link--manual::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(167,139,250,.06));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav__link--manual:hover{
  background: rgba(139,92,246,.15);
  border-color: rgba(139,92,246,.4);
  color: rgba(238,242,255,.98);
  box-shadow: 0 0 0 4px rgba(139,92,246,.08);
}
.nav__link--manual:hover::before{
  opacity: 1;
}
.nav__link--manual:active{
  transform: translateY(1px);
  box-shadow: 0 0 0 2px rgba(139,92,246,.12);
}
.nav__cta{
  padding: 10px 14px;
  border-radius: 999px;
  font-weight:950;
  border:1px solid rgba(139,92,246,.45);
  background: rgba(139,92,246,.12);
  transition: box-shadow .18s ease, transform .08s ease, border-color .18s ease;
}
.nav__cta:hover{ border-color: rgba(139,92,246,.7); box-shadow: 0 0 0 6px rgba(139,92,246,.12); }
.nav__cta:active{ transform: translateY(1px); }

.nav--simple .nav__cta{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.10); }

.burger{
  width:48px; height:48px;
  min-width:48px; min-height:48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  display:grid; place-items:center;
  gap:0;
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease, transform .08s ease;
}
.burger:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.burger:active{ transform: scale(0.96); }
.burger span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(238,242,255,.86);
  border-radius:999px;
  margin: 2px 0;
}

/* Mobile nav (shared between pages) */
.mnav{ display:none; }
.mnav.open{
  display:block;
  position:fixed;
  inset:68px 0 auto 0;
  padding: 12px;
  z-index:30;
}
.mnav__panel{
  width:min(520px, 92vw);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.92);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 12px;
  animation: pop .16s ease-out;
}
@keyframes pop{ from{ transform: translateY(-8px); opacity:0; } to{ transform: translateY(0); opacity:1; } }
.mnav__link{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  color: rgba(238,242,255,.9);
  border: 1px solid transparent;
}
.mnav__link:hover{ border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.mnav__cta{
  display:flex; justify-content:center;
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  font-weight:950;
}

/* Hero */
.hero{
  padding: 36px 0 10px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items:start;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(238,242,255,.90);
  font-size: 12px;
  font-weight: 950;
}
.badge__dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(139,92,246,.95);
  box-shadow: 0 0 0 6px rgba(139,92,246,.14);
}

.hero__actions{
  display:flex; flex-direction:column;
  gap: 12px;
  margin-top: 20px;
}
.hero__stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.stat{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 12px;
}
.stat__k{ font-size: 12px; color: var(--muted); }
.stat__v{ margin-top: 8px; font-weight: 950; color: rgba(238,242,255,.92); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.028));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card--glass{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 40px 140px rgba(0,0,0,.5);
}
.card__head{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.card__title{ font-weight: 950; letter-spacing:-.01em; }
.chip{
  font-size:12px;
  font-weight:950;
  color: rgba(238,242,255,.92);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
}
.mock{ display:grid; gap: 10px; }
.mock__row{
  display:flex; justify-content:space-between; align-items:center;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.14);
  padding: 12px;
  border-radius: 18px;
}
.label{ color: var(--muted); font-size:12px; }
.value{ font-weight: 950; color: rgba(238,242,255,.92); }

.hint{ margin-top: 12px; color: var(--muted); font-size: 13px; line-height:1.6; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight: 950;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}
.btn:hover{ border-color: rgba(139,92,246,.55); box-shadow: 0 0 0 6px rgba(139,92,246,.12); }
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{ outline: 2px solid rgba(139,92,246,.9); outline-offset: 2px; }
.btn--primary{
  border-color: rgba(139,92,246,.55);
  background: linear-gradient(135deg, rgba(139,92,246,.92), rgba(167,139,250,.65));
}
.btn--ghost{ background: transparent; }
.btn--full{ width:100%; }

/* Feature grid */
.section__head{ margin-bottom: 18px; }
.grid3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.icon{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}

/* Split */
.split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:start;
}
.list{ list-style:none; padding:0; margin: 14px 0 0; display:grid; gap: 10px; }
.check{
  width: 22px; height: 22px;
  display:inline-grid; place-items:center;
  border-radius: 10px;
  border: 1px solid rgba(139,92,246,.25);
  background: rgba(139,92,246,.10);
  margin-right: 10px;
  font-weight: 950;
}
.tokens{ display:grid; gap: 10px; }
.token{
  display:flex; justify-content:space-between; align-items:center;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  padding: 12px;
  border-radius: 18px;
}

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 950;
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{ margin-top: 10px; }

.ctaCard{
  margin-top: 16px;
  display:flex; flex-direction:column; gap: 12px;
  align-items:flex-start; justify-content:space-between;
}

/* Region page layout */
.pageHead{
  margin-top: 18px;
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 16px; flex-wrap:wrap;
}
.status{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  font-weight: 950;
  font-size: 12px;
  color: rgba(238,242,255,.90);
}
.status__dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(238,242,255,.82);
}

.layout{
  margin-top: 16px;
  display:grid;
  gap: 14px;
}

/* KV blocks */
.kv{
  margin: 4px 0 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.kv__item{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  padding: 14px;
  border-radius: 18px;
}
.pill{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.12);
}
.pill--muted{ background: rgba(0,0,0,.18); }
.pill--accent{ border-color: rgba(139,92,246,.25); background: rgba(139,92,246,.10); }
.flag{
  width: 26px; height: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

/* Search */
.search{ display:flex; }
.search__input{
  width: 160px;
  padding: 8px 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(238,242,255,.9);
  outline: none;
}
.search__input:focus{ border-color: rgba(139,92,246,.45); box-shadow: 0 0 0 6px rgba(139,92,246,.10); }

/* Country row */
.row{
  display:grid;
  gap: 12px;
  max-height: clamp(420px, 54vh, 640px);
  overflow-y: auto;
  padding: 6px 2px 10px;
}
.row::-webkit-scrollbar{ width: 10px; }
.row::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius: 999px; }
.row::-webkit-scrollbar-track{ background: rgba(255,255,255,.04); border-radius: 999px; }

.country{
  flex: 0 0 auto;
  width: 100%;
  scroll-snap-align: start;
  text-align:left;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 18px;
  color: var(--text);
  cursor: pointer;
  transition: transform .10s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.country:hover{
  border-color: rgba(139,92,246,.52);
  background: rgba(139,92,246,.08);
  box-shadow: 0 0 0 6px rgba(139,92,246,.10);
}
.country:active{ transform: translateY(2px); }
.country:focus-visible{ outline: 2px solid rgba(139,92,246,.9); outline-offset: 2px; }
.country__top{ display:flex; align-items:center; gap: 12px; }
.country__name{ font-weight: 980; }
.country__tag{ margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.65; min-height: 42px; }
.country__bottom{ margin-top: 14px; display:flex; align-items:center; justify-content:space-between; gap: 10px; }

/* Ordered list */
.ol{ margin:0; padding-left: 18px; }
.ol li{ margin: 10px 0; color: rgba(238,242,255,.9); line-height: 1.6; }

/* Overlay */
.overlay{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 50;
  padding: 16px;
}
.overlay.open{ display:flex; }
.overlay__card{
  width:min(460px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.92);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align:center;
}
.spinner{
  width: 54px; height: 54px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,.14);
  border-top-color: rgba(139,92,246,.95);
  margin: 2px auto 14px;
  animation: spin 1s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.overlay__title{ font-weight: 980; margin-bottom: 6px; }

/* Bottom sheet */
.sheetBg{
  position:fixed; inset:0;
  display:none;
  align-items:flex-end; justify-content:center;
  background: rgba(0,0,0,.55);
  padding: 14px;
  z-index: 60;
}
.sheetBg.open{ display:flex; }
.sheet{
  width:min(740px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.92);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.sheetBg.open .sheet{ transform: translateY(0); opacity:1; }
.sheet__head{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap: 12px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.sheet__title{ font-weight: 980; }
.iconBtn{
  width: 46px; height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor:pointer;
}
.sheet__body{ padding: 18px 20px; }
.sheet__foot{
  display:flex; gap: 12px;
  justify-content:flex-end; flex-wrap:wrap;
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* KV2 */
.kv2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.kv2__k{ font-size: 12px; color: var(--muted); }
.kv2__v{ font-weight: 980; display:flex; align-items:center; gap: 10px; }

/* Toast */
.toast{
  position:fixed;
  left:50%; transform: translateX(-50%);
  bottom: 18px;
  width: min(520px, 92vw);
  display:none;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.92);
  box-shadow: var(--shadow);
  color: rgba(238,242,255,.92);
  z-index: 70;
}
.toast.show{ display:block; animation: toast .18s ease-out; }
@keyframes toast{ from{ transform: translateX(-50%) translateY(10px); opacity:0; } to{ transform: translateX(-50%) translateY(0); opacity:1; } }

/* Footer */
.footer{ border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; margin-top: 12px; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
.footer__inner{ display:flex; justify-content:space-between; align-items:center; gap: 12px; flex-wrap:wrap; }

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in{ opacity: 1; transform: translateY(0); }
.d1{ transition-delay: .08s; }
.d2{ transition-delay: .16s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .orb{ animation:none; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .spinner{ animation:none; }
}

/* Responsive */
@media (max-width: 480px){
  .container{ width: calc(100% - 40px); padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
  .section{ padding: clamp(24px, 5vw, 40px) 0; }
  .card{ padding: 16px; }
  .btn{ padding: 14px 16px; min-height: 48px; }
  .header__inner{ padding: 12px 0; }
  .footer__inner{ flex-direction: column; text-align: center; }
}
@media (min-width: 640px){
  .grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero2__actions--center{ flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (min-width: 860px){
  .hero{ grid-template-columns: 1.08fr .92fr; gap: 26px; }
  .hero__actions{ flex-direction: row; }
  .grid3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split{ grid-template-columns: 1.1fr .9fr; gap: 18px; }
  .ctaCard{ flex-direction: row; align-items:center; }
  .layout{ grid-template-columns: 1fr 1.2fr; }
  .kv{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .kv2{ grid-template-columns: 140px 1fr; }
  .search__input{ width: 220px; }
}

/* Bullets */
.bullets{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.bullets li{ display:flex; gap:10px; align-items:flex-start; color: rgba(238,242,255,.90); line-height:1.6; }
.checkDot{
  width:22px; height:22px;
  display:inline-grid; place-items:center;
  border-radius:10px;
  border:1px solid rgba(139,92,246,.25);
  background: rgba(139,92,246,.10);
  flex:0 0 auto;
  font-weight:950;
}

.pill--danger{
  border-color: rgba(244,63,94,.35);
  background: rgba(244,63,94,.12);
}

/* Chip group */
.chips{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.chip--danger{
  border-color: rgba(244,63,94,.35);
  background: rgba(244,63,94,.12);
}

/* ===== Landing v10 additions ===== */
.hero2{
  padding: clamp(30px, 4.5vw, 52px) 0 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}
.hero2__eyebrow{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.hero2__lead{
  margin-top: 10px;
  color: rgba(238,242,255,.86);
  line-height: 1.75;
  max-width: 64ch;
  font-size: 16px;
}
.hero2__actions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 18px;
}
.hero2__chips{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat2{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 12px;
}
.stat2__k{ font-size: 12px; color: var(--muted); }
.stat2__v{ margin-top: 8px; font-weight: 950; color: rgba(238,242,255,.92); }

.phone{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.88);
  box-shadow: 0 46px 160px rgba(0,0,0,.55);
  overflow:hidden;
}
.phone__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}
.phone__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(139,92,246,.95);
  box-shadow: 0 0 0 6px rgba(139,92,246,.14);
}
.phone__title{ font-weight: 950; letter-spacing: -.01em; }
.phone__pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(238,242,255,.90);
  font-size: 12px;
  font-weight: 950;
}
.phone__body{ padding: 14px; display:grid; gap: 10px; }

.miniGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.miniCard{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 12px;
}
.miniCard__k{ font-size: 12px; color: var(--muted); }
.miniCard__v{ margin-top: 8px; font-weight: 950; color: rgba(238,242,255,.92); }

.skeleton{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 12px;
  display:grid;
  gap: 10px;
  overflow:hidden;
}
.sk{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.14), rgba(255,255,255,.06));
  background-size: 240% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.sk1{ width: 82%; }
.sk2{ width: 64%; }
.sk3{ width: 72%; }
@keyframes shimmer{
  0%{ background-position: 120% 0; }
  100%{ background-position: -120% 0; }
}
.note{ margin-top: 12px; font-size: 13px; line-height: 1.6; }

.strip__k{ color: var(--muted); font-size: 12px; }
.strip__v{ font-weight: 950; color: rgba(238,242,255,.92); }

.split2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:start;
}
.steps2{ display:grid; gap: 10px; margin-top: 14px; }
.step2{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 12px;
}
.step2__n{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.22);
  font-weight: 950;
}
.step2__title{ font-weight: 950; }

.grid2x{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px){
  .hero2{
  padding: clamp(30px, 4.5vw, 52px) 0 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}
  .hero2__actions{ flex-direction: row; }
    .split2{ grid-template-columns: 1.1fr .9fr; gap: 18px; }
  .grid2x{ grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .sk{ animation:none; }
}

/* Landing: what changes card */
.what{ display:grid; gap:10px; }
.what__row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 12px;
}
.what__k{ color: var(--muted); font-size: 12px; }
.what__v{ font-weight: 950; color: rgba(238,242,255,.92); text-align:right; }
@media (max-width: 520px){
  .what__row{ flex-direction:column; }
  .what__v{ text-align:left; }
}

/* Wallet marquee */
.marquee{
  width: min(980px, 100%);
  margin: 0 auto;
  position:relative;
  overflow:hidden;
  border-radius: 28px;

  /* no hard border / no hard background */
  border: none;
  background: transparent;
  box-shadow: none;

  /* fade container edges so it blends into the page */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.marquee::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 28px;
  pointer-events:none;
  /* ultra-soft glow instead of a border */
  background: radial-gradient(120% 120% at 50% 50%, rgba(139,92,246,.10), rgba(0,0,0,0) 60%);
  filter: blur(10px);
  opacity: .85;
}
.marquee__track{
  position:relative;
  display:flex;
  gap: 14px;
  padding: 18px 10px;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.logoCard{
  flex:0 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.012);
  padding: 8px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.logoCard img{
  height: 48px;
  width: auto;
  display:block;
  opacity: .98;
  transform: translateZ(0);
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none !important; }
}

/* Center helpers */
.center{ text-align:center; }

/* Rhythm helpers */
.rhythm{ margin-top: 10px; }

.marquee::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(7,10,16,1) 0%, rgba(7,10,16,0) 12%, rgba(7,10,16,0) 88%, rgba(7,10,16,1) 100%);
  opacity: .9;
}


/* Hero single-column */
.hero2--single{
  grid-template-columns: 1fr !important;
}
.hero2__copy{
  max-width: 860px;
  margin: 0 auto;
}
.hero2__eyebrow--center{ justify-content:center; }
.hero2__actions--center{
  justify-content:center;
  align-items:center;
}
.hero2__actions--center .btn{ min-width: 180px; }
.hero2__chips--center{
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}
@media (min-width: 860px){
  .hero2__actions--center{ flex-direction: row; }
}


/* ===== Hero typography v18 ===== */
.hero2__eyebrow{ margin-bottom: 10px; }
.hero2__title{
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 6px auto 0;
  max-width: 18ch;
}
.hero2__lead{
  font-size: 16px;
  line-height: 1.8;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}
.hero2__actions{ margin-top: 16px; }
.hero2__chips{
  margin-top: 18px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}
@media (min-width: 740px){
  .hero2__chips{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* How section single column */
.split2--single{ grid-template-columns: 1fr !important; }

/* Brand logo image */
.brand__mark--img{ padding: 0; overflow:hidden; }
.brand__mark--img img{ width: 28px; height: 28px; display:block; }


/* ===== Header v24 (ultra-minimal) ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: none;
}
.header__inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{ display:flex; align-items:center; gap: 10px; text-decoration:none; }
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: transparent;
  border: none;
}
.brand__mark--img img{ width: 28px; height: 28px; display:block; }
.brand__name{ font-weight: 950; letter-spacing: -.02em; font-size: 14px; color: rgba(238,242,255,.96); }
.nav{ display:flex; align-items:center; gap: 18px; }
.nav__link{ color: rgba(238,242,255,.76); text-decoration:none; font-weight: 850; font-size: 13px; padding: 10px 10px; border-radius: 12px; }
.nav__link:hover{ background: rgba(255,255,255,.04); color: rgba(238,242,255,.92); }
.nav__cta{ padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(139,92,246,.22); background: rgba(139,92,246,.10); color: rgba(238,242,255,.95); font-weight: 950; text-decoration:none; }
.nav__cta:hover{ background: rgba(139,92,246,.14); }

.burger{ width: 42px; height: 42px; border-radius: 14px; display:none; }

/* ===== Typography ===== */
:root{ --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; }
body{ font-family: var(--font-sans); }
/* ===== Hero spacing v26 (more air, cleaner hierarchy) ===== */
.hero2{
  padding: clamp(34px, 5vw, 64px) 0 28px !important;
  gap: 22px !important;
}
.hero2__title{
  max-width: 19ch !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.03 !important;
  font-size: clamp(42px, 6vw, 68px) !important;
}
.hero2__lead{
  margin-top: 14px !important;
  max-width: 70ch !important;
  line-height: 1.85 !important;
}
.hero2__actions{
  margin-top: 22px !important;
  gap: 14px !important;
}
.hero2__chips{
  margin-top: 22px !important;
  gap: 12px !important;
}
.stat2{
  padding: 14px !important;
}
@media (min-width: 860px){
  .hero2__actions--center .btn{ min-width: 200px; }
}
@media (max-width: 520px){
  .hero2__title{ font-size: clamp(38px, 10vw, 46px) !important; }
  .hero2__lead{ font-size: 15px !important; }
  .hero2__actions--center .btn{ min-width: 0; width: 100%; }
}

.section__head{ margin-bottom: 22px !important; }

.dot{ display:inline-block; width: .15em; }

/* ===== Why section accents v27 ===== */
#why{ scroll-margin-top: 80px; }
#why .grid3{ gap: 16px; }
#why .card{
  position: relative;
  overflow:hidden;
}
#why .card::after{
  content:"";
  position:absolute;
  inset:auto -60px -70px -60px;
  height: 160px;
  background: radial-gradient(closest-side, rgba(139,92,246,.10), rgba(0,0,0,0));
  filter: blur(10px);
  opacity: .8;
  pointer-events:none;
}
#why .card--accentB::after{ background: radial-gradient(closest-side, rgba(56,189,248,.10), rgba(0,0,0,0)); }
#why .card--accentC::after{ background: radial-gradient(closest-side, rgba(34,197,94,.10), rgba(0,0,0,0)); }

#why .card--accentA{ background: linear-gradient(180deg, rgba(139,92,246,.07), rgba(0,0,0,.12)); }
#why .card--accentB{ background: linear-gradient(180deg, rgba(56,189,248,.055), rgba(0,0,0,.12)); }
#why .card--accentC{ background: linear-gradient(180deg, rgba(34,197,94,.05), rgba(0,0,0,.12)); }

#why .card--accentA::before,
#why .card--accentB::before,
#why .card--accentC::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167,139,250,.22), rgba(255,255,255,0), rgba(139,92,246,.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .9;
}
#why .card--accentB::before{
  background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(255,255,255,0), rgba(56,189,248,.08));
}
#why .card--accentC::before{
  background: linear-gradient(135deg, rgba(134,239,172,.16), rgba(255,255,255,0), rgba(34,197,94,.08));
}

#why .icon{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
#why .card--accentA .icon{ box-shadow: 0 18px 70px rgba(139,92,246,.26); }
#why .card--accentB .icon{ box-shadow: 0 18px 70px rgba(56,189,248,.20); }
#why .card--accentC .icon{ box-shadow: 0 18px 70px rgba(34,197,94,.12); }

#why .card:hover{
  transform: translateY(-2px);
  transition: transform .2s ease, background .2s ease;
}
@media (prefers-reduced-motion: reduce){
  #why .card:hover{ transform:none; }
}


/* ===== Header brand typography v28 ===== */
.header, .header *{ font-family: inherit; }
.brand{ font-family: inherit; }
.brand__name{
  font-family: inherit !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  font-size: 15px !important;
  line-height: 1 !important;
}




/* ===== How section v30 (simple, premium, animated) ===== */
.howLite__head{ max-width: 980px; }
.howLite__rail{
  position: relative;
  height: 10px;
  margin-top: 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.howLite__rail::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(139,92,246,.0), rgba(139,92,246,.38), rgba(56,189,248,.20), rgba(34,197,94,.18), rgba(139,92,246,.0));
  transform: translateX(-40%);
  animation: railSweep 4.2s ease-in-out infinite; will-change: transform, opacity;
  opacity: .9;
}
.howLite__dot{
  position:absolute;
  top:50%;
  left: 12%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 6px rgba(139,92,246,.14);
  animation: dotMove 4.2s ease-in-out infinite; will-change: left, box-shadow;
}
@keyframes railSweep{
  0%{ transform: translateX(-60%); opacity:.2; }
  45%{ opacity:.95; }
  100%{ transform: translateX(60%); opacity:.2; }
}
@keyframes dotMove{
  0%{ left: 12%; box-shadow: 0 0 0 6px rgba(139,92,246,.12); }
  33%{ left: 38%; box-shadow: 0 0 0 6px rgba(56,189,248,.10); }
  66%{ left: 66%; box-shadow: 0 0 0 6px rgba(34,197,94,.10); }
  100%{ left: 88%; box-shadow: 0 0 0 6px rgba(139,92,246,.12); }
}
@media (prefers-reduced-motion: reduce){
  .howLite__rail::before, .howLite__dot{ animation: none; }
}

.howLite__steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}
@media (min-width: 900px){
  .howLite__steps{ grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}
.howLiteStep{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.016);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.howLiteStep:hover{
  transform: translateY(-2px);
  border-color: rgba(139,92,246,.22);
  background: rgba(139,92,246,.045);
}
@media (prefers-reduced-motion: reduce){
  .howLiteStep{ transition:none; }
  .howLiteStep:hover{ transform:none; }
}
.howLiteStep__n{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(238,242,255,.92);
  font-weight: 950;
  flex: 0 0 auto;
}
.howLiteStep__t{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
  margin-bottom: 4px;
}
.howLite__cta{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* ===== Partners v31 ===== */
.partners__head{ max-width: 980px; }
.partnersMarquee{
  position: relative;
  margin-top: 14px;
  border-radius: 24px;
  overflow:hidden;
  background: rgba(255,255,255,.012);
  border: 1px solid rgba(255,255,255,.06);
}
.partnersMarquee__track{
  display:flex;
  gap: 18px;
  padding: 18px 16px;
  width: max-content;
  animation: partnersMarquee 22s linear infinite;
  will-change: transform;
}
@keyframes partnersMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.partnerLogo{
  height: 78px;
  min-width: 320px;
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 26px;
  background: rgba(255,255,255,.015);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 28px 120px rgba(0,0,0,.5);
  overflow:hidden;
  will-change: transform;
}
.partnerLogo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 18px;
  opacity: .92;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}
.partnerLogo:hover{
  transform: translateY(-1px);
  border-color: rgba(170,135,255,.22);
  background: rgba(170,135,255,.05);
}
.partnersMarquee__fade{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(6,8,12,1) 0%, rgba(6,8,12,0) 14%, rgba(6,8,12,0) 86%, rgba(6,8,12,1) 100%);
  opacity:.92;
}
@media (max-width: 520px){
  .partnerLogo{ min-width: 240px; height: 70px; }
  .partnerLogo img{ padding: 12px 16px; }
}

.container{ max-width: 1140px; }

/* ===== Brand harmony v34 ===== */
.brand__name{
  font-weight: 850 !important;
  font-size: 13.5px !important;
  letter-spacing: -0.01em !important;
  color: rgba(238,242,255,.90) !important;
}

/* Partner logo images */
.partnerLogo{ padding:0 !important; background: transparent !important; border:none !important; box-shadow:none !important; }
.partnerLogo img{ height: 72px; width: auto; display:block; }
@media (max-width:520px){ .partnerLogo img{ height: 64px; } }






/* ===== Secure strip v36 (minimal + luxe) ===== */
.heroSecure{ margin-top: 26px; }
.secureStrip{position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 22px;
  background: transparent;
border: none;
overflow:hidden;
  box-shadow: none;
}
@media (min-width: 860px){
  .secureStrip{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items:center;
    gap: 12px;
    padding: 8px 0;
  }
}
.secureStrip__beam{
  position:absolute;
  left:-22%;
  right:-22%;
  top:50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
    rgba(139,92,246,0),
    rgba(139,92,246,.26),
    rgba(56,189,248,.20),
    rgba(34,197,94,.18),
    rgba(139,92,246,0)
  );
  opacity:.72;
  filter: blur(.2px);
  animation: secureBeam 5.2s ease-in-out infinite;
  will-change: transform, opacity;
  pointer-events:none;
}
@keyframes secureBeam{
  0%{ transform: translate(-10%, -50%); opacity:.18; }
  45%{ opacity:.82; }
  100%{ transform: translate(10%, -50%); opacity:.18; }
}
@media (prefers-reduced-motion: reduce){
  .secureStrip__beam{ animation:none; }
}

.securePill{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 0;
  border-radius: 16px;
  background: rgba(255,255,255,.012);
  border: 1px solid rgba(255,255,255,.035);
}
.securePill__icon{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  color: rgba(238,242,255,.82);
  flex: 0 0 auto;
}
.securePill__text{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(238,242,255,.92);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 420px){
  .securePill__text{ white-space: normal; }
}

/* Lightning texture overlay (subtle) */
.secureStrip__beam::after{
  content:"";
  position:absolute;
  inset:-2px 0;
  background: repeating-linear-gradient(120deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 10px,
    rgba(255,255,255,.10) 12px,
    rgba(255,255,255,0) 18px
  );
  opacity: .25;
  filter: blur(.4px);
  mix-blend-mode: screen;
  will-change: opacity;
  pointer-events:none;
}

/* ===== Layout rhythm v37 ===== */
:root{
  --sectionY: clamp(36px, 5vw, 60px);
}
.section{ padding: var(--sectionY) 0; }
.hero2{ padding-top: clamp(28px, 4.5vw, 52px) !important; padding-bottom: 22px !important; }
.section__head{ margin-bottom: 18px !important; }
#partners .partnersMarquee{ margin-top: 12px !important; }
#why .grid3{ margin-top: 14px !important; }
#how .howLite__rail{ margin-top: 14px !important; margin-bottom: 14px !important; }
@media (max-width: 520px){
  .section{ padding: clamp(32px, 6.5vw, 50px) 0; }
  .hero2{ padding-bottom: 22px !important; }
  .partnersGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .aboutGrid .aboutCard{ padding: 16px; }
}

/* Slight compacting for cards */
#why .card{ padding: 18px !important; }

/* ===== Region page v38 ===== */
.page{ min-height: 100%; }
.regionHero{ padding-top: clamp(26px, 4vw, 44px); padding-bottom: 10px; }
.regionHero__top h1{
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.regionHero__top p{ max-width: 70ch; }

.regionPanel{ padding-top: 18px; }
.panelCard{
  border-radius: 26px;
  background: rgba(255,255,255,.010);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 60px 220px rgba(0,0,0,.55);
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 40px 140px rgba(0,0,0,.45);

}
.panelCard__head{
  padding: 18px 18px 14px;
  display:flex;
  gap: 14px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}
.kicker{ font-size: 12px; font-weight: 900; letter-spacing: -0.01em; color: rgba(238,242,255,.62); }
.detectedLine{ display:flex; align-items:center; gap: 10px; margin-top: 6px; }
.flagCircle{
  width: 34px; height: 34px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.detectedName{ font-weight: 950; letter-spacing: -0.02em; }
.statusBadge{
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(238,242,255,.85);
}
.statusBadge--muted{ opacity:.72; }
.statusBadge--banned{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.22);
  color: rgba(254,226,226,.95);
}
.statusBadge.pulse{ animation: badgePulse .9s ease; will-change: transform, box-shadow; }
@keyframes badgePulse{
  0%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,.0); }
  35%{ transform: scale(1.06); box-shadow: 0 0 0 10px rgba(239,68,68,.12); }
  100%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,.0); }
}

.divider{ height:1px; background: rgba(255,255,255,.06); }

.regionCols{
  padding: 16px 18px 18px;
  display:grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .regionCols{ grid-template-columns: 1.2fr .8fr; align-items:start; }
}
.countryList{
  margin-top: 12px;
  border-radius: 22px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.05);
  max-height: 380px;
  overflow:auto;
  padding: 8px;
}
.countryRow{
  width: 100%;
  display:grid;
  grid-template-columns: 34px 1fr auto;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(238,242,255,.92);
  text-align:left;
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.countryRow:hover{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.countryRow[aria-selected="true"]{
  background: rgba(139,92,246,.08);
  border-color: rgba(139,92,246,.18);
}
.countryRow .flag{
  width: 34px; height: 34px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.cName{ font-weight: 900; letter-spacing: -0.01em; }
.cFee{
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(238,242,255,.78);
}

.summaryBox{
  margin-top: 12px;
  border-radius: 22px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.06);
  padding: 14px;
}
.summaryRow{ display:flex; align-items:baseline; justify-content:space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.summaryRow:last-child{ border-bottom:none; }
.summaryVal{ font-weight: 950; letter-spacing: -0.01em; }
.btn--wide{ min-width: 240px; }
@media (max-width: 520px){
  .btn--wide{ width: 100%; min-width: 0; }
}

/* Overlay loader */
.detectOverlay{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 80;
}
.detectOverlay.isOn{ display:flex; }
.detectOverlay__card{
  width: min(420px, calc(100% - 32px));
  border-radius: 26px;
  background: rgba(10,12,18,.82);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 70px 250px rgba(0,0,0,.60);
  padding: 18px;
  text-align:center;
}
.detectOverlay__t{ margin-top: 10px; font-weight: 950; letter-spacing: -0.02em; }
.spinner{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.10);
  border-top-color: rgba(139,92,246,.70);
  animation: spin 1s linear infinite;
  margin: 0 auto;
  will-change: transform;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* Bottom sheet */
.noScroll{ overflow:hidden; }
.sheet{ position: fixed; inset: 0; z-index: 90; pointer-events:none; }
.sheet.isOpen{ pointer-events:auto; }
.sheet__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  transition: opacity .22s ease;
}
.sheet.isOpen .sheet__backdrop{ opacity:1; }
.sheet__panel{
  position:absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 120%);
  width: min(560px, calc(100% - 24px));
  border-radius: 28px;
  background: rgba(10,12,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 80px 280px rgba(0,0,0,.65);
  padding: 14px 14px 16px;
  transition: transform .26s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}
.sheet.isOpen .sheet__panel{ transform: translate(-50%, 0); }
.sheet__grab{
  width: 44px; height: 5px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  margin: 4px auto 10px;
}
.sheet__title{ font-weight: 950; letter-spacing: -0.02em; padding: 0 6px 10px; }
.sheet__body{ padding: 0 6px; }
.sheetRow{ display:flex; justify-content:space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sheetRow:last-child{ border-bottom:none; }
.sheetVal{ font-weight: 950; letter-spacing: -0.01em; }

/* Secure pills blend wash */
.securePill{ position: relative; }
.securePill::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: radial-gradient(120% 120% at 20% 20%,
    rgba(139,92,246,.06),
    rgba(56,189,248,.03),
    rgba(0,0,0,0) 70%);
  opacity:.35;
  pointer-events:none;
}

/* ===== Partners spacing v41 ===== */
#partners.section{ padding-top: 26px !important; }
#partners .partners{ margin-top: 0 !important; }
#partners .partners__head{ margin-bottom: 10px !important; }

/* CTA buttons in header */
button.nav__cta, button.mnav__cta{
  appearance: none;
  border: none;
  cursor: pointer;
}

/* ===== About section v43 ===== */
.aboutGrid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .aboutGrid{ grid-template-columns: 1.1fr .9fr; }
  .aboutGrid .aboutCard:nth-child(3){ grid-column: 1 / -1; }
}
.aboutCard{
  border-radius: 26px;
  background: rgba(255,255,255,.012);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 50px 190px rgba(0,0,0,.50);
  padding: 18px;
}
.aboutCard h3{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.aboutList{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.aboutList li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.aboutList .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(139,92,246,.75);
  box-shadow: 0 0 0 6px rgba(139,92,246,.10);
  flex: 0 0 auto;
}
.valueRow{
  display:grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px){
  .valueRow{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.value{
  border-radius: 20px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.06);
  padding: 14px;
}
.valueK{
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

/* ===== Emphasize Connect Wallet CTA ===== */
button.nav__cta, button.mnav__cta{
  background: rgba(139,92,246,.92) !important;
  color: rgba(255,255,255,.95) !important;
  border: 1px solid rgba(139,92,246,.35) !important;
  box-shadow: 0 20px 80px rgba(139,92,246,.25) !important;
}
button.nav__cta:hover, button.mnav__cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 28px 120px rgba(139,92,246,.30) !important;
}
button.nav__cta:active, button.mnav__cta:active{
  transform: translateY(0px);
}


/* ===== Wallet marquee logo normalization v45 ===== */
.walletsMarquee .logoCard{
  width: 170px;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
}
.walletsMarquee .logoCard img{
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display:block;
  opacity: .92;
  filter: grayscale(1) saturate(.85) brightness(1.06);
  will-change: transform, opacity;
}
@media (max-width: 520px){
  .walletsMarquee .logoCard{ width: 138px; height: 64px; padding: 10px 12px; }
  .walletsMarquee .logoCard img{ height: 30px; max-width: 104px; }
}

/* ===== Wallet marquee logo normalization v46 (fix oversized wordmarks) ===== */
.walletsMarquee .logoCard{
  width: 156px !important;
  height: 64px !important;
  padding: 10px 12px !important;
}
.walletsMarquee .logoCard img{
  max-width: 96px !important;
  max-height: 28px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translateZ(0);
}
@media (max-width: 520px){
  .walletsMarquee .logoCard{ width: 132px !important; height: 58px !important; padding: 9px 10px !important; }
  .walletsMarquee .logoCard img{ max-width: 84px !important; max-height: 26px !important; }
}

/* ===== Wallet marquee normalization v47 (PNG sprites) ===== */
.walletsMarquee .logoCard{
  width: 132px !important;
  height: 72px !important;
  padding: 10px 12px !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
.walletsMarquee .logoCard img{
  width: 44px !important;
  height: 44px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  opacity: .95;
  filter: none;
  border-radius: 14px;
}
@media (max-width: 520px){
  .walletsMarquee .logoCard{ width: 118px !important; height: 66px !important; }
  .walletsMarquee .logoCard img{ width: 40px !important; height: 40px !important; }
}

/* ===== Wallet marquee polish v49 ===== */
.walletsMarquee{
  position: relative;
  overflow: hidden;
}
.walletsMarquee::before{
  content:"";
  position:absolute;
  inset:-40px -20px -40px -20px;
  background:
    radial-gradient(900px 380px at 20% 20%, rgba(139,92,246,.18), rgba(0,0,0,0) 55%),
    radial-gradient(820px 420px at 80% 70%, rgba(56,189,248,.12), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.12));
  pointer-events:none;
  z-index:0;
  opacity: .9;
}
.walletsMarquee > *{ position: relative; z-index: 1; }

/* Make cards cleaner (no heavy borders) but still premium */
.walletsMarquee .logoCard{
  width: 188px !important;
  height: 72px !important;
  padding: 10px 16px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.012) !important;
  border: 1px solid rgba(255,255,255,.04) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 26px 110px rgba(0,0,0,.45) !important;
}
.walletsMarquee .logoCard img{
  height: 34px !important;
  width: auto !important;
  max-width: 150px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  opacity: .95 !important;
}

/* Faster marquee (do NOT touch other animations) */
.walletsMarquee .marquee__track{
  animation-duration: 12.5s !important;
}

@media (max-width: 520px){
  .walletsMarquee .logoCard{
    width: 160px !important;
    height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 18px !important;
  }
  .walletsMarquee .logoCard img{
    height: 30px !important;
    max-width: 128px !important;
    max-height: 30px !important;
  }
  .walletsMarquee .marquee__track{
    animation-duration: 20s !important;
  }
}

/* ===== Global background gradient restore v50 ===== */
html, body{ background: #070911; }

/* ===== Wallet marquee: no borders, bigger icons, faster v50 ===== */
.walletsMarquee::before{ opacity: .75; } /* keep subtle wash */

.walletsMarquee .logoCard{
  width: 118px !important;
  height: 68px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.walletsMarquee .logoCard img{
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 140px !important;
  opacity: .92 !important;
  transform: translateZ(0);
}

/* faster marquee */
.walletsMarquee .marquee__track{ animation-duration: 12s !important; }

@media (max-width: 520px){
  .walletsMarquee .logoCard{ width: 104px !important; height: 62px !important; }
  .walletsMarquee .logoCard img{ height: 40px !important; max-height: 40px !important; max-width: 120px !important; }
  .walletsMarquee .marquee__track{ animation-duration: 11s !important; }
}

/* ===== Wallet marquee border kill + faster v51 ===== */
.walletsMarquee .logoCard,
.walletsMarquee .logoCard:hover,
.walletsMarquee .logoCard:focus{
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.walletsMarquee .logoCard::before,
.walletsMarquee .logoCard::after{
  content: none !important;
  display: none !important;
}
.walletsMarquee .marquee__track{
  animation-duration: 8.5s !important;
}
@media (max-width:520px){
  .walletsMarquee .marquee__track{ animation-duration: 7.8s !important; }
}

/* ===== Ensure global gradient shows through (hero + all sections) v51 ===== */
.page, .app, main, .main, .wrap{
  background: transparent !important;
}
.hero, .hero2, .section, header{
  background: transparent !important;
}


/* ===== Global background gradient v52 (smooth, no hard band) ===== */
html { background: #070911; }
body { background: transparent !important; }
/* Prevent section backgrounds from creating visible "bands" */
header, main, .section, .hero, .hero2, .wrap, .page, .container{
  background: transparent !important;
}

/* ===== Wallet marquee row style v53 ===== */
.marquee{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__track{
  display:flex;
  align-items:center;
  gap: 26px !important;
  animation-duration: 12.5s !important; /* tuned speed */
  will-change: transform;
}
.wItem{
  display:flex;
  align-items:center;
  gap: 10px;
  height: 38px;               /* smaller container */
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.wItem::before, .wItem::after,
.logoCard::before, .logoCard::after{
  content:none !important;
}
.wItem img{
  width: 34px;
  height: 34px;               /* bigger logo */
  object-fit: contain;
  display:block;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}
.wName{
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.86);
}
.wDot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(34,197,94,.92);
  box-shadow: 0 0 0 4px rgba(34,197,94,.10);
  margin-left: 2px;
}
@media (max-width: 520px){
  .marquee__track{ gap: 20px !important; animation-duration: 11.5s !important; }
  .wItem{ height: 36px; gap: 9px; }
  .wItem img{ width: 32px; height: 32px; }
  .wName{ font-size: 13px; }
}

/* ===== Global background v58 (smooth, consistent) ===== */
html, body { height: 100%; }
html{
  background-color: #070911;
  background-image:
    radial-gradient(900px 520px at 16% 18%, rgba(139,92,246,.18), rgba(0,0,0,0) 60%),
    radial-gradient(860px 520px at 84% 72%, rgba(56,189,248,.12), rgba(0,0,0,0) 62%),
    radial-gradient(720px 420px at 62% 8%, rgba(168,85,247,.09), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, rgba(7,9,17,1) 0%, rgba(6,8,15,1) 100%);
}
body{
  background: transparent !important;
  background-repeat: no-repeat;
  background-size: cover;
}



/* ===== Partners logos v62 ===== */
.partnersGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 720px){
  .partnersGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1020px){
  .partnersGrid{ grid-template-columns: repeat(6, minmax(0,1fr)); }
}
.pLogo{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.010);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.pLogo img{
  height: 40px;
  width:auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .94;
  will-change: transform, opacity;
}
@media (max-width: 520px){
  .pLogo{ height: 66px; border-radius: 18px; }
  .pLogo img{ height: 34px; max-width: 140px; }
}

/* Partner SVG normalization (visual) */
.pLogo{ position: relative; overflow: hidden; }
.pLogo[data-key="uniswap"] img{ transform: scale(1.06); }
.pLogo[data-key="pancakeswap"] img{ transform: scale(1.06); }
.pLogo[data-key="1inch"] img{ transform: scale(1.12); }
.pLogo[data-key="curve"] img{ transform: scale(1.25); }
.pLogo[data-key="balancer"] img{ transform: scale(1.20); }
.pLogo[data-key="thorchain"] img{ transform: scale(1.10); }

/* ===== Global background v63 (no banding) ===== */
body{
  position: relative;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 14% 16%, rgba(139,92,246,.20), rgba(0,0,0,0) 58%),
    radial-gradient(860px 520px at 86% 74%, rgba(56,189,248,.14), rgba(0,0,0,0) 60%),
    radial-gradient(740px 460px at 58% 6%, rgba(168,85,247,.10), rgba(0,0,0,0) 56%),
    linear-gradient(180deg, #070911 0%, #06080f 100%);
  pointer-events:none;
}

/* ===== Wallet sizing v64 (uniform) ===== */
.wItem img{
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
  transform: none !important;
}


/* ===== Flow animation v65 (Region page) ===== */
#switch-flow .section__head{ margin-bottom: 14px; }

.flowLine{
  position: relative;
  height: 22px;
  margin: 10px 0 18px;
  display: none; /* Hide on mobile by default */
}
.flowLine__track{
  position:absolute; inset: 50% 0 auto 0;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.flowLine__bolt{
  position:absolute; inset: 50% 0 auto 0;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139,92,246,0) 0%, rgba(139,92,246,.55) 30%, rgba(56,189,248,.40) 60%, rgba(56,189,248,0) 100%);
  filter: blur(.2px);
  opacity: .38;
  animation: flowBolt 2.4s linear infinite;
  will-change: transform, opacity;
}
.flowLine__dot{
  position:absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,.55) 35%, rgba(139,92,246,.55) 70%);
  box-shadow: 0 0 0 6px rgba(139,92,246,.12), 0 0 24px rgba(139,92,246,.22);
  animation: flowDot 4.6s ease-in-out infinite;
  will-change: left, transform;
}

@keyframes flowDot{
  0%{ left: 6%; }
  45%{ left: 52%; }
  100%{ left: 94%; }
}
@keyframes flowBolt{
  0%{ transform: translateY(-50%) translateX(-22%); opacity: .18; }
  15%{ opacity: .48; }
  100%{ transform: translateY(-50%) translateX(22%); opacity: .18; }
}

.flowSteps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
}
@media (min-width: 860px){
  .flowSteps{ grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
  .flowLine{ 
    display: block; /* Show horizontal line on desktop */
    margin: 12px 0 20px; 
  }
}
.flowStep{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.015);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
/* Vertical connector line between steps on mobile */
.flowStep:not(:last-child)::after{
  content: '';
  position: absolute;
  left: 29px; /* Center of the number circle (17px + 12px gap) */
  top: 48px; /* Below the number circle */
  width: 2px;
  height: calc(100% + 12px); /* Gap between steps */
  background: linear-gradient(180deg, rgba(139,92,246,.4) 0%, rgba(139,92,246,.2) 50%, rgba(139,92,246,.05) 100%);
  border-radius: 999px;
  z-index: 0;
}
@media (min-width: 860px){
  .flowStep:not(:last-child)::after{
    display: none; /* Hide vertical line on desktop */
  }
}
.flowStep__n{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  background: rgba(139,92,246,.12);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.22);
  flex: 0 0 auto;
  position: relative;
  z-index: 1; /* Above the connector line */
}
.flowStep__t{
  font-weight: 700;
  letter-spacing: -0.01em;
}
.flowStep__d{
  margin-top: 4px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.45;
}

