:root{
  --bg:#05060a;
  --bg2:#070916;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --text:#e9ecff;
  --muted: rgba(233,236,255,.68);
  --muted2: rgba(233,236,255,.54);
  --accent:#8b5cf6; /* neon purple */
  --accent2:#22d3ee; /* neon cyan */
  --good:#34d399;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 15% 0%, rgba(139,92,246,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34,211,238,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
b{font-weight:700}
.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}
.section{padding:84px 0}
.section-head{display:flex; gap:14px; align-items:flex-end; justify-content:space-between; margin-bottom:22px}
.h1{font-size: clamp(34px, 4.2vw, 56px); line-height:1.02; margin:16px 0 14px}
.h2{font-size: clamp(24px, 2.6vw, 34px); margin:0}
.h3{font-size:18px; margin:0 0 8px}
.lead{font-size:16px; color:var(--muted); line-height:1.65; max-width:52ch; margin:0 0 18px}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size:12px; color:var(--muted2)}

.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* background */
.bg-orb{
  position:fixed; inset:auto auto 0 0;
  width:520px; height:520px; border-radius:50%;
  filter: blur(70px);
  opacity:.55; pointer-events:none; z-index:-3;
}
.orb-1{left:-140px; top:-140px; background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.80), transparent 60%)}
.orb-2{right:-160px; top:-120px; background: radial-gradient(circle at 60% 30%, rgba(34,211,238,.75), transparent 60%)}

.bg-grid{
  position:fixed; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 45% at 50% 10%, rgba(0,0,0,.95), transparent);
  pointer-events:none;
  z-index:-4;
}
.noise{
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity:.10;
  mix-blend-mode: overlay;
  pointer-events:none;
  z-index:-2;
}

/* nav */
.nav-wrap{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(5,6,10,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.3px}
.brand-dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 24px rgba(139,92,246,.7);
}
.brand.small{transform: scale(.95); transform-origin:left}
.brand-text .muted{font-weight:700}

.nav-links{
  display:flex; gap:16px; align-items:center;
}
.nav-links a{font-size:13px; color:rgba(233,236,255,.78)}
.nav-links a:hover{color:rgba(233,236,255,.98)}
.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius:12px;
  cursor:pointer;
  align-items:center; justify-content:center;
  gap:6px; flex-direction:column;
}
.nav-toggle span{
  width:18px; height:2px; background: rgba(233,236,255,.82);
  border-radius:2px;
}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  font-size:13px; font-weight:700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(90deg, rgba(139,92,246,.95), rgba(34,211,238,.85));
  border-color: rgba(255,255,255,.18);
  color:#0b0d14;
  box-shadow: 0 18px 55px rgba(139,92,246,.22);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
}
.full{width:100%}

/* glass cards */
.glass{
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  border-radius: var(--radius2);
}
.card{
  padding:18px;
  border-radius: var(--radius2);
}
.grid{display:grid; gap:16px}
.cards-3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.pricing{grid-template-columns: repeat(3, minmax(0, 1fr))}
.steps{grid-template-columns: repeat(4, minmax(0, 1fr))}

.list{margin:12px 0 0; padding:0 0 0 18px; color:var(--muted); line-height:1.7}
.list li{margin:4px 0}

/* hero */
.hero{padding-top:54px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.pill{
  position:relative;
  display:inline-flex;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  font-weight:700;
  font-size:12px;
  color: rgba(233,236,255,.86);
}
.pill-glow{
  position:absolute; inset:-40px -60px;
  background: radial-gradient(circle at 20% 30%, rgba(139,92,246,.35), transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(34,211,238,.30), transparent 55%);
  filter: blur(16px);
  opacity:.9;
}
.pill span{position:relative}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0}
.mini-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:10px}
.mini{
  display:flex; align-items:center; gap:8px;
  color:rgba(233,236,255,.78);
  font-size:13px;
}
.mini-ico{
  width:18px; height:18px; border-radius:6px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(52,211,153,.16);
  border:1px solid rgba(52,211,153,.25);
}

