:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);

  --text:#EAF1FF;
  --muted:rgba(234,241,255,.72);

  --blue:#22D3FF;
  --pink:#FF3AF2;
  --violet:#8A5CFF;
  --lime:#C7FF4A;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;
}

/* Reset */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Noto Sans, "Liberation Sans", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 900px at 15% 10%, rgba(34,211,255,.12), transparent 55%),
              radial-gradient(900px 700px at 85% 0%, rgba(255,58,242,.12), transparent 52%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
strong{ font-weight:800; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.center{ text-align:center; }
.mt-10{ margin-top:10px; }
.mt-24{ margin-top:24px; }

/* Background glow */
.bg-glow{
  position:fixed;
  inset:-200px;
  background:
    radial-gradient(600px 600px at 20% 20%, rgba(34,211,255,.10), transparent 60%),
    radial-gradient(700px 600px at 70% 10%, rgba(255,58,242,.10), transparent 60%),
    radial-gradient(900px 700px at 50% 80%, rgba(138,92,255,.08), transparent 60%);
  filter: blur(20px);
  pointer-events:none;
  z-index:-2;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 170px;
}

.brand__logo{
  width:42px;
  height:42px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(34,211,255,.18));
}

.brand__text{
  font-weight:900;
  letter-spacing:.4px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
  flex:1;
}

.nav a{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition: all .2s ease;
}

.nav a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}

.header__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
  gap:6px;
  align-items:center;
  justify-content:center;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(234,241,255,.88);
  border-radius:10px;
}

/* Drawer */
.drawer{ position:fixed; inset:0; z-index:80; display:none; }
.drawer.is-open{ display:block; }

.drawer__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}

.drawer__panel{
  position:absolute;
  right:0; top:0;
  height:100%;
  width:min(360px, 90vw);
  background: rgba(10,14,26,.92);
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  backdrop-filter: blur(18px);
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.drawer__brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.drawer__brand img{ width:38px; height:38px; object-fit:contain; }

.drawer__close{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  font-size:18px;
}

.drawer__links{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:6px;
}
.drawer__link{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(234,241,255,.90);
}
.drawer__link:hover{ background: rgba(255,255,255,.06); }
.drawer__cta{ margin-top:auto; }
.btn--block{ width:100%; justify-content: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,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  user-select:none;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.btn--primary{
  border: 1px solid rgba(34,211,255,.35);
  background: linear-gradient(135deg, rgba(34,211,255,.18), rgba(255,58,242,.16));
  box-shadow: 0 18px 50px rgba(34,211,255,.12);
}
.btn--primary:hover{
  box-shadow: 0 18px 58px rgba(255,58,242,.10), 0 18px 58px rgba(34,211,255,.12);
}

.btn--ghost{
  background: rgba(255,255,255,.02);
}

.btn--lg{
  padding:14px 18px;
  border-radius:16px;
  font-size:15px;
}

/* Hero */
.hero{
  position:relative;
  padding: 64px 0 26px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 620px at 20% 10%, rgba(34,211,255,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(255,58,242,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 45%),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  opacity:.28;
  filter: saturate(1.2) contrast(1.05);
  z-index:-1;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(234,241,255,.85);
  font-size:13px;
}
.badge .dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 18px rgba(34,211,255,.30);
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -.8px;
}
.grad{
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin: 10px 0 18px;
  color: rgba(234,241,255,.78);
  font-size: 16px;
  line-height: 1.55;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 16px 0 18px;
}

/* Stats */
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 16px;
}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 12px 12px;
}
.stat__num{
  font-weight:900;
  font-size: 20px;
  letter-spacing:.2px;
}
.stat__label{
  color: rgba(234,241,255,.70);
  font-size: 12px;
  margin-top: 4px;
}

/* Cards */
.glass{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card-hero{ padding:16px; }
.card-hero__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:8px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pulse{
  width:10px;height:10px;border-radius:999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199,255,74,.25);
}

