:root{
  --bg:#0b0f14;
  --panel:#0f1520;
  --panel2:#0d131d;
  --text:#e9eef6;
  --muted:#a9b6c7;
  --accent:#4de3b7;
  --border:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:24px;
  --max: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 20% 10%, rgba(77,227,183,.12), transparent),
              radial-gradient(700px 420px at 80% 20%, rgba(77,146,227,.12), transparent),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:22px}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:10px 0 0;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(77,227,183,.24), rgba(77,146,227,.16));
  border:1px solid var(--border);
  font-weight:800; letter-spacing:.5px;
}
.brand-name{font-weight:800}
.brand-tag{font-size:12px; color:var(--muted)}
.hero{
  display:grid; grid-template-columns: 1.4fr 1fr;
  gap:22px; align-items:stretch;
  padding:28px 0 10px;
}
@media (max-width: 920px){
  .hero{grid-template-columns:1fr}
}
h1{
  font-size: 46px;
  line-height:1.05;
  margin: 10px 0 12px;
}
@media (max-width: 520px){
  h1{font-size: 36px}
}
.accent{color:var(--accent)}
.lead{font-size:18px; color: rgba(233,238,246,.92)}
.muted{color:var(--muted)}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(77,227,183,.15);
  border: 1px solid rgba(77,227,183,.25);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  font-weight:700;
}
.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--muted);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius2);
  padding: 18px;
}
.card-title{font-weight:900; font-size:16px; margin-bottom:8px}
.bullets{margin:0; padding-left:18px; color: rgba(233,238,246,.92)}
.bullets li{margin:8px 0}
.divider{height:1px; background: var(--border); margin:14px 0}
.note{color:var(--muted); font-size:14px}
.section{padding: 28px 0}
.section-contrast{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
h2{margin:0 0 10px; font-size:24px}
.grid3{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 860px){
  .grid3{grid-template-columns:1fr}
}
.step{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.step-num{
  width:32px; height:32px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid rgba(77,227,183,.25);
  background: rgba(77,227,183,.10);
  font-weight:900;
}
.step-title{margin:10px 0 6px; font-weight:800}
.step-body{color:var(--muted); font-size:14px}
.form{
  margin-top: 14px;
  display:grid; gap:12px;
}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
@media (max-width: 720px){
  .row2{grid-template-columns:1fr}
}
label{display:grid; gap:6px; font-weight:600}
input, select, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(77,227,183,.40);
  box-shadow: 0 0 0 3px rgba(77,227,183,.12);
}
.fineprint{font-size:12px; color: var(--muted)}
.hidden{display:none}
.mini{
  margin-top:14px;
  padding: 14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(0,0,0,.16);
}
.mini-title{font-weight:800; margin-bottom:4px}
.mini-body{color:var(--muted); font-size:14px}
.footer{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  border-top:1px solid var(--border);
  color: var(--muted);
  padding-bottom: 30px;
}
.footer-links{display:flex; gap:14px}