:root{
  --bg:#070A0F;
  --fg:#EAF0FF;
  --muted:rgba(234,240,255,.65);
  --glass:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --neon:#8B5CFF;
  --neon2:#32E6FF;
  --ok:#35f28a;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--fg);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1200px;margin:0 auto;padding:110px 22px 48px}

.bg{position:fixed;inset:0;z-index:-2}
#fx{width:100%;height:100%;display:block}
.vignette{
  position:absolute;inset:-1px;
  background:
    radial-gradient(70% 60% at 70% 25%, rgba(139,92,255,.20), transparent 55%),
    radial-gradient(60% 50% at 25% 65%, rgba(50,230,255,.16), transparent 60%),
    radial-gradient(80% 80% at 50% 120%, rgba(0,0,0,.85), rgba(0,0,0,.1) 55%, rgba(0,0,0,.85));
}
.grain{
  position:absolute;inset:0;
  opacity:.08;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.topbar{
  position:fixed;top:0;left:0;right:0;
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;
  background:linear-gradient(to bottom, rgba(7,10,15,.75), rgba(7,10,15,.35));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  z-index:10;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.14em}
.brand .mark{
  width:14px;height:14px;border-radius:4px;
  background:linear-gradient(135deg,var(--neon),var(--neon2));
  box-shadow:0 0 0 6px rgba(139,92,255,.16);
}
.brand .word{font-size:13px}

.nav{display:flex;gap:16px;opacity:.9}
.nav a{font-size:13px;color:var(--muted)}
.nav a:hover{color:var(--fg)}

.actions{display:flex;gap:10px;align-items:center}
.pill{
  display:flex;gap:10px;align-items:center;
  padding:10px 12px;border-radius:999px;
  background:var(--glass);border:1px solid var(--line);color:var(--fg);
  cursor:pointer;
}
.pill .dot{width:8px;height:8px;border-radius:99px;background:var(--ok);box-shadow:0 0 18px rgba(53,242,138,.6)}
.ghost{
  padding:10px 12px;border-radius:12px;
  background:transparent;border:1px solid rgba(255,255,255,.16);
  color:var(--fg);cursor:pointer;
}
.ghost:hover{background:rgba(255,255,255,.06)}

.hero{
  display:grid;grid-template-columns: 1.15fr .85fr;
  gap:22px;align-items:start;
  padding-top:18px;
}
.kicker{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  font-size:12px;padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.75);
}
.headline{margin:18px 0 10px;font-size:48px;line-height:1.06;letter-spacing:-.02em}
.sub{font-weight:600;color:rgba(234,240,255,.75);font-size:22px}
.neon{
  background:linear-gradient(90deg,var(--neon),var(--neon2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{max-width:56ch;color:var(--muted);font-size:16px;line-height:1.55}

.hero-cta{display:flex;gap:10px;margin:18px 0 14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;font-weight:700;
  border:1px solid rgba(255,255,255,.14);
}
.btn.primary{
  background:linear-gradient(135deg, rgba(139,92,255,.92), rgba(50,230,255,.65));
  box-shadow:0 18px 60px rgba(139,92,255,.22);
}
.btn.secondary{background:rgba(255,255,255,.05)}
.btn.secondary:hover{background:rgba(255,255,255,.08)}

.stats{display:flex;gap:14px;margin-top:18px}
.stat{
  flex:1;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;padding:12px 12px;
}
.stat-num{font-size:24px;font-weight:900}
.stat-label{font-size:12px;color:rgba(234,240,255,.65)}

.orb-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.orb-head{margin-bottom:10px}
.orb-title{font-weight:900;letter-spacing:.08em}
.orb-sub{color:rgba(234,240,255,.65);font-size:12px;margin-top:6px}

.orb{position:relative;height:260px;border-radius:18px;display:grid;place-items:center;
  background:radial-gradient(40% 60% at 50% 40%, rgba(139,92,255,.22), transparent 55%),
             radial-gradient(55% 70% at 55% 65%, rgba(50,230,255,.16), transparent 62%),
             rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
}
.orb-glow{
  width:120px;height:120px;border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(139,92,255,.25) 35%, rgba(50,230,255,.12) 70%, transparent 72%);
  filter: blur(0px);
  box-shadow:0 0 60px rgba(139,92,255,.25);
  animation: float 4.8s ease-in-out infinite;
}
.orb-ring{
  position:absolute;width:200px;height:200px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  transform: rotateX(66deg);
  animation: spin 8s linear infinite;
}
.orb-ring.r2{width:240px;height:240px;border-color:rgba(139,92,255,.18);animation-duration:12s}
.orb-ring.r3{width:280px;height:280px;border-color:rgba(50,230,255,.14);animation-duration:18s;transform: rotateX(72deg)}
@keyframes spin{to{transform: rotateX(66deg) rotateZ(360deg)}}
@keyframes float{0%,100%{transform: translateY(-6px)}50%{transform: translateY(8px)}}

.orb-foot{display:flex;gap:8px;margin-top:12px}
.mini{
  flex:1;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.82);
  padding:10px 10px;border-radius:14px;
  cursor:pointer;font-weight:800;font-size:12px;
}
.mini:hover{background:rgba(255,255,255,.10)}

.ticker{
  margin-top:12px;
  display:flex;gap:18px;flex-wrap:wrap;
  color:rgba(234,240,255,.60);
  font-size:12px;
}

.section{margin-top:56px}
.section-head h2{margin:0 0 8px;font-size:26px}
.section-head p{margin:0;color:rgba(234,240,255,.65);max-width:70ch;line-height:1.5}

.grid3{margin-top:16px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.glass{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:16px;
}
.glass h3{margin:0 0 8px}
.glass p{margin:0 0 10px;color:rgba(234,240,255,.65);line-height:1.55}
.glass ul{margin:0;padding-left:18px;color:rgba(234,240,255,.72)}
.glass li{margin:6px 0}

.modules{margin-top:14px;display:grid;grid-template-columns: 1fr 1.4fr;gap:14px;align-items:start}
.module{
  text-align:left;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  cursor:pointer;
}
.module.active{
  border-color:rgba(139,92,255,.40);
  box-shadow:0 18px 60px rgba(139,92,255,.16);
}
.m-title{font-weight:900}
.m-desc{margin-top:6px;color:rgba(234,240,255,.65);font-size:13px;line-height:1.45}

.panel{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  min-height:190px;
}
.panel-inner{color:rgba(234,240,255,.80);line-height:1.6}
.panel-inner b{color:var(--fg)}

.lab{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.lab-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.lab-tags span{
  font-size:12px;padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:rgba(234,240,