.checklist{
  list-style:none;
  padding:14px 6px 6px;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.check{
  display:inline-flex;
  width:22px;height:22px;
  align-items:center;justify-content:center;
  border-radius:8px;
  background: rgba(34,211,255,.14);
  border:1px solid rgba(34,211,255,.18);
  color: rgba(234,241,255,.95);
  margin-right:8px;
}
.card-hero__bottom{ margin-top:12px; }

/* Strip */
.strip{
  padding: 12px 0 28px;
}
.strip__inner{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,241,255,.80);
  font-size:13px;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  text-align:center;
  margin-bottom: 26px;
}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing:-.2px;
}
.section__head p{ margin:0; }

.section__subhead{
  text-align:center;
  margin: 26px 0 14px;
}

/* Grids */
.grid{
  display:grid;
  gap:14px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
}
.card--glow{
  background:
    radial-gradient(500px 260px at 20% 20%, rgba(34,211,255,.10), transparent 60%),
    radial-gradient(500px 260px at 80% 10%, rgba(255,58,242,.10), transparent 60%),
    rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.12);
}

.icon{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
  font-size:20px;
}

.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: rgba(234,241,255,.75); line-height:1.55; }

.bullets{
  margin:10px 0 0;
  padding-left: 18px;
  color: rgba(234,241,255,.78);
}
.note{
  margin-top:10px;
  font-size:12px;
  color: rgba(234,241,255,.62);
}

/* CTA row */
.cta-row{
  margin-top: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta-row__left h3{ margin:0 0 6px; }
.cta-row__left p{ margin:0; }

/* Table */
.table-wrap{
  overflow:auto;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.table{
  width:100%;
  border-collapse: collapse;
  min-width: 760px;
}
.table thead th{
  text-align:left;
  font-size: 13px;
  padding: 14px 14px;
  color: rgba(234,241,255,.86);
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}
.table tbody td{
  padding: 14px 14px;
  border-bottom:1px solid rgba(255,255,255,.07);
  color: rgba(234,241,255,.78);
}
.table tbody tr:hover td{
  background: rgba(255,255,255,.03);
  color: rgba(234,241,255,.92);
}
.row--featured td{
  background:
    linear-gradient(90deg, rgba(34,211,255,.10), rgba(255,58,242,.10));
  border-bottom:1px solid rgba(255,255,255,.12);
  color: rgba(234,241,255,.92);
}

/* Plans */
.plan{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 24px;
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.plan:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 240px at 20% 10%, rgba(34,211,255,.12), transparent 60%),
              radial-gradient(520px 240px at 80% 0%, rgba(255,58,242,.12), transparent 60%);
  pointer-events:none;
}
.plan > *{ position:relative; }

.plan__tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  color: rgba(234,241,255,.80);
  font-size:12px;
}
.plan h4{
  margin:12px 0 8px;
  font-size:18px;
}
.plan__price{
  font-size: 34px;
  font-weight: 900;
  letter-spacing:-.4px;
}
.plan__price span{
  font-size: 14px;
  color: rgba(234,241,255,.70);
  margin-left: 6px;
}
.plan__list{
  list-style:none;
  padding:0;
  margin: 12px 0 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color: rgba(234,241,255,.78);
}
.plan--hot{
  border-color: rgba(34,211,255,.20);
  box-shadow: 0 18px 60px rgba(34,211,255,.08);
}

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq__item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
  color: rgba(234,241,255,.90);
}
.faq__content{
  margin-top:10px;
  color: rgba(234,241,255,.76);
  line-height:1.55;
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.brand--small img{ width:34px;height:34px; }
.tiny{ font-size:12px; }
.muted{ color: var(--muted); }

/* FAB */
.fab{
  position:fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,255,.28);
  background: linear-gradient(135deg, rgba(34,211,255,.16), rgba(255,58,242,.14));
  box-shadow: 0 18px 50px rgba(34,211,255,.10);
  z-index: 90;
}
.fab span{ font-size:18px; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hamburger{ display:inline-flex; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .footer__inner{ flex-direction:column; }
  .hero{ padding-top: 44px; }
  .hero__stats{ grid-template-columns: 1fr; }
}
