:root{
  --bg0:#07060c;
  --bg1:#0b0713;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --text:#f3f2ff;
  --muted:rgba(243,242,255,.72);
  --accent:#a36bff;
  --accent2:#6f3bff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(163,107,255,.30), transparent 60%),
    radial-gradient(700px 420px at 85% 20%, rgba(111,59,255,.20), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
}

a{color:inherit; text-decoration:none}
.container{max-width:1180px; margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.main{padding:36px 0 70px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(14px);
  background: rgba(10,7,18,.70);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{display:flex; align-items:center; gap:20px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand-logo{width:40px; height:40px; border-radius:12px; object-fit:cover; background:rgba(255,255,255,.05)}
.brand-name{font-weight:800; letter-spacing:.6px}
.brand-sub{font-size:12px; color:var(--muted)}
.nav{display:flex; gap:18px; margin-left:auto}
.nav-link{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(243,242,255,.85);
}
.nav-link:hover{background:rgba(255,255,255,.06)}
.topbar-right{margin-left:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn-primary{
  border-color: rgba(163,107,255,.35);
  background: linear-gradient(180deg, rgba(163,107,255,.95), rgba(111,59,255,.90));
  box-shadow: 0 10px 30px rgba(111,59,255,.25);
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost{background:rgba(255,255,255,.04)}
.btn-sm{padding:10px 12px; border-radius:12px; font-size:14px}

/* Hero */
.hero{margin-top:10px}
.hero-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  padding:26px;
  border-radius:24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.kicker{color:rgba(243,242,255,.78); font-size:14px; margin-bottom:10px}
.title{
  margin:0;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.5px;
}
.desc{margin:12px 0 18px; color:var(--muted); max-width:54ch}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}
.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color:rgba(243,242,255,.86);
  font-size:13px;
}

/* Right panels */
.hero-right{display:flex; flex-direction:column; gap:12px}
.panel{
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.panel-title{font-weight:700; color:rgba(243,242,255,.88); margin-bottom:8px}
.panel-value{font-size:20px; font-weight:800}
.panel-sub{color:var(--muted); font-size:13px}

.copy{
  width:100%;
  text-align:left;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.copy:hover{background:rgba(255,255,255,.10)}
.copy-ip{display:block; font-size:18px; font-weight:900}
.copy-sub{display:block; font-size:12px; color:var(--muted); margin-top:4px}
.copy.copied{outline:2px solid rgba(163,107,255,.65)}

.count-head{display:flex; align-items:center; justify-content:space-between; gap:10px}
.count-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:10px; margin-top:12px;
}
.box{
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
}
.n{font-size:22px; font-weight:900}
.l{font-size:12px; color:var(--muted); margin-top:4px}
.note{margin-top:10px}

/* Sections */
.section{margin-top:26px}
.section-head h2{margin:0 0 6px; font-size:22px}
.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.card-ico{font-size:18px}
.card-title{margin-top:10px; font-weight:900}
.card-text{margin-top:6px; color:var(--muted); font-size:14px}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(10,7,18,.55);
  padding:18px 0;
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px}
.footer-title{font-weight:900}
.footer-sub{font-size:12px; color:var(--muted)}
.footer-link{color:rgba(243,242,255,.88)}
.footer-link:hover{text-decoration:underline}
.dot{opacity:.6; padding:0 8px}

/* Responsive */
@media (max-width: 980px){
  .hero-card{grid-template-columns:1fr}
  .title{font-size:36px}
  .grid{grid-template-columns:1fr}
  .nav{display:none}
}
