:root{
  --bg:#070A12;
  --panel: rgba(255,255,255,.06);
  --text:#E9EEF8;
  --muted:#A7B0C0;
  --accent:#7CFFB2;
  --accent2:#7CC6FF;
  --danger:#FF5C7A;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 80px rgba(0,0,0,.55);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(124,255,178,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(124,198,255,.16), transparent 60%),
              linear-gradient(180deg, #050710, #070A12 30%, #050710);
  color:var(--text);
  overflow-x:hidden;
}
.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,.18), transparent 2px),
    radial-gradient(1px 1px at 120px 80px, rgba(255,255,255,.12), transparent 2px),
    radial-gradient(1px 1px at 260px 120px, rgba(255,255,255,.10), transparent 2px);
  background-size: 320px 200px;
  opacity:.35;
  pointer-events:none;
  mix-blend-mode: screen;
}
.top{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  gap:16px;
  justify-content:space-between;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.55);
}
.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:42px; height:42px;
  display:grid; place-items:center;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(124,255,178,.16), rgba(124,198,255,.10));
  border-radius:12px;
  box-shadow: var(--shadow);
}
.name{font-weight:800; letter-spacing:.2px}
.name span{color:var(--accent)}
.tag{color:var(--muted); font-size:13px; margin-top:2px}
.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.navlink{
  color:var(--muted);
  text-decoration:none;
  border:1px solid transparent;
  padding:8px 10px;
  border-radius:10px;
}
.navlink:hover{border-color:var(--border); color:var(--text); background: rgba(255,255,255,.04)}

.wrap{max-width:1100px; margin:0 auto; padding:28px 18px 60px}
.hero{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:18px;
  align-items:stretch;
  margin-top:8px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .nav{display:none}
}
.hero-left{
  padding:26px;
  border:1px solid var(--border);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.hero h1{
  font-size:42px;
  line-height:1.05;
  margin:0 0 10px;
}
.accent{color:var(--accent)}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.cta{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:6px}
.btn{
  appearance:none;
  border:1px solid rgba(124,255,178,.35);
  background: linear-gradient(135deg, rgba(124,255,178,.18), rgba(124,198,255,.10));
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 12px 40px rgba(124,255,178,.08);
}
.btn:hover{transform: translateY(-1px); transition: .12s ease}
.btn.ghost{
  border-color: var(--border);
  background: rgba(255,255,255,.03);
  text-decoration:none;
}
.status{margin-top:14px; color:var(--muted); font-size:13px}

.hero-right{display:flex}
.card{
  flex:1;
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(500px 260px at 20% 20%, rgba(124,255,178,.20), transparent 60%),
              radial-gradient(420px 240px at 80% 60%, rgba(124,198,255,.18), transparent 60%);
  filter: blur(18px);
  opacity:.75;
}
.card > *{position:relative}
.card-top{display:flex; gap:10px; align-items:center; justify-content:flex-end}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.15);
  color:var(--muted);
}
.chip.warn{border-color: rgba(255,92,122,.40); color: rgba(255,92,122,.95)}
.quote{font-size:18px; font-weight:750; letter-spacing:.2px; margin:18px 0 14px}
.meter{height:10px; border-radius:999px; border:1px solid var(--border); background: rgba(0,0,0,.18); overflow:hidden}
.meter-bar{height:100%; width:18%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius:999px}
.small{margin-top:12px; font-size:12px; color:var(--muted)}
.dot{display:inline-block; width:8px; height:8px; border-radius:999px; background: var(--accent); margin-right:6px}
.dot2{background: var(--accent2)}
.sep{margin:0 8px; opacity:.6}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}
.panel{
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 70px rgba(0,0,0,.35);
}
.panel h2{margin:0 0 10px; font-size:18px}
.panel p{margin:10px 0; color:var(--muted); line-height:1.65}
.panel ul{margin:10px 0 0 18px; color:var(--muted); line-height:1.7}
.features{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.feature{display:flex; gap:12px; align-items:flex-start; padding:12px; border:1px solid rgba(255,255,255,.10); border-radius:14px; background: rgba(0,0,0,.12)}
.ficon{font-size:18px; width:32px; height:32px; border-radius:12px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04)}
.ftitle{font-weight:800}
.ftext{color:var(--muted); font-size:13px; margin-top:2px}

.footer .warning{font-size:14px}
.boom{color:var(--danger); font-weight:900}
details{margin-top:10px; color:var(--muted)}
summary{cursor:pointer; font-weight:700; color:var(--text)}

body.pulse .meter-bar{width: 92%; transition: width 1.2s ease}
body.pulse .logo{box-shadow: 0 0 0 1px rgba(124,255,178,.35), 0 0 60px rgba(124,255,178,.18)}
