


@property --ga {
  syntax: '<angle>';
  inherits: false;
  initial-value: 135deg;
}

:root {
  
  --ink:       #06040e;
  --ink-2:     #0b0918;
  --ink-3:     #110f20;
  --glass:     rgba(255,255,255,0.035);
  --glass-2:   rgba(255,255,255,0.055);
  --rim:       rgba(255,255,255,0.07);
  --rim-2:     rgba(255,255,255,0.12);

  --pur:       #a855f7;
  --pur-d:     #7c3aed;
  --pur-glow:  rgba(168,85,247,0.22);
  --amb:       #f59e0b;
  --amb-glow:  rgba(245,158,11,0.18);

  
  --xmr:       #ff6600;
  --xmr-d:     #c44200;
  --xmr-l:     #ff8c3a;
  --xmr-glow:  rgba(255,102,0,0.2);
  --grn:       #22c55e;
  --grn-glow:  rgba(34,197,94,0.2);
  --cyn:       #06b6d4;
  --red:       #ef4444;
  --blu:       #3b82f6;
  --org:       #f97316;

  
  --tx:        #f1f5f9;
  --tx-2:      #94a3b8;
  --tx-3:      #475569;

  
  --wrap:      1160px;
  --r:         12px;
  --r-lg:      20px;
  --r-xl:      28px;

  
  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', 'Fira Code', monospace;

  
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --t:         0.22s ease;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--ink-3) var(--ink); }
body { font-family: var(--font); background: var(--ink); color: var(--tx); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: rgba(168,85,247,0.35); }


.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.section { padding: 112px 0; }
.section {
  position: relative;
  overflow: clip;
}
.section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(760px, 70vw);
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.28), rgba(255,102,0,0.22), transparent);
  opacity: 0;
  transition: transform 1.1s var(--ease-out), opacity 0.7s ease;
  pointer-events: none;
}
.section.section--active::before {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
.section > .wrap {
  position: relative;
  z-index: 1;
}


.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%,-50%);
  transition: opacity 0.4s;
  will-change: transform;
}
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--xmr), var(--pur), var(--amb));
  box-shadow: 0 0 18px rgba(255,102,0,0.35);
}


.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pur);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}
.section-head h2 em { font-style: normal; color: var(--pur); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(var(--ga), var(--pur-d), var(--pur));
  animation: spin-gradient 4s linear infinite;
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px var(--pur-glow);
  filter: brightness(1.12);
}

.btn--ghost {
  background: var(--glass);
  color: var(--tx-2);
  border: 1px solid var(--rim);
}
.btn--ghost:hover {
  background: var(--glass-2);
  color: var(--tx);
  border-color: var(--rim-2);
  transform: translateY(-2px);
}

.nav__github {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__github:hover { color: rgba(255,255,255,0.9); }
.nav__github i { font-size: 1.05rem; }

.btn--nav {
  padding: 8px 20px; font-size: 0.82rem;
  background: rgba(255,102,0,0.1);
  color: #ff8533;
  border: 1px solid rgba(255,102,0,0.28);
  border-radius: var(--r);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s var(--ease);
}
.btn--nav:hover {
  background: rgba(255,102,0,0.18);
  border-color: rgba(255,102,0,0.5);
  color: #ffaa66;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,102,0,0.15);
}
.nav.stuck .btn--nav {
  background: #ff6600;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,102,0,0.25);
}
.nav.stuck .btn--nav:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(255,102,0,0.35);
}
.btn--lg   { padding: 14px 30px; font-size: 1rem; }
.btn--xl   { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

@keyframes spin-gradient { to { --ga: 495deg; } }


.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.stuck {
  background: rgba(6,4,14,0.8);
  backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--rim);
}

.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 66px; gap: 24px;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.05rem; color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 28px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__links {
  display: flex; align-items: center; gap: 36px;
  flex: 1; justify-content: center;
}
.nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--tx-2);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--pur);
  transition: width var(--t);
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--tx-2); border-radius: 2px;
  transition: var(--t);
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
  background: #0c0e12;
}


