:root{

  --bg: #070b16;

  --bg2:#0a1123;

  --soft:#0f1b35;

  --soft2:#0b1530;

  --card: rgba(255,255,255,.06);

  --card2: rgba(255,255,255,.08);

  --line: rgba(255,255,255,.10);

  --text: rgba(255,255,255,.92);

  --muted: rgba(255,255,255,.68);

  --faint: rgba(255,255,255,.45);



  --blue: #4f8cff;

  --blue2:#7bd1ff;

  --cyan:#72f0ff;

  --accent: linear-gradient(135deg, var(--blue), var(--cyan));



  --shadow: 0 22px 70px rgba(0,0,0,.35);

  --radius: 26px;

  --radius2: 18px;

}



html[data-theme="light"]{

  --bg: #f5f7ff;

  --bg2:#eef3ff;

  --soft:#ffffff;

  --soft2:#f3f6ff;

  --card: rgba(10,20,50,.05);

  --card2: rgba(10,20,50,.08);

  --line: rgba(10,20,50,.12);

  --text: rgba(10,20,50,.92);

  --muted: rgba(10,20,50,.65);

  --faint: rgba(10,20,50,.48);

  --shadow: 0 22px 70px rgba(10,20,50,.12);

}



*{box-sizing:border-box}

html,body{height:100%}

body{

  margin:0;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;

  color:var(--text);

  background: radial-gradient(1200px 600px at 15% 10%, rgba(79,140,255,.25), transparent 55%),

              radial-gradient(900px 650px at 85% 20%, rgba(114,240,255,.18), transparent 60%),

              linear-gradient(180deg, var(--bg), var(--bg2));

  overflow-x:hidden;

}



/* smooth feel */

*{

  transition:

    background .35s cubic-bezier(.4,0,.2,1),

    color .35s cubic-bezier(.4,0,.2,1),

    border-color .35s cubic-bezier(.4,0,.2,1),

    transform .35s cubic-bezier(.4,0,.2,1),

    box-shadow .35s cubic-bezier(.4,0,.2,1),

    opacity .35s cubic-bezier(.4,0,.2,1);

}



a{color:inherit; text-decoration:none}

button{font:inherit}



/* Ambient layers */

.ambient{position:fixed; inset:0; pointer-events:none; z-index:-1}

.orb{

  position:absolute; filter: blur(40px);

  opacity:.75; border-radius:50%;

  mix-blend-mode: screen;

}

.orb-a{width:540px; height:540px; left:-120px; top:80px; background: rgba(79,140,255,.22)}

.orb-b{width:560px; height:560px; right:-140px; top:120px; background: rgba(114,240,255,.16)}

.grid{

  position:absolute; inset:-2px;

  background-image:

    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),

    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);

  background-size: 70px 70px;

  mask-image: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,1) 15%, transparent 62%);

  opacity:.35;

}

.noise{

  position:absolute; inset:0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");

  opacity:.22;

  mix-blend-mode: overlay;

}



/* Topbar */

.topbar{

  position:sticky; top:0; z-index:20;

  display:flex; align-items:center; justify-content:space-between;

  padding:18px 22px;

  gap:14px;

  backdrop-filter: blur(14px);

  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0));

  border-bottom:1px solid rgba(255,255,255,.06);

}



.brand{display:flex; align-items:center; gap:12px; cursor:pointer}

.brand-mark{

  width:42px; height:42px; border-radius:14px;

  background: linear-gradient(135deg, rgba(79,140,255,.95), rgba(114,240,255,.85));

  box-shadow: 0 18px 55px rgba(79,140,255,.22);

}

.brand-title{font-weight:800; letter-spacing:.6px}

.brand-sub{font-size:12px; color:var(--muted); margin-top:2px}



.nav{display:flex; gap:10px; align-items:center}

.nav-pill{

  padding:10px 14px;

  border-radius:999px;

  background: rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  color:var(--muted);

}

.nav-pill:hover{transform: translateY(-1px); box-shadow: var(--shadow)}

.nav-pill.is-active{

  color:var(--text);

  background: linear-gradient(135deg, rgba(79,140,255,.26), rgba(114,240,255,.14));

  border-color: rgba(79,140,255,.22);

}



.top-actions{display:flex; gap:10px; align-items:center}



/* Buttons */

.btn{

  display:inline-flex; align-items:center; justify-content:center;

  gap:10px;

  padding:12px 14px;

  border-radius: 14px;

  border:1px solid rgba(255,255,255,.10);

  background: rgba(255,255,255,.06);

  color:var(--text);

}

.btn .icon{opacity:.9}

.btn:hover{transform: translateY(-2px); box-shadow: var(--shadow)}

.btn:active{transform: scale(.98)}

