:root{
  --bg:#0b0d12;
  --panel:#101422;
  --panel2:#0f1420;
  --text:#e9ecf1;
  --muted:#a7b0c0;
  --line:rgba(255,255,255,.10);
  --accent:#7c5cff;
  --accent2:#24d18f;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
  --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(1200px 500px at 20% 10%, rgba(124,92,255,.22), transparent 60%),
              radial-gradient(900px 450px at 90% 0%, rgba(36,209,143,.12), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.nav{
  position:sticky; top:0; z-index:20;
  background: rgba(11,13,18,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:40px; height:40px; border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(36,209,143,.85));
  display:grid; place-items:center; font-weight:800;
  box-shadow: var(--shadow);
}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted)}

.links{display:flex; gap:14px; align-items:center}
.links a{font-size:14px; color:var(--muted)}
.links a:hover{color:var(--text)}

.hero{padding:56px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.25fr .85fr; gap:18px; align-items:start}
h1{font-size:44px; line-height:1.05; margin:0 0 12px}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}

.trust{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}

.disclaimer{
  margin-top:16px;
  font-size:13px;
  color:var(--muted);
  border-left:3px solid rgba(124,92,255,.65);
  padding:10px 12px;
  background: rgba(255,255,255,.03);
  border-radius:12px;
}

.section{padding:44px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{margin:0 0 14px; font-size:28px}
h3{margin:0 0 10px; font-size:18px}
.small{font-size:12px}
.muted{color:var(--muted)}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}

.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:16px;
  border-radius: var(--radius);
}
.step-num{
  width:28px; height:28px; border-radius:9px;
  display:grid; place-items:center;
  background: rgba(124,92,255,.20);
  border:1px solid rgba(124,92,255,.35);
  margin-bottom:10px;
  font-weight:800;
}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card-title{font-weight:800; margin-bottom:10px}
.card-footer{margin-top:14px}

.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}

.bullets{margin:0; padding-left:18px; color:var(--muted)}
.bullets li{margin:8px 0}

.note{
  margin-top:16px;
  border:1px solid var(--line);
  background: rgba(36,209,143,.08);
  padding:12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{background: rgba(255,255,255,.06)}
.btn:active{transform: translateY(1px)}
.btn-full{width:100%}

.btn-primary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.55), rgba(124,92,255,.22));
}
.btn-primary:hover{border-color: rgba(124,92,255,.9)}
.btn-ghost{color:var(--muted)}
.btn-ghost:hover{color:var(--text)}

.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 0}

.price{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:16px;
  border-radius: var(--radius);
}
.price-head{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:10px}
.amount{font-weight:900; font-size:20px}
.featured{
  border-color: rgba(36,209,143,.45);
  background: linear-gradient(180deg, rgba(36,209,143,.10), rgba(255,255,255,.02));
}

.form{
  margin-top:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
label{display:flex; flex-direction:column; gap:8px; margin-bottom:12px; color:var(--muted); font-size:13px}
input, select, textarea{
  width:100%;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(11,13,18,.55);
  color: var(--text);
  padding:10px 12px;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(124,92,255,.7)}
.checkbox{flex-direction:row; align-items:center; gap:10px}
.checkbox input{width:16px; height:16px}

.actions{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 0}
.output{margin-top:14px}
.output-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding:12px 12px;
  border-radius: 14px;
  margin-bottom:10px;
}
.subject{font-weight:800}

.footer-links{display:flex; gap:10px; align-items:center; margin-top:16px; color:var(--muted)}
.footer-links a:hover{color:var(--text)}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background: rgba(0,0,0,.18);
}
.footer-inner{display:flex; justify-content:space-between; align-items:center}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr; }
  h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .links{display:none}
}
