@import url("/assets/css/design-tokens.css?v=20260516-1");

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--color-cream-100);
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 145, 127, .42) 0, rgba(23, 145, 127, 0) 34rem),
    radial-gradient(circle at 88% 10%, rgba(248, 185, 58, .24) 0, rgba(248, 185, 58, 0) 30rem),
    linear-gradient(135deg, #031715 0%, #062622 42%, #0a4039 100%);
  font-family: var(--font-sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.08));
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
p { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  z-index: 999;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-cream-100);
  color: var(--color-ink);
}

.container { width: min(var(--container), calc(100vw - 44px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100vw - 44px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section-sm { padding: 58px 0; }
.center { text-align: center; }
.stack { display: grid; gap: 18px; }
.stack-lg { display: grid; gap: 28px; }
main [id] { scroll-margin-top: calc(var(--nav-height) + 24px); }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--color-cream-100);
  line-height: 1.06;
  letter-spacing: 0;
}
h1 { max-width: 900px; font-size: clamp(46px, 7vw, 88px); }
h2 { font-size: clamp(34px, 4.7vw, 60px); }
h3 { font-size: clamp(21px, 2vw, 27px); }
.lead {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
  color: rgba(255,247,227,.70);
}
.muted { color: rgba(255,247,227,.58); }
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(112, 222, 200, .26);
  border-radius: var(--radius-pill);
  color: var(--color-mint-200);
  background: rgba(112, 222, 200, .08);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}