.btn.primary{

  border-color: rgba(79,140,255,.30);

  background: linear-gradient(135deg, rgba(79,140,255,.95), rgba(114,240,255,.55));

  color:#071020;

}

.btn.soft{

  background: linear-gradient(135deg, rgba(79,140,255,.20), rgba(114,240,255,.12));

  border-color: rgba(114,240,255,.20);

}

.btn.ghost{

  background: transparent;

  border-color: rgba(255,255,255,.14);

  color: var(--muted);

}

.btn.tiny{

  padding:10px 12px; border-radius: 12px;

  font-size: 13px;

}

.full{width:100%}



/* Layout */

.layout{

  display:grid;

  grid-template-columns: 320px 1fr;

  gap:18px;

  padding:18px 22px 42px;

  max-width: 1280px;

  margin: 0 auto;

}



.sidebar{display:flex; flex-direction:column; gap:14px}

.sidebar-card, .status-card{

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 16px;

}



.sidebar-title{

  font-size:12px; letter-spacing:1.5px; color: var(--muted);

  margin-bottom: 12px;

}



.side-item{

  width:100%;

  display:flex; align-items:center; gap:12px;

  padding:12px 12px;

  border-radius: 16px;

  background: transparent;

  border: 1px solid transparent;

  color: var(--muted);

  text-align:left;

}

.side-item:hover{

  background: rgba(255,255,255,.06);

  border-color: rgba(255,255,255,.10);

  transform: translateY(-1px);

}

.side-item.is-current{

  color: var(--text);

  background: linear-gradient(135deg, rgba(79,140,255,.18), rgba(114,240,255,.10));

  border-color: rgba(79,140,255,.22);

}

.dot{width:8px; height:8px; border-radius:999px; background: rgba(255,255,255,.25)}

.side-item.is-current .dot{background: linear-gradient(135deg, var(--blue), var(--cyan))}



.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}



.side-link{

  display:flex; align-items:center; gap:12px;

  padding:12px;

  border-radius: 16px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.10);

  color: var(--text);

}

.chip{width:10px; height:10px; border-radius:999px}

.chip-green{background: #34d399}



.status-head{display:flex; align-items:center; gap:12px; margin-bottom:12px}

.status-led{

  width:16px; height:16px; border-radius:999px;

  background: linear-gradient(135deg, #34d399, #60a5fa);

  box-shadow: 0 0 0 6px rgba(52,211,153,.12);

}

.status-title{font-weight:700}

.status-sub{font-size:12px; color: var(--muted); margin-top:2px}

.status-metrics{display:grid; grid-template-columns: 1fr 1fr; gap:10px}

.metric{

  padding:12px; border-radius: 18px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.10);

}

.metric .k{font-size:12px; color: var(--muted)}

.metric .v{font-weight:800; margin-top:2px}



/* Content pages */

.content{min-height: calc(100vh - 90px)}

.page{display:none}

.page.is-visible{

  display:block;

  animation: pageIn .55s cubic-bezier(.4,0,.2,1);

}

@keyframes pageIn{

  from{opacity:0; transform: translateY(18px) scale(.985)}

  to{opacity:1; transform:none}

}



/* Hero */

.hero{

  display:grid;

  grid-template-columns: 1.2fr .9fr;

  gap:18px;

  align-items:stretch;

}



.badge{

  display:inline-flex; align-items:center; gap:10px;

  padding:10px 12px;

  border-radius:999px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  color: var(--muted);

  margin-bottom: 14px;

}

.badge-dot{width:10px; height:10px; border-radius:999px; background: var(--blue); box-shadow: 0 0 0 6px rgba(79,140,255,.14)}



.h1{

  font-size: 44px;

  line-height: 1.08;

  margin: 0 0 12px;

  letter-spacing: -.6px;

}

.accent{

  background: var(--accent);

  -webkit-background-clip:text;

  background-clip:text;

  color: transparent;

}

.lead{

  margin:0 0 16px;

  color: var(--muted);

  font-size: 15.5px;

  line-height: 1.65;

}



.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}



.trust{

  display:grid;

  grid-template-columns: repeat(3, 1fr);

  gap:10px;

  margin-top: 18px;

}

.trust-item{

  padding:14px;

  border-radius: 20px;

  background: rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.10);

}

.trust-big{font-weight:900; font-size:16px}

.trust-sub{font-size:12px; color: var(--muted); margin-top:6px}



/* Right glass panel */

.glass-panel{

  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));

  border: 1px solid rgba(255,255,255,.12);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 16px;

  overflow:hidden;

  position:relative;

}

.glass-panel::after{

  content:"";

  position:absolute; inset:-2px;

  background: radial-gradient(600px 280px at 25% 10%, rgba(79,140,255,.22), transparent 60%),

              radial-gradient(520px 260px at 85% 20%, rgba(114,240,255,.16), transparent 65%);

  opacity:.85;

  pointer-events:none;

}

