:root{
  --bg:#0f172a;
  --bg-alt:#0b1224;
  --ink:#0f172a;
  --muted:#6b7280;
  --brand:#2563eb;
  --brand-2:#1d4ed8;
  --line:#e5e7eb;
  --alt:#eef2ff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#f8fafc;
  line-height:1.6;
}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}
.wrap.narrow{max-width:760px}

.topbar{
  position:sticky;top:0;z-index:10;
  background:#fff;border-bottom:1px solid var(--line);
}
.topbar .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;gap:10px;align-items:center;font-weight:600}
.logo-dot{width:10px;height:10px;border-radius:50%;background:var(--brand)}
.top-cta{color:var(--brand);text-decoration:none;font-weight:600}

.hero{
  background:linear-gradient(180deg,var(--bg),var(--bg-alt));
  color:#fff;
  padding:64px 0;
}
.grid{display:grid;gap:32px}
@media(min-width:900px){.grid{grid-template-columns:1.15fr .85fr}}

.eyebrow{letter-spacing:.12em;font-size:12px;color:#93c5fd}
.hero h1{font-size:clamp(28px,4vw,44px);line-height:1.1;margin:10px 0 14px}
.lead{color:#e5e7eb;max-width:620px}

.hero-actions{display:flex;gap:12px;margin:22px 0;flex-wrap:wrap}
.cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:12px;text-decoration:none;font-weight:600;
  border:1px solid transparent;
}
.cta.primary{background:var(--brand);color:#fff}
.cta.primary:hover{background:var(--brand-2)}
.cta.ghost{border-color:#93c5fd;color:#93c5fd}
.cta.full{width:100%}

.trust{display:flex;gap:16px;flex-wrap:wrap;margin:16px 0 0;padding:0;list-style:none;color:#dbeafe}

.hero-card{
  background:#0b1224;border:1px solid #1f2a44;border-radius:18px;
  padding:22px
}
.hero-card h3{margin:0 0 10px}
.hero-card ul{padding-left:18px;margin:0 0 14px}
.pill-row{display:flex;gap:8px;flex-wrap:wrap}
.pill{display:inline-flex;padding:6px 10px;border-radius:999px;background:#121c35;border:1px solid #223055;color:#dbeafe;font-size:12px}

.section{padding:72px 0}
.section.alt{background:var(--alt)}

.cards{display:grid;gap:20px}
.cards.two{grid-template-columns:1fr}
@media(min-width:900px){
  .cards{grid-template-columns:repeat(3,1fr)}
  .cards.two{grid-template-columns:repeat(2,1fr)}
}
.card{
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px
}
.card h4{margin:0 0 8px}
.checklist{padding-left:18px}
.checklist li{margin:8px 0}
.note{
  margin-top:14px;padding:14px 16px;border-radius:14px;background:#fff;border:1px dashed #c7d2fe
}
.muted{color:var(--muted)}

.form-copy .mini{padding-left:0;list-style:none;color:var(--muted)}
.form-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:24px
}
label{display:flex;flex-direction:column;font-weight:600;font-size:14px;margin-bottom:10px}
input,select,textarea{
  padding:12px;border-radius:12px;border:1px solid var(--line);font-size:15px
}
textarea{min-height:110px}
button{cursor:pointer}
.fineprint{margin:10px 0 0;color:var(--muted);font-size:12px}

.footer{background:#0b1224;color:#c7d2fe;padding:28px 0;text-align:center}
.hp{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}