.kicker::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mint-400);
  box-shadow: 0 0 18px var(--color-mint-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(3, 23, 21, .78), rgba(3, 23, 21, .38));
  border-bottom: 1px solid rgba(255, 247, 227, .08);
}
.navbar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 850;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
}
.brand small {
  display: block;
  margin-top: -2px;
  color: rgba(249,233,191,.58);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a,
.language summary,
.language-menu a {
  color: rgba(255,247,227,.68);
  font-size: 14px;
  font-weight: 720;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.nav-links a:hover,
.language summary:hover,
.language-menu a:hover { color: var(--color-cream-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language { position: relative; }
.language summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(255,247,227,.16);
  border-radius: var(--radius-pill);
  background: rgba(255,247,227,.055);
}
.language summary::-webkit-details-marker { display: none; }
.language[open] summary { border-color: rgba(248,185,58,.35); color: var(--color-cream-100); }
.language-menu {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 20;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255,247,227,.13);
  border-radius: 22px;
  background: rgba(6,38,34,.96);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}
.language-menu a { padding: 10px 12px; border-radius: 14px; }
.language-menu a:hover { background: rgba(255,247,227,.07); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-cream-100);
  background: rgba(255,255,255,.06);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #102b25;
  background: linear-gradient(135deg, #f9d778, var(--color-gold-500));
  box-shadow: var(--shadow-gold);
}
.btn-secondary,
.btn-ghost {
  color: var(--color-cream-100);
  border-color: rgba(255,247,227,.16);
  background: rgba(255,247,227,.08);
}
.cta-row,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero { position: relative; padding: 88px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .86fr);
  align-items: center;
  gap: 68px;
}
.hero-copy { display: grid; gap: 24px; align-content: center; }
.hero h1 span { color: var(--color-cream-200); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,247,227,.12);
  border-radius: var(--radius-pill);
  background: rgba(255,247,227,.045);
  color: rgba(255,247,227,.72);
  font-size: 13px;
  font-weight: 700;
}
.trust-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold-500);
}
.hero-visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  inset: 16% 0 4%;
  background: radial-gradient(circle, rgba(248,185,58,.22), rgba(112,222,200,.17) 38%, rgba(0,0,0,0) 70%);
  filter: blur(28px);
}
.phone {
  position: relative;
  z-index: 2;
  width: min(380px, 88vw);
  padding: 14px;
  border: 1px solid rgba(255,247,227,.2);
  border-radius: 52px;
  background: linear-gradient(160deg, rgba(255,247,227,.18), rgba(255,247,227,.035));
  box-shadow: 0 40px 110px rgba(0,0,0,.48);
}
.phone-screen {
  min-height: 706px;
  overflow: hidden;
  padding: 22px;
  border-radius: 40px;
  color: #082d28;
  background: linear-gradient(180deg, #fff7e3 0%, #f4e1b7 50%, #eacb83 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.status,
.app-top,
.txn,
.detected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.status { font-size: 12px; font-weight: 800; color: #0a4039; opacity: .86; }
.app-top { margin-top: 24px; margin-bottom: 18px; }
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--color-cream-100);
  background: #0d6b5f;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  font-weight: 900;
}
.phone-card {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 32px rgba(8,45,40,.13);
}
.money { margin-top: 6px; color: #09231f; font-size: 40px; line-height: 1; font-weight: 850; }
.tiny-label { color: rgba(8,45,40,.58); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.progress {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(8,45,40,.14);
}
.progress span { display: block; width: 64%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #0d6b5f, #f8b93a); }
.voice-bubble {
  padding: 14px;
  border-radius: 20px 20px 20px 8px;
  color: var(--color-cream-100);
  background: #083d36;
  font-weight: 760;
}
.detected {
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.46);
  color: #09231f;
  font-size: 13px;
  font-weight: 850;
}
.txn { padding: 12px 0; border-bottom: 1px solid rgba(8,45,40,.12); color: #09231f; }
.txn:last-child { border-bottom: 0; }
.coin {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255,247,227,.18);
  border-radius: 24px;
  color: var(--color-cream-100);
  background: rgba(6,38,34,.72);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  font-weight: 850;
}
.coin small { display: block; margin-bottom: 8px; color: rgba(255,247,227,.58); font-size: 12px; font-weight: 760; text-transform: uppercase; }
.coin.one { left: 0; top: 110px; }
.coin.two { right: 0; top: 285px; }
.coin.three { left: 18px; bottom: 92px; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: start; }
.section-head { display: grid; gap: 16px; margin-bottom: 34px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.faq-item {
  border: 1px solid rgba(255,247,227,.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,247,227,.088), rgba(255,247,227,.042));
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}
.card { min-height: 0; padding: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: rgba(255,247,227,.63); line-height: 1.58; }
.feature-card { min-height: 248px; position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -72px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(112,222,200,.08);
}
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(112,222,200,.18);
  border-radius: 18px;
  color: var(--color-mint-400);
  background: rgba(112,222,200,.10);
  font-weight: 900;
}
.surface-dark,
.cta-band,
.legal-doc .prose {
  border: 1px solid rgba(255,247,227,.13);
  border-radius: 42px;
  background: radial-gradient(circle at top left, rgba(112,222,200,.13), transparent 30rem), linear-gradient(135deg, rgba(255,247,227,.09), rgba(255,247,227,.035));
  box-shadow: var(--shadow-card);
}
.surface-dark { padding: 42px; }
.surface-dark .eyebrow { background: rgba(112,222,200,.08); }
.steps { counter-reset: step; }
.step { position: relative; min-height: 220px; padding: 26px 26px 26px 86px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 26px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-gold-500);
  background: rgba(248,185,58,.18);
  font-weight: 900;
}
.example-rail { display: flex; flex-wrap: wrap; gap: 12px; }
.example-pill {
  padding: 12px 15px;
  border: 1px solid rgba(255,247,227,.12);
  border-radius: var(--radius-pill);
  background: rgba(255,247,227,.06);
  color: rgba(255,247,227,.76);
  font-weight: 740;
}
.compare-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid rgba(255,247,227,.12);
  border-radius: 28px;
  background: rgba(255,247,227,.055);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
}
.compare-table th,
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(255,247,227,.10);
  text-align: left;
  vertical-align: top;
}
.compare-table th { color: var(--color-cream-100); background: rgba(255,247,227,.075); }
.compare-table td { color: rgba(255,247,227,.66); }
.compare-table tr:last-child td { border-bottom: 0; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255,247,227,.70);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(112,222,200,.16);
  box-shadow: inset 0 0 0 6px rgba(112,222,200,.34);
}

