:root{
  --bg:#0b0d12;
  --card:#101522;
  --text:#e8ebf2;
  --muted:#a8b0c2;
  --line:rgba(255,255,255,.10);
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: 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(--sans);
  background:radial-gradient(1200px 700px at 15% 0%, rgba(125,211,252,.20), rgba(11,13,18,0) 55%),
             radial-gradient(900px 600px at 85% 12%, rgba(167,139,250,.18), rgba(11,13,18,0) 55%),
             var(--bg);
  color:var(--text);
  line-height:1.45;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:28px 18px 80px}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:10px 0 18px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.logo{
  width:36px; height:36px; border-radius:12px;
  background:linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.95));
  box-shadow:0 10px 30px rgba(125,211,252,.18);
}

.logo-img{width:36px; height:36px; border-radius:12px; display:block; box-shadow:0 10px 30px rgba(245,158,11,.12)}
.brand strong{letter-spacing:.2px}
.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:12px;
}
.nav a:hover{border-color:var(--line); color:var(--text)}
.hero{padding:22px 0 10px; display:grid; gap:18px}
.hero-grid{display:grid; grid-template-columns: 1.25fr .75fr; gap:18px}
@media (max-width: 900px){.hero-grid{grid-template-columns:1fr}}
.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
  font-size:13px;
}
.badge .dot{width:8px; height:8px; border-radius:99px; background:#34d399}
h1{font-size:44px; letter-spacing:-.02em; line-height:1.06; margin:10px 0 8px}
@media (max-width: 600px){h1{font-size:36px}}
.lede{font-size:18px; color:var(--muted); max-width:64ch; margin:0 0 14px}
.ctas{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.1px;
}
.btn.primary{
  background:linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.95));
  color:#061017;
  border-color:transparent;
}
.btn.primary:hover{filter:brightness(1.04)}
.btn.ghost{background:rgba(255,255,255,.02); color:var(--text)}
.btn.ghost:hover{background:rgba(255,255,255,.04)}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}
.hero-side{padding:18px}
.hero-side h3{margin:0 0 10px; font-size:16px; letter-spacing:.2px}
.kv{display:grid; grid-template-columns: 1fr; gap:10px}
.kv .row{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(0,0,0,.10);
}
.kv .row b{display:block; font-size:13px}
.kv .row span{color:var(--muted); font-size:13px}
.section{padding:26px 0 0}
.section h2{font-size:22px; margin:0 0 10px; letter-spacing:-.01em}
.section p{color:var(--muted); margin:0 0 14px; max-width:76ch}
.grid3{display:grid; gap:12px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
.box{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(0,0,0,.10);
}
.box h3{margin:0 0 8px; font-size:15px}
.box p{margin:0; font-size:14px; color:var(--muted)}
.steps{display:grid; gap:10px}
.step{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.10);
}
.step .n{
  width:40px; height:40px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(125,211,252,.14);
  border:1px solid rgba(125,211,252,.22);
  font-weight:700;
}
.step h3{margin:0 0 4px; font-size:15px}
.step p{margin:0; color:var(--muted); font-size:14px}
.pricing{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 900px){.pricing{grid-template-columns:1fr}}
.plan{padding:18px}
.plan .tag{
  font-family:var(--mono);
  font-size:12px;
  color:rgba(255,255,255,.70);
  letter-spacing:.12em;
  text-transform:uppercase;
}
.plan h3{margin:8px 0 6px; font-size:18px}
.price{font-size:30px; margin:6px 0 14px; letter-spacing:-.02em}
.ul{margin:0; padding-left:18px; color:var(--muted)}
.ul li{margin:8px 0}
.hr{height:1px; background:var(--line); margin:16px 0}
.faq{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 900px){.faq{grid-template-columns:1fr}}
.q{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(0,0,0,.10);
}
.q b{display:block; margin-bottom:6px}
.q span{color:var(--muted); font-size:14px}
.formbox{padding:18px}
.mini{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:10px}
@media (max-width: 900px){.mini{grid-template-columns:1fr}}
.input{display:flex; flex-direction:column; gap:6px}
label{font-size:13px; color:rgba(255,255,255,.70)}
input, textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.35)}
textarea{min-height:100px; resize:vertical}
.smallnote{font-size:12px; color:rgba(255,255,255,.55)}
.footer{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:rgba(255,255,255,.55);
  font-size:12px;
}
.footer a{color:rgba(255,255,255,.70)}
.kicker{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.60);
  text-transform:uppercase;
}

@media (max-width: 600px){
  .nav{flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; gap:10px}
  .nav a{white-space:nowrap}
}


/* Responsive CTA labels */
.label-mobile{display:none}
.label-desktop{display:inline}

/* Subtext under hero CTA */
.cta-subtext{
  margin-top:10px;
  font-size:13px;
  color:rgba(255,255,255,.60);
}

/* Offer target helper line */
.offer-target{
  margin-top:8px;
  font-size:13px;
  color:rgba(255,255,255,.60);
}

/* Avoid default blue link states */
a:visited{color:inherit}

/* Mobile hero CTA layout */
@media (max-width: 520px){
  .label-mobile{display:inline}
  .label-desktop{display:none}

  .hero .ctas{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-start;
  }
  .hero .ctas .btn{
    flex:1 1 calc(50% - 10px);
    text-align:center;
  }
  .hero .ctas .btn.primary{
    flex:1 1 100%;
  }
}