/* hero right mock */
.hero-card{padding:16px}
.card-top{
  display:flex; align-items:center; gap:10px;
  padding:6px 4px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.status-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 16px rgba(52,211,153,.55);
}
.chip{
  margin-left:auto;
  font-size:11px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.hero-mock{padding:14px 4px 4px}
.mock-line{
  height:10px; width:60%;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  margin-bottom:12px;
}
.mock-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-bottom:12px;
}
.mock-box{
  height:58px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.mock-list{display:grid; gap:8px}
.mock-item{
  display:flex; justify-content:space-between; gap:12px;
}
.mock-item span{
  display:block; height:10px; border-radius:999px;
  background: rgba(255,255,255,.08);
}
.mock-item span:first-child{width:55%}
.mock-item span:last-child{width:30%}

.hero-card-footer{
  display:flex; gap:8px; flex-wrap:wrap; margin-top:14px
}
.tag{
  font-size:11px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,236,255,.82);
}

/* stats */
.stats{
  margin-top:14px;
  display:grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
  padding:14px;
}
.stat-num{
  font-weight:900;
  font-size:20px;
}
.stat-num::after{content:"+"; opacity:.8}
.stat-label{font-size:12px; color:var(--muted)}
.right-note{margin:10px 0 0}

/* pricing highlight */
.price{position:relative}
.price-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.badge{
  font-size:11px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(233,236,255,.82);
}
.badge-hot{
  background: linear-gradient(90deg, rgba(139,92,246,.30), rgba(34,211,238,.22));
  border-color: rgba(255,255,255,.16);
}
.featured{
  border-color: rgba(139,92,246,.25);
  background: rgba(139,92,246,.08);
  transform: translateY(-2px);
}

/* showcase */
.showcase .shot{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  margin-bottom:14px;
}
.shot-top{
  height:34px;
  display:flex; align-items:center; gap:8px;
  padding:0 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dot{width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.10)}
.shot-body{padding:14px}
.shot-line{height:10px; border-radius:999px; background: rgba(255,255,255,.10); width:70%; margin-bottom:10px}
.shot-line.short{width:45%}
.shot-grid{
  display:grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px; margin:10px 0;
}
.shot-grid div{
  height:54px; border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.shot-list{display:grid; gap:10px}
.shot-list div{
  height:12px; border-radius:999px;
  background: rgba(255,255,255,.08);
}

/* steps */
.step-no{
  width:34px; height:34px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
}

/* faq */
.faq{display:grid; gap:12px}
details{
  padding:14px 16px;
  border-radius: var(--radius2);
}
summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.65}

/* contact */
.contact{
  padding:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  border-radius: 28px;
}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.contact-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:16px;
}
.contact-row{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contact-row:last-child{border-bottom:none}
.k{color:var(--muted); font-size:12px; font-weight:700}
.v{font-size:13px; font-weight:800}
.divider{height:1px; background: rgba(255,255,255,.08); margin:12px 0}

/* footer */
.footer{
  padding:28px 0 40px;
  border-top:1px solid rgba(255,255,255,.06);
}
.foot-grid{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.foot-right{display:flex; gap:14px; color:rgba(233,236,255,.72); font-size:13px}
.foot-right a:hover{color:rgba(233,236,255,.96)}

/* reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .cards-3, .pricing{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr 1fr}
  .section-head{flex-direction:column; align-items:flex-start}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;
    left:24px; right:24px; top:64px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    border-radius: 18px;
    background: rgba(10,12,20,.92);
    border:1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:10px 10px; border-radius:12px; background: rgba(255,255,255,.04)}
  .nav-links a.btn{background: rgba(255,255,255,.06)}
  .foot-grid{flex-direction:column; align-items:flex-start}
}