.article-hero { padding: 74px 0 44px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,247,227,.54);
  font-size: 14px;
}
.breadcrumb a { color: var(--color-mint-200); font-weight: 760; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 54px; align-items: start; }
.toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255,247,227,.12);
  border-radius: 24px;
  background: rgba(255,247,227,.06);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
}
.toc a {
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255,247,227,.66);
  font-size: 14px;
  font-weight: 720;
}
.toc a:hover { color: var(--color-cream-100); background: rgba(255,247,227,.07); }
.prose {
  color: rgba(255,247,227,.72);
  font-size: 18px;
  line-height: 1.72;
}
.prose h2 { margin: 54px 0 16px; font-size: clamp(30px, 3.4vw, 44px); }
.prose h3 { margin: 30px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 24px; }
.prose li { margin: 8px 0; }
.prose a { color: var(--color-mint-200); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--color-cream-100); }
.callout {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--color-gold-500);
  border-radius: 0 18px 18px 0;
  color: rgba(255,247,227,.78);
  background: rgba(248,185,58,.11);
}

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  color: var(--color-cream-100);
  background: transparent;
  text-align: left;
  font-weight: 840;
  cursor: pointer;
}
.faq-q::after { content: "+"; color: var(--color-gold-500); font-size: 24px; }
.faq-q[aria-expanded="true"]::after { content: "-"; }
.faq-a { padding: 0 22px 22px; color: rgba(255,247,227,.66); }
.faq-a[hidden] { display: none; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 46px;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); }
.cta-band p { margin-top: 12px; color: rgba(255,247,227,.66); }
.site-footer { margin-top: 80px; padding: 52px 0; color: rgba(255,247,227,.58); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,247,227,.10);
}
.footer-grid h3 { margin-bottom: 12px; font-size: 17px; }
.footer-grid a { display: block; margin: 8px 0; color: rgba(255,247,227,.68); }
.footer-grid a:hover { color: var(--color-mint-200); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--color-cream-100); font-weight: 860; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,247,227,.10);
  font-size: 14px;
}
.legal-doc { padding-top: 58px; }
.legal-doc .prose { padding: 40px; }
.legal-doc .prose h2:first-child { margin-top: 0; }

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .article-layout,
  .footer-grid,
  .cta-band { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .toc { position: static; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coin.one { left: 4%; }
  .coin.two { right: 4%; }
  .coin.three { left: 8%; }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255,247,227,.13);
    border-radius: 22px;
    background: rgba(6,38,34,.96);
    box-shadow: var(--shadow-card);
  }
  .nav-links a { padding: 10px 12px; border-radius: 14px; }
  .nav-links a:hover { background: rgba(255,247,227,.07); }
  .nav-links[data-open="true"] { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .nav-actions .language { display: block; }
  .language summary { min-height: 40px; padding: 0 12px; }
  .language-menu { min-width: 190px; }
}

@media (max-width: 720px) {
  .container,
  .narrow { width: min(100% - 28px, var(--container)); }
  .navbar { min-height: 70px; }
  .brand small { display: none; }
  .nav-actions .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .hero { padding: 54px 0 56px; }
  .hero-visual { min-height: 540px; }
  .phone-screen { min-height: 590px; }
  .coin { display: none; }
  .section { padding: 64px 0; }
  .section-sm { padding: 46px 0; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .surface-dark,
  .cta-band,
  .legal-doc .prose { padding: 28px; border-radius: 28px; }
  .step { min-height: 0; padding: 24px 24px 24px 82px; }
  .step::before { left: 24px; top: 24px; }
  .compare-table { display: block; overflow-x: auto; }
  .footer-bottom { display: grid; }
}