.panel-head, .panel-body, .panel-foot{position:relative; z-index:1}

.panel-head{

  display:flex; justify-content:space-between; align-items:center;

  margin-bottom: 12px;

}

.panel-title{font-size:12px; letter-spacing:1.5px; color: var(--muted)}

.panel-chip{

  padding:8px 10px;

  border-radius: 999px;

  background: rgba(0,0,0,.22);

  border: 1px solid rgba(255,255,255,.14);

  color: var(--text);

  font-weight:700;

}

.bolt{margin-right:6px}



.kv{

  display:flex; justify-content:space-between; align-items:center;

  padding:12px 12px;

  border-radius: 16px;

  background: rgba(0,0,0,.18);

  border:1px solid rgba(255,255,255,.12);

  margin-bottom: 10px;

}

.kv .k{color: var(--muted); font-size:12px; letter-spacing:1px}

.kv .v{font-weight:800}



.pulse{

  width:10px; height:10px; border-radius:999px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  display:inline-block; margin-right:8px;

  box-shadow: 0 0 0 6px rgba(79,140,255,.14);

  animation: pulse 1.6s ease-in-out infinite;

}

@keyframes pulse{

  0%,100%{transform: scale(1); opacity: .85}

  50%{transform: scale(1.18); opacity: 1}

}



.mini{

  margin-top: 12px;

  padding: 14px;

  border-radius: 20px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

}

.mini-title{font-weight:800; margin-bottom:6px}

.mini-text{margin:0; color: var(--muted); line-height:1.6}



.panel-foot{display:flex; gap:10px; margin-top: 12px}



/* Sections */

.section{margin-top: 20px}

.section.compact{margin-top: 16px}

.section-head{margin: 0 0 12px}

.h2{font-size: 24px; margin:0}

.h3{font-size: 18px; margin:0}

.muted{color: var(--muted); line-height:1.65; margin:6px 0 0}



.cards{

  display:grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

}

.card{

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 16px;

  position:relative;

  overflow:hidden;

}

.card:hover{transform: translateY(-3px)}

.card::after{

  content:"";

  position:absolute; inset:0;

  background: linear-gradient(120deg, transparent, rgba(79,140,255,.15), transparent);

  opacity:0;

}

.card:hover::after{opacity:1; animation: shine 1.2s linear}

@keyframes shine{from{transform: translateX(-100%)}to{transform: translateX(100%)}}



.card-icon{

  width:40px; height:40px; border-radius: 14px;

  display:grid; place-items:center;

  background: rgba(79,140,255,.16);

  border: 1px solid rgba(79,140,255,.20);

  margin-bottom: 10px;

}

.card h3{margin:0 0 6px; font-size:16px}

.card p{margin:0; color: var(--muted); line-height:1.6}



/* Split */

.split{display:flex; justify-content:space-between; gap:14px; align-items:flex-end}

.pill-row{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}

.pill{

  padding:10px 12px; border-radius:999px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  color: var(--muted);

  font-size: 13px;

}



/* Pricing */

.pricing-grid{

  display:grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-top: 12px;

}

.price-card{

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 16px;

  position:relative;

  overflow:hidden;

}

.price-card:hover{transform: translateY(-3px)}

.price-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}

.price-name{font-weight:900}

.price-tag{

  font-size: 12px; color: var(--muted);

  padding:8px 10px; border-radius:999px;

  border:1px solid rgba(255,255,255,.12);

  background: rgba(0,0,0,.12);

}

.price{

  font-size: 34px;

  font-weight: 900;

  letter-spacing: -.5px;

  margin-bottom: 8px;

}

.rp{font-size: 13px; color: var(--muted); margin-right:4px; font-weight:700}

.per{font-size: 12px; color: var(--muted); font-weight:700}

.desc{color: var(--muted); margin: 0 0 10px; line-height: 1.65}

.list{margin:0 0 12px; padding-left: 18px; color: var(--muted); line-height: 1.65}

.list li{margin: 6px 0}



.featured{

  border-color: rgba(79,140,255,.30);

  background: linear-gradient(180deg, rgba(79,140,255,.14), rgba(255,255,255,.06));

}

.featured .price-tag{border-color: rgba(79,140,255,.28)}

.shine{

  position:absolute; inset:-2px;

  background: radial-gradient(500px 240px at 10% 0%, rgba(79,140,255,.22), transparent 55%),

              radial-gradient(520px 280px at 90% 20%, rgba(114,240,255,.18), transparent 60%);

  opacity:.75;

  pointer-events:none;

}



/* Page head + strip */

