/* Base + layout */
:root{
  --bg:#070b14;
  --panel:rgba(255,255,255,.03);
  --border:rgba(255,255,255,.10);
  --text:#e9eefc;
  --muted:#a9b3d1;
  --brand1:#7c3aed;
  --brand2:#22d3ee;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit}
.wrap{max-width:1100px;margin:0 auto;padding:0 16px}
.muted{color:var(--muted)}

.h1{margin:18px 0 10px}
.h2{margin:20px 0 10px}
.grad{
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  -webkit-background-clip:text;background-clip:text;color:transparent
}

/* Forms */
input,select,textarea{
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
}
