/* ── Reset + Design tokens ───────────────────────────────────────────────── */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#050810;--bg2:#0c1018;
  --ac:#00d4ff;--ac2:#7c3aed;
  --gn:#00ff88;--or:#ff8c42;--rd:#ff4757;--pu:#c084fc;
  --tx:#e2e8f0;--mu:#566880;--br:#192233;
  --surface:rgba(9,13,20,.85);--surface2:rgba(6,9,16,.96);
  --compiler-opacity:.66;
}
html,body{height:100vh;height:100dvh;overflow:hidden;overflow-x:hidden;background:var(--bg);color:var(--tx);font-family:'Outfit',sans-serif}
body{position:relative}
button,input{font:inherit}
button{background:none;border:none;cursor:pointer}
