
:root{
  --bg:#0b1020;
  --bg-grad: linear-gradient(180deg, #0b1020 0%, #070a14 100%);
  --ink:#e8eefc;
  --muted:#a9b4d6;
  --accent:#ffcc55;
  --panel:#0f1731;
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  color:var(--ink);
  font-family:"Space Grotesk", system-ui, sans-serif;
  background: var(--bg-grad);
}

.wrap{width:min(1100px, calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0;
  background:#070a14;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{display:flex; justify-content:space-between; align-items:center; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); font-weight:700}
.brand-mark{
  width:16px; height:16px; border-radius:4px;
  background:var(--accent);
  box-shadow:0 0 14px rgba(255,204,85,.5);
}

.nav a{margin-left:16px; color:var(--muted); text-decoration:none; font-weight:600}
.nav .pill{padding:6px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.12)}

.hero{padding:72px 0}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:32px; align-items:center}

.kicker{display:flex; align-items:center; gap:8px; color:var(--muted)}
.kicker .dot{width:8px; height:8px; border-radius:50%; background:var(--accent)}

h1{font-size:56px; margin:12px 0}
.lede{font-size:18px; color:var(--muted); max-width:56ch}

.btn{
  display:inline-block; padding:12px 18px; border-radius:12px;
  text-decoration:none; font-weight:700; border:1px solid rgba(255,255,255,.12)
}
.btn.primary{background:var(--accent); color:#151018; border:none}
.btn.ghost{color:var(--ink); background:transparent}

.hero-card{
  background:var(--panel);
  border-radius:var(--radius);
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
}

.panel{background:#070a14; border-radius:14px; padding:14px}
.panel-top,.panel-bottom{
  display:flex; justify-content:space-between;
  font-family:"JetBrains Mono", monospace;
  font-size:12px; color:var(--muted)
}

.panel-body{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:10px 0}

.matrix{
  display:grid; grid-template-columns:repeat(14,1fr); gap:5px
}
.matrix div,.chunky div{
  width:100%; aspect-ratio:1/1;
  background:rgba(255,204,85,.15); border-radius:50%
}

.right-side{display:flex; flex-direction:column; gap:10px}
.chunky{display:flex; justify-content:space-between; gap:8px}
.controls{display:flex; justify-content:space-between}

.section{padding:64px 0}
.section.alt{background:#070a14}

.how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px}
.how-step{background:#0f1731; padding:18px; border-radius:14px}

.notify-form{display:flex; gap:10px; margin-top:12px}
.notify-form input{
  flex:1; padding:12px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:#070a14; color:var(--ink)
}

.footer{padding:24px 0; border-top:1px solid rgba(255,255,255,.06); text-align:center}