.page-head{

  display:flex; justify-content:space-between; align-items:flex-start;

  gap: 14px;

  margin-bottom: 12px;

}

.page-actions{display:flex; gap:10px; flex-wrap:wrap}

.info-strip{

  display:grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 10px;

  margin: 10px 0 12px;

}

.strip-item{

  padding: 12px;

  border-radius: 18px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.10);

}

.strip-item .k{font-size: 12px; color: var(--muted)}

.strip-item .v{font-weight: 900; margin-top: 4px}



/* About */

.about-grid{

  display:grid;

  grid-template-columns: 1.35fr .85fr;

  gap: 12px;

}

.about-card{

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.10);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 16px;

}

.about-card.big{padding: 18px}

.about-kicker{font-size: 12px; color: var(--muted); letter-spacing:1.5px; margin-bottom:10px}

.about-points{display:grid; gap:10px; margin-top: 14px}

.point{

  display:flex; gap:12px; align-items:center;

  padding: 12px;

  border-radius: 18px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.10);

}

.p-ico{

  width:38px; height:38px; border-radius: 14px;

  display:grid; place-items:center;

  background: rgba(79,140,255,.14);

  border: 1px solid rgba(79,140,255,.20);

}

.p-title{font-weight:900}

.p-sub{font-size: 12px; color: var(--muted); margin-top:2px}



.faq details{

  border-radius: 18px;

  padding: 12px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.10);

  margin-bottom: 10px;

}

.faq summary{cursor:pointer; font-weight:800}

.faq p{color: var(--muted); margin: 10px 0 0; line-height: 1.65}



/* CTA wide */

.cta-wide{

  display:flex; justify-content:space-between; align-items:center;

  gap: 14px;

  padding: 16px;

  border-radius: var(--radius);

  background: linear-gradient(135deg, rgba(79,140,255,.20), rgba(114,240,255,.10));

  border: 1px solid rgba(79,140,255,.22);

}

.cta-title{font-weight: 900; font-size: 18px}

.cta-sub{color: var(--muted); margin-top: 6px; line-height:1.65}

.cta-actions{display:flex; gap:10px; flex-wrap:wrap}



.footer{

  margin-top: 14px;

  padding: 14px 4px;

  display:flex; justify-content:space-between; color: var(--muted);

}



/* Modal */

.modal{position:fixed; inset:0; z-index:60}

.modal.hidden{display:none}

.modal-bg{

  position:absolute; inset:0;

  background: rgba(0,0,0,.55);

  backdrop-filter: blur(8px);

}

.modal-box{

  position:relative;

  max-width: 820px;

  width: min(92vw, 820px);

  margin: 70px auto 0;

  border-radius: 28px;

  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));

  border: 1px solid rgba(255,255,255,.14);

  box-shadow: var(--shadow);

  padding: 18px;

  animation: modalIn .45s cubic-bezier(.4,0,.2,1);

}

@keyframes modalIn{

  from{opacity:0; transform: translateY(18px) scale(.985)}

  to{opacity:1; transform:none}

}

.modal-head{

  display:flex; justify-content:space-between; align-items:flex-start;

  gap: 12px;

  margin-bottom: 10px;

}

.modal-kicker{font-size:12px; letter-spacing:1.5px; color: var(--muted)}

.modal-title{font-size: 22px; font-weight: 900; margin-top:4px}

.modal-desc{color: var(--muted); line-height: 1.65; margin: 0 0 12px}



.icon-btn{

  width:42px; height:42px;

  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.14);

  background: rgba(255,255,255,.06);

  color: var(--text);

}

.icon-btn:hover{transform: translateY(-2px)}

.modal-grid{

  display:grid;

  grid-template-columns: 1.2fr .8fr;

  gap: 12px;

}

.modal-card{

  padding: 14px;

  border-radius: 22px;

  background: rgba(0,0,0,.12);

  border: 1px solid rgba(255,255,255,.12);

}

.mc-title{font-weight:900; margin-bottom:10px}

.modal-list{margin:0; padding-left: 18px; color: var(--muted); line-height: 1.7}

.mc-text{color: var(--muted); margin:0; line-height: 1.65}



.modal-actions{display:grid; gap:10px; margin-top: 12px}



/* Responsive */

@media (max-width: 1060px){

  .layout{grid-template-columns: 1fr; }

  .sidebar{order:2}

  .content{order:1}

  .hero{grid-template-columns: 1fr}

  .cards{grid-template-columns: 1fr}

  .pricing-grid{grid-template-columns: 1fr}

  .info-strip{grid-template-columns: 1fr 1fr}

  .about-grid{grid-template-columns: 1fr}

  .split{flex-direction:column; align-items:flex-start}

  .pill-row{justify-content:flex-start}

}