.hero__blob {
  position: absolute; z-index: 0; pointer-events: none;
  filter: blur(110px);
  animation: blob-morph var(--dur, 22s) ease-in-out infinite;
}
@keyframes blob-morph {
  0%   { border-radius: 62% 38% 58% 42% / 47% 63% 37% 53%; transform: translate(0,0) scale(1); }
  25%  { border-radius: 38% 62% 42% 58% / 63% 37% 53% 47%; transform: translate(6px,-8px) scale(1.04); }
  50%  { border-radius: 53% 47% 72% 28% / 35% 65% 45% 55%; transform: translate(-5px,7px) scale(0.97); }
  75%  { border-radius: 28% 72% 38% 62% / 65% 35% 55% 45%; transform: translate(9px,3px) scale(1.02); }
  100% { border-radius: 62% 38% 58% 42% / 47% 63% 37% 53%; transform: translate(0,0) scale(1); }
}
.hero__blob--1 {
  width: 720px; height: 580px;
  background: rgba(255,102,0,0.2);
  top: -200px; left: -180px;
  --dur: 24s;
}
.hero__blob--2 {
  width: 600px; height: 520px;
  background: rgba(14,165,233,0.13);
  bottom: -140px; right: -160px;
  --dur: 30s; animation-delay: -10s;
}


.hero__noise {
  position: absolute; inset: -30%; z-index: 2; pointer-events: none;
  width: 160%; height: 160%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.1; mix-blend-mode: overlay;
}


.hero__deco { position: absolute; pointer-events: none; z-index: 1; }

.hero__deco--left {
  left: -230px; top: 50%;
  transform: translateY(-44%);
  width: 540px; height: 540px;
}
.dring {
  position: absolute; border-radius: 50%;
}
.dring--1 { inset:   0; border: 1px solid rgba(0,200,150,0.1);   animation: spin-ring 80s linear infinite; }
.dring--2 { inset:  38px; border: 1px solid rgba(0,180,130,0.08); animation: spin-ring 65s linear infinite reverse; }
.dring--3 { inset:  76px; border: 1px solid rgba(255,255,255,0.05); animation: spin-ring 50s linear infinite; }
.dring--4 { inset: 114px; border: 1px solid rgba(255,255,255,0.04); animation: spin-ring 38s linear infinite reverse; }
.dring--5 { inset: 152px; border: 1px solid rgba(255,255,255,0.03); animation: spin-ring 28s linear infinite; }
.dring--6 { inset: 190px; border: 1px solid rgba(255,255,255,0.025); animation: spin-ring 20s linear infinite reverse; }
.hero__deco--left::after {
  content: '';
  position: absolute; inset: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,140,0.07) 0%, transparent 70%);
}


.hero__paymethods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  max-width: 700px;
  min-width: 0;
}
.hpm__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.hpm__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 100%;
  min-width: 0;
}

img.hpm__logo {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.3;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
img.hpm__logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

span.hpm__logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.3;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
span.hpm__logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.hpm__logo--text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}
.hpm__logo--more {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  opacity: 0.3;
  cursor: default;
}


.hero__inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 140px 0 60px;
  width: 100%;
}
.hero__inner > * { max-width: 100%; }


.hero__pills {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 36px; flex-wrap: wrap; justify-content: center;
}
.hpill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.09);
}
.hpill--new {
  background: rgba(255,102,0,0.08);
  border-color: rgba(255,102,0,0.25);
  color: rgba(255,255,255,0.82);
}
.hpill--dim {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
}
.hpill__tag {
  background: #ff6600; color: #fff;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 8px; border-radius: 100px;
}


.hero__h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.0;
  color: #fff;
  margin: 0 0 22px;
}


.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.46);
  line-height: 1.78; width: min(520px, 100%);
  margin: 0 0 40px;
}


.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 40px; margin-bottom: 56px;
}
.btn--hprimary {
  background: #ff6600; color: #fff;
  box-shadow: 0 0 0 1px rgba(255,102,0,0.35), 0 8px 32px rgba(255,102,0,0.25);
}
.btn--hprimary:hover {
  filter: brightness(1.1); transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,102,0,0.5), 0 14px 44px rgba(255,102,0,0.35);
}
.btn--hghost {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--hghost:hover {
  background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px);
}


.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 10px;
  width: 100%; max-width: 900px;
  margin-bottom: 44px;
}
.hero__stats > * { min-width: 0; }
.hstat-col { display: flex; flex-direction: column; gap: 10px; }

.hstat {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  transition: background 0.25s, border-color 0.25s;
}
.hstat:hover {
  background-color: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
}
.hstat--world:hover {
  background-color: rgba(255,255,255,0.055);
  background-image: url('logos/world.svg');
  background-size: 96% auto;
  background-position: center 46%;
  background-repeat: no-repeat;
}
.hstat--tall { justify-content: space-between; min-height: 192px; }

