
:root{
  --bg:#070b14;
  --bg2:#0a1222;
  --card:#0d1730;
  --card2:#0c1a38;
  --text:#eaf0ff;
  --muted:#aeb8d6;
  --line:rgba(255,255,255,.08);
  --accent:#6f8cff;
  --accent2:#7a5cff;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(900px 450px at 20% 0%, rgba(111,140,255,.18), transparent 60%),
              radial-gradient(900px 450px at 80% 10%, rgba(122,92,255,.14), transparent 60%),
              linear-gradient(180deg, var(--bg), #050815 70%);
  color:var(--text);
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.small{font-size:13px}
.muted{color:var(--muted)}
.center{text-align:center}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.55);
  border-bottom: 1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand .mark{
  width:28px; height:28px; border-radius:10px;
  background: linear-gradient(135deg, rgba(111,140,255,.35), rgba(122,92,255,.25));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  position:relative;
}
.brand .mark:before{
  content:"";
  position:absolute; inset:7px 9px 7px 9px;
  border-radius:999px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
  clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  opacity:.35;
}
.brand .name{font-weight:650; letter-spacing:.2px}
.brand.small .mark{width:22px;height:22px;border-radius:8px}

.nav{display:flex; align-items:center; gap:14px}
.nav a{color:var(--muted); text-decoration:none; font-size:14px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  background: linear-gradient(135deg, rgba(111,140,255,.95), rgba(122,92,255,.8));
  color: #06102a;
  text-decoration:none;
  font-weight:700;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(111,140,255,.15);
}
.btn:hover{filter:brightness(1.04)}
.btn.small{padding:9px 12px; font-size:13px}
.btn.ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn.ghost:hover{border-color: rgba(255,255,255,.25)}

.hero{padding:56px 0 30px}
.hero-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:26px;
  align-items:start;
}
h1{font-size:44px; line-height:1.06; margin:0 0 12px}
.sub{font-size:18px; color:var(--muted); line-height:1.6; margin:0 0 18px}
.micro{font-size:13px; color:var(--muted); margin:14px 0 0}
.badges{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.badge{
  font-size:12px; padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(13,23,48,.5);
  color: var(--muted);
}

.hero-card{
  border:1px solid var(--line);
  background: rgba(13,23,48,.55);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.preview-note{margin-top:10px; font-size:12px; color:var(--muted); text-align:center}

.phone{
  width:100%;
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding:14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.screen{
  height:100%;
  border-radius: 28px;
  background: radial-gradient(700px 300px at 30% 0%, rgba(111,140,255,.16), transparent 60%),
              linear-gradient(180deg, #06102a, #060b17);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.screen-top{
  display:flex; align-items:center; justify-content:space-between;
  color: rgba(234,240,255,.85);
  font-size:12px;
  margin-bottom:4px;
}
.pill{width:44px; height:14px; border-radius:999px; background: rgba(255,255,255,.10)}
.dot{width:8px; height:8px; border-radius:99px; background: rgba(255,255,255,.18)}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(13,23,48,.55);
  border-radius: 18px;
  padding:12px;
}
.card-title{font-weight:700; margin-bottom:4px}
.card-sub{color:var(--muted); font-size:12px; margin-bottom:10px}

.big-toggle{
  display:flex; align-items:center; gap:10px;
  padding:10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(7,11,20,.35);
}
.toggle-on{
  width:44px; height:28px; border-radius:999px;
  background: rgba(111,140,255,.35);
  border:1px solid rgba(255,255,255,.18);
  position:relative;
}
.toggle-on:after{
  content:"";
  position:absolute; top:3px; right:3px;
  width:22px; height:22px; border-radius:99px;
  background: rgba(234,240,255,.9);
}
.label{font-weight:700}
.hint{font-size:12px; color:var(--muted); margin-top:2px}

.list{display:flex; flex-direction:column; gap:8px}
.row{display:flex; align-items:center; justify-content:space-between; gap:10px}
.time{width:56px; color:rgba(234,240,255,.9); font-size:12px}
.desc{flex:1; color:var(--muted); font-size:12px}
.tag{
  font-size:11px; padding:4px 8px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.9);
  background: rgba(111,140,255,.15);
}
.quote{font-size:13px; color:rgba(234,240,255,.92); margin:6px 0 6px}
.screen-footer{
  margin-top:auto;
  display:flex; justify-content:space-between;
  padding-top:8px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:11px;
}
.tab.active{color: rgba(234,240,255,.92)}

.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{font-size:30px; margin:0 0 10px}
.lead{color:var(--muted); font-size:16px; margin:0 0 20px; line-height:1.6}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--line);
  background: rgba(13,23,48,.45);
  border-radius: var(--radius);
  padding:16px;
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.6}

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.callout{
  border:1px solid rgba(111,140,255,.20);
  background: radial-gradient(600px 300px at 10% 0%, rgba(111,140,255,.16), transparent 60%),
              rgba(13,23,48,.5);
  border-radius: var(--radius);
  padding:16px;
}
.callout h3{margin:0 0 8px}
.callout p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.callout ul{margin:0; padding-left:18px; color:var(--muted)}
.steps{color:var(--muted); line-height:1.8}

.bullets{color:var(--muted); line-height:1.8; padding-left:18px}
.link-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:12px}
.link{color: rgba(234,240,255,.92); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.18)}
.link:hover{border-bottom-color: rgba(255,255,255,.35)}

.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.plan{
  border:1px solid var(--line);
  background: rgba(13,23,48,.45);
  border-radius: var(--radius);
  padding:18px;
}
.plan.featured{
  border-color: rgba(111,140,255,.35);
  background: radial-gradient(600px 300px at 10% 0%, rgba(122,92,255,.16), transparent 60%),
              rgba(13,23,48,.5);
}
.pill-label{
  display:inline-block;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(111,140,255,.18);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.92);
  margin-bottom:10px;
}
.price{font-size:30px; font-weight:800; margin:6px 0 10px}
.plan ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}

.store-links{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.store-card{
  border:1px solid var(--line);
  background: rgba(13,23,48,.45);
  border-radius: var(--radius);
  padding:16px;
}
.store-title{font-weight:750}
.store-sub{color:var(--muted); margin-top:6px}
.code{
  display:block;
  margin-top:10px;
  padding:10px;
  border-radius: 12px;
  background: rgba(7,11,20,.35);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.86);
  font-size:12px;
  overflow:auto;
}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  background: rgba(7,11,20,.55);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:14px}
.footer-right{display:flex; gap:14px; flex-wrap:wrap}
.footer-right a{color:var(--muted); text-decoration:none; font-size:14px}
.footer-right a:hover{color:var(--text)}

.doc{padding:34px 0 56px}
.doc h1{font-size:34px; margin-top:10px}
.doc h2{font-size:20px; margin-top:22px}
.doc p, .doc li{color:var(--muted); line-height:1.8}
.doc-grid{grid-template-columns: repeat(3, 1fr);}

@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; }
  h1{font-size:38px}
  .grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .store-links{grid-template-columns: 1fr}
  .nav{display:none}
  
}.price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
  margin:6px 0 10px;
}
.price-row .price{
  margin:0;
  font-size:28px;
  font-weight:800;
}
.price-row .per{
  font-size:14px;
  font-weight:650;
  color: var(--muted);
  margin-left:4px;
}