.hstat__label {
  font-size: 0.74rem; font-weight: 500;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.02em;
}
.hstat__val {
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.88);
  font-variant-numeric: tabular-nums;
}
.hstat__val--accent { color: #ff7a1a; }
.hstat__unit { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.28); margin-left: 2px; }
.hstat--world {
  background-image: url('logos/world.svg');
  background-size: 96% auto;
  background-position: center 46%;
  background-repeat: no-repeat;
}


.hero__powered {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.hpow__label {
  font-size: 0.67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
.hpow__items { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hpow__item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.hpow__item:hover { color: rgba(255,255,255,0.7); }
.hpow__sep { color: rgba(255,255,255,0.12); }


.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.ticker__belt {
  display: flex; align-items: center;
  width: max-content;
  animation: ticker-left 48s linear infinite;
  padding: 10px 0; gap: 0;
}
@keyframes ticker-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tick {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 28px;
  font-family: var(--mono); font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap; letter-spacing: 0.01em;
}
.tick b { font-weight: 700; }
.tick.buy  b { color: #4ade80; }
.tick.sell b { color: #f87171; }
.tick-sep { font-size: 0.45rem; color: rgba(255,255,255,0.1); flex-shrink: 0; }


.hero__scroll {
  position: absolute; bottom: 52px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.hero__scroll span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,102,0,0.5), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%,100% { opacity:0.4; transform:scaleY(0.7) translateY(-4px) }
  50%     { opacity:1; transform:scaleY(1) translateY(0) }
}

@keyframes float-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
@keyframes blink-dot {
  0%,100% { opacity:1; box-shadow: 0 0 0 3px rgba(22,163,74,0.25); }
  50%     { opacity:0.5; box-shadow: 0 0 0 6px rgba(22,163,74,0.1); }
}



.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero__scroll span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(15,7,46,0.35); }
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #059669, transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%,100%{opacity:0.4; transform:scaleY(0.7) translateY(-4px)} 50%{opacity:1; transform:scaleY(1) translateY(0)} }


.features {
  background: #fff;
  color: #111827;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(168,85,247,0.055), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255,102,0,0.045), transparent 28%);
  pointer-events: none;
}
.features .wrap { position: relative; z-index: 1; }
.features .eyebrow { color: #7c3aed; }
.features .section-head h2 { color: #111827; }
.features__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.features__top .section-head { margin-bottom: 0; }
.features__banner {
  width: min(36vw, 318px);
  flex: 0 0 auto;
}
.features__banner img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bcard {
  position: relative;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15,23,42,0.08);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}
.bcard:hover {
  background: #fff;
  border-color: rgba(124,58,237,0.22);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.13);
}
.features .bcard::before {
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(124,58,237,0.1), transparent 70%);
}

.bcard--big      { grid-column: span 7; grid-row: span 2; min-height: 360px; }
.bcard--tor      { grid-column: span 5; }
.bcard--xmr      { grid-column: span 5; }
.bcard--multisig { grid-column: span 4; }
.bcard--oss      { grid-column: span 4; }
.bcard--custody  { grid-column: span 4; }

.bcard__content {
  position: relative; z-index: 2;
  padding: 32px 30px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.bcard--big .bcard__content { padding: 36px 36px; }

.bcard h3 {
  font-size: 1.25rem; font-weight: 800;
  color: #111827; line-height: 1.2;
  margin: 10px 0 9px;
}
.bcard--big h3 { font-size: 2rem; }
.bcard p { font-size: 0.87rem; color: #475569; line-height: 1.65; }

.bcard__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ic--purple { background: rgba(168,85,247,0.12); color: #7c3aed; }
.ic--teal   { background: rgba(6,182,212,0.12);  color: #0891b2; }
.ic--amber  { background: rgba(245,158,11,0.14); color: #d97706; }
.ic--green  { background: rgba(34,197,94,0.12);  color: #16a34a; }
.ic--blue   { background: rgba(59,130,246,0.12); color: #2563eb; }
.ic--orange { background: rgba(249,115,22,0.13); color: #ea580c; }

.bcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: #7c3aed; margin-top: 12px;
  transition: gap var(--t), opacity var(--t);
}
.bcard__link:hover { gap: 10px; opacity: 0.8; }


.bcard--big { background: linear-gradient(145deg, rgba(124,58,237,0.1) 0%, rgba(255,255,255,0.9) 58%); }

.bcard__bg-anim {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 24px;
  pointer-events: none;
}

.privacy-rings { position: relative; width: 240px; height: 240px; flex-shrink: 0; }
.pr {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.2);
  animation: spin-ring 12s linear infinite;
}
.pr--1 { animation-duration: 18s; }
.pr--2 { inset: 20px; border-color: rgba(124,58,237,0.14); animation-duration: 24s; animation-direction: reverse; }
.pr--3 { inset: 44px; border-color: rgba(124,58,237,0.1); animation-duration: 32s; }
@keyframes spin-ring { to { transform: rotate(360deg); } }
.pr__icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(124,58,237,0.26);
}


.bcard--tor { background: linear-gradient(145deg, rgba(6,182,212,0.1) 0%, rgba(255,255,255,0.9) 62%); }
.tor-net {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  
}


.bcard--xmr { background: linear-gradient(145deg, rgba(245,158,11,0.12) 0%, rgba(255,255,255,0.9) 62%); }
.xmr-bg {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 1; opacity: 0.28;
  width: 110px;
  animation: pulse-scale 4s ease-in-out infinite alternate;
}
@keyframes pulse-scale { from{transform:translateY(-50%) scale(0.9)} to{transform:translateY(-50%) scale(1.05)} }
.xmr-svg { width: 100%; }


.bcard--multisig { background: linear-gradient(145deg, rgba(34,197,94,0.11) 0%, rgba(255,255,255,0.9) 62%); }
.multisig-visual {
  position: absolute; right: 12px; top: 14px;
  width: 130px; height: 90px; z-index: 1; pointer-events: none;
}
.msig__node {
  position: absolute;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(22,163,74,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #16a34a;
}
.msig__node--buyer  { top: 0; left: 0; }
.msig__node--escrow { top: 28px; left: 49px; background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.24); color: #7c3aed; }
.msig__node--seller { top: 0; right: 0; }
.msig__line {
  position: absolute;
  height: 1px;
  background: rgba(22,163,74,0.28);
  transform-origin: left center;
}
.msig__line--1 { width: 55px; top: 17px; left: 29px; transform: rotate(22deg); }
.msig__line--2 { width: 55px; top: 17px; right: 29px; transform-origin: right center; transform: rotate(-22deg); }


.bcard--custody { background: linear-gradient(145deg, rgba(249,115,22,0.12) 0%, rgba(255,255,255,0.9) 62%); }
.custody-anim {
  position: absolute; right: 20px; top: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 1;
}
.cust__wallet { font-size: 2rem; color: rgba(234,88,12,0.28); animation: float-bob 4s ease-in-out infinite alternate; }
.cust__tag {
  font-size: 0.66rem; font-weight: 700; font-family: var(--mono);
  color: #ea580c; background: rgba(249,115,22,0.12);
  border: 1px solid rgba(234,88,12,0.18);
  padding: 2px 7px; border-radius: 6px;
}


.reveal {
  --reveal-x: 0px;
  --reveal-y: 22px;
  --reveal-scale: 0.99;
  --reveal-blur: 8px;
  position: relative;
  opacity: 0;
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  will-change: transform, opacity, filter;
}
.reveal.in {
  animation: reveal-in 0.62s var(--ease-out) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}
.reveal--left  { --reveal-x: -26px; --reveal-y: 16px; }
.reveal--right { --reveal-x: 26px; --reveal-y: 16px; }
.reveal--zoom  { --reveal-y: 18px; --reveal-scale: 0.965; --reveal-blur: 10px; }
.reveal--flip,
.reveal--soft  { --reveal-y: 22px; --reveal-scale: 0.99; --reveal-blur: 8px; }
.bcard.reveal::after,
.step.reveal::after,
.dl-main.reveal::after,
.dl-reqs.reveal::after,
.faq__item.reveal::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255,102,0,0.9), rgba(168,85,247,0.55), transparent);
}
.bcard.reveal.in::after,
.step.reveal.in::after,
.dl-main.reveal.in::after,
.dl-reqs.reveal.in::after,
.faq__item.reveal.in::after {
  animation: reveal-trace 0.9s var(--ease-out) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}
.bcard.reveal .bcard__icon,
.step.reveal .step__icon-wrap {
  opacity: 0;
  transform: scale(0.88);
}
.bcard.reveal.in .bcard__icon,
.step.reveal.in .step__icon-wrap {
  animation: icon-pop 0.48s var(--ease-out) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}
@keyframes reveal-in {
  0% {
    opacity: 0;
    transform:
      translate3d(var(--reveal-x), var(--reveal-y), 0)
      scale(var(--reveal-scale));
    filter: blur(var(--reveal-blur));
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
@keyframes reveal-trace {
  0%   { opacity: 0; transform: scaleX(0); }
  28%  { opacity: 1; }
  72%  { opacity: 0.55; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes icon-pop {
  0%   { opacity: 0; transform: scale(0.88); }
  70%  { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

.hero__h1,
.hero__sub,
.hero__paymethods,
.hero__ctas,
.hero__powered {
  animation: hero-rise 1s var(--ease-out) both;
}
.hero__sub { animation-delay: 0.08s; }
.hero__paymethods { animation-delay: 0.16s; }
.hero__ctas { animation-delay: 0.24s; }
.hero__powered { animation-delay: 0.36s; }
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.how { background: var(--ink); position: relative; overflow: hidden; }
.how::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(168,85,247,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-svg {
  position: absolute;
  top: 56px; left: 10%;
  width: 80%; height: 4px;
  overflow: visible; z-index: 0;
}

.step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 16px;
  padding: 0 12px;
}

.step__num {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tx-3);
}

.step__icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--glass-2);
  border: 1px solid var(--rim);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.step:hover .step__icon-wrap {
  border-color: rgba(168,85,247,0.4);
  transform: scale(1.08);
  box-shadow: 0 0 32px var(--pur-glow);
}
.step__icon-wrap::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(168,85,247,0.15);
  animation: spin-ring 20s linear infinite;
}

.step__icon {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--pur), var(--amb));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.step p {
  font-size: 0.84rem; color: var(--tx-2); line-height: 1.65;
}
.step code {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--grn);
  background: rgba(34,197,94,0.07);
  padding: 1px 5px; border-radius: 4px;
}


.download {
  background: #fff;
  color: #111827;
  position: relative; overflow: hidden;
}
.download__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dl-hero { text-align: center; margin-bottom: 56px; }
.dl-version {
  display: inline-block;
  font-family: var(--mono); font-size: 0.8rem; font-weight: 700;
  color: #16a34a; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(22,163,74,0.18);
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.dl-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; letter-spacing: -0.03em; color: #111827; line-height: 1.1;
  margin-bottom: 14px;
}
.dl-sub { font-size: 0.95rem; color: #475569; line-height: 1.65; }

.dl-main {
  max-width: 460px;
  margin: 0 auto 28px;
}


.dl-actions {
  display: flex; flex-direction: column; gap: 14px;
}

.dl-meta {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,23,42,0.08);
}
.dl-meta__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.dl-meta__row:last-child { border-bottom: none; }
.dl-meta__label { font-size: 0.78rem; color: #64748b; font-weight: 500; }
.dl-meta__val   { font-size: 0.78rem; color: #111827; font-family: var(--mono); }

.dl-distros {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.dl-distros__label { font-size: 0.72rem; color: #64748b; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.dl-distros__row {
  display: flex; gap: 14px;
}
.dl-distros__row span { font-size: 1.4rem; color: #64748b; transition: color var(--t), transform var(--t); cursor: default; }
.dl-distros__row span:hover { color: var(--pur); transform: translateY(-3px); }

.download .btn--ghost {
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}
.download .btn--ghost:hover {
  background: #f8fafc;
  color: #111827;
  border-color: rgba(124,58,237,0.24);
}


.pgp-details {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}
.pgp-details summary {
  cursor: pointer; list-style: none;
  padding: 10px 14px;
  font-size: 0.82rem; color: #475569;
  display: flex; align-items: center; gap: 8px;
  transition: color var(--t);
}
.pgp-details summary:hover { color: #111827; }
.pgp-details summary i { color: var(--pur); }
.pgp-body {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.pgp-body code {
  font-family: var(--mono); font-size: 0.75rem;
  color: #16a34a; display: block;
  background: rgba(34,197,94,0.06); border-radius: 6px;
  padding: 8px 10px; margin-bottom: 8px;
  overflow-x: auto; white-space: nowrap;
}
.pgp-body p { font-size: 0.76rem; color: #64748b; }
.pgp-key {
  font-family: var(--mono);
  color: #111827;
  overflow-wrap: anywhere;
}
.pgp-key { font-family: var(--mono); color: var(--pur); font-size: 0.76rem; }


.dl-reqs {
  display: flex; align-items: center;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  gap: 0;
  box-shadow: 0 18px 44px rgba(15,23,42,0.08);
}
.dl-req {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
  padding: 0 16px;
}
.dl-req > i { font-size: 1.2rem; color: var(--pur); margin-bottom: 4px; }
.dl-req strong { font-size: 0.88rem; color: #111827; }
.dl-req span   { font-size: 0.75rem; color: #64748b; line-height: 1.4; }
.dl-req-div    { width: 1px; height: 52px; background: rgba(15,23,42,0.1); flex-shrink: 0; }


.faq { background: var(--ink-2); }

.faq__wrap { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }

.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq__item {
  background: var(--glass);
  border: 1px solid var(--rim);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item[open] { border-color: rgba(168,85,247,0.25); }

.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-size: 0.93rem; font-weight: 600; color: var(--tx);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color var(--t);
}
.faq__item summary:hover { color: #fff; }
.faq__item summary::after {
  content: '+';
  font-size: 1.2rem; color: var(--pur);
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  padding: 0 22px 18px;
  font-size: 0.87rem; color: var(--tx-2); line-height: 1.72;
}


.footer {
  background: var(--ink);
  border-top: 1px solid var(--rim);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.84rem; color: var(--tx-3); line-height: 1.7;
  max-width: 280px; margin-bottom: 20px;
}

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--rim);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-3); font-size: 0.9rem;
  transition: var(--t);
}
.footer__socials a:hover { border-color: var(--pur); color: var(--pur); background: rgba(168,85,247,0.08); }

.footer__col { display: flex; flex-direction: column; gap: 2px; }
.footer__col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tx-2); margin-bottom: 14px;
}
.footer__col a {
  font-size: 0.85rem; color: var(--tx-3); padding: 4px 0;
  transition: color var(--t);
}
.footer__col a:hover { color: var(--tx); }

.footer__bar {
  border-top: 1px solid var(--rim);
  padding: 18px 0;
}
.footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.footer__bar-inner span { font-size: 0.76rem; color: var(--tx-3); }


.mag-btn { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s; }


@media (max-width: 1100px) {
  .bcard--big      { grid-column: span 12; min-height: 280px; }
  .bcard--tor      { grid-column: span 6; }
  .bcard--xmr      { grid-column: span 6; }
  .bcard--multisig { grid-column: span 4; }
  .bcard--oss      { grid-column: span 4; }
  .bcard--custody  { grid-column: span 4; }
}

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 72px; }
  .hero__right  { display: none; }
  .h1-word      { font-size: 18vw; }
  .h1-tagline   { font-size: 1.3rem; }
  .features__top { flex-direction: column; gap: 28px; }
  .features__banner { width: min(100%, 318px); }
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .steps-svg { display: none; }
  .dl-actions { flex-direction: row; flex-wrap: wrap; }
  .dl-actions .btn--full { min-width: 200px; }
  .dl-actions .dl-meta, .dl-actions .dl-distros, .dl-actions .pgp-details { flex: 100%; }
  .faq__wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(6,4,14,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--rim);
    padding: 16px 28px 24px;
    gap: 0; z-index: 800;
  }
  .nav__links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rim);
    font-size: 1rem;
  }
  .nav__github { display: none; }
  .burger { display: flex; }

  .bcard--multisig, .bcard--oss, .bcard--custody { grid-column: span 12; }
  .bcard--tor, .bcard--xmr { grid-column: span 12; }

  .hero__inner {
    width: 100vw;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }
  .hero__paymethods,
  .hero__ctas,
  .hero__stats {
    width: 100%;
    max-width: calc(100vw - 36px);
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hstat--tall { min-height: 160px; }
  .hstat__val { font-size: 2.45rem; }
  .hpm__logos {
    width: 100%;
    gap: 18px;
    overflow: hidden;
  }

  .steps-track { grid-template-columns: 1fr; }

  .dl-reqs { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .dl-req-div { display: none; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }

  .hero__h1 { font-size: 2.6rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .section { padding: 80px 0; }
  .hero__h1 { font-size: 2.1rem; }
  .features__top { margin-bottom: 40px; }
  .features__banner { width: 100%; }
}


::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pur-d); }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
}
