:root{
  --bg:#0b1220;
  --panel:#0f1a30;
  --panel2:#0d1629;
  --text:#e8eefc;
  --muted:#b7c3e3;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --accent:#ffb020;
  --accent2:#2f79ff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 600px at 20% 0%, rgba(47,121,255,.18), transparent 60%),
             radial-gradient(900px 500px at 80% 10%, rgba(255,176,32,.16), transparent 55%),
             var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}

.container{width:min(1100px, calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:12px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip:focus{left:12px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.72);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__logo{width:46px; height:46px; border-radius:12px; box-shadow:var(--shadow)}
.brand__text{display:flex; flex-direction:column; gap:2px}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:16px}
.nav a{font-weight:500; color:var(--muted)}
.nav a:hover{color:var(--text); text-decoration:none}
.nav__cta{padding:9px 12px; border-radius:12px; background:rgba(255,176,32,.12); border:1px solid rgba(255,176,32,.35); color:var(--text)}

.nav__toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:10px;
}
.nav__bar{display:block; width:20px; height:2px; background:var(--text); margin:4px 0; opacity:.9}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}

.hero{position:relative; padding:52px 0 28px}
.hero__grid{display:grid; grid-template-columns: 1.3fr .9fr; gap:24px; align-items:stretch}
.eyebrow{display:inline-flex; align-items:center; gap:8px; color:var(--muted); font-weight:600; font-size:13px; margin:0 0 10px}
.eyebrow::before{content:""; width:10px; height:10px; border-radius:999px; background:var(--accent); box-shadow:0 0 0 6px rgba(255,176,32,.15)}

h1{font-size:44px; line-height:1.08; margin:0 0 12px; letter-spacing:-.6px}
.lead{margin:0 0 18px; color:var(--muted); font-size:17px}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:14px; padding:11px 14px; border:1px solid var(--border); font-weight:600}
.btn--primary{background:linear-gradient(135deg, rgba(255,176,32,.95), rgba(255,140,20,.95)); color:#111; border-color:rgba(255,176,32,.35)}
.btn--primary:hover{text-decoration:none; filter:brightness(1.02)}
.btn--ghost{background:rgba(255,255,255,.04); color:var(--text)}
.btn--ghost:hover{text-decoration:none; background:rgba(255,255,255,.07)}

.hero__stats{display:flex; gap:14px; margin-top:18px; flex-wrap:wrap}
.stat{padding:10px 12px; border-radius:14px; border:1px solid var(--border); background:rgba(255,255,255,.03)}
.stat__num{display:block; font-weight:800}
.stat__label{display:block; font-size:12px; color:var(--muted)}

.hero__card{border:1px solid var(--border); background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border-radius:22px; box-shadow:var(--shadow); overflow:hidden}
.hero__logo{width:100%; height:auto; display:block; background:#070b12}
.hero__cardBody{padding:16px 16px 18px}

.h3{font-size:18px; margin:0 0 8px}

.checklist{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.checklist li{margin:6px 0}

.hero__bg{
  position:absolute; inset:0;
  background: radial-gradient(700px 360px at 30% 15%, rgba(47,121,255,.18), transparent 60%),
             radial-gradient(600px 300px at 70% 25%, rgba(255,176,32,.14), transparent 60%);
  pointer-events:none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,0));
}

.section{padding:46px 0}
.section--alt{background:rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section__header{max-width:820px; margin-bottom:18px}
.section__header h2{font-size:30px; margin:0 0 10px; letter-spacing:-.3px}
.section__header p{margin:0; color:var(--muted)}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}

.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted)}
.card p:last-child{margin-bottom:0}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}

.bullets{margin:0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.mini{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.mini li{margin:6px 0}

.pillRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.pill{font-size:12px; color:var(--text); background:rgba(47,121,255,.14); border:1px solid rgba(47,121,255,.25); padding:6px 10px; border-radius:999px}

.badge{display:inline-flex; align-items:center; justify-content:center; font-weight:700; font-size:12px; color:#111;
  background:rgba(255,176,32,.95); padding:6px 10px; border-radius:999px; margin:0 0 10px}
.money{font-weight:900; color:var(--text); font-size:22px; margin:6px 0 6px}

.callout{
  margin-top:14px;
  border:1px solid rgba(255,176,32,.35);
  background:linear-gradient(135deg, rgba(255,176,32,.14), rgba(47,121,255,.10));
  border-radius:20px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.muted{color:var(--muted)}
.tiny{font-size:12px}

.contactList{list-style:none; padding:0; margin:0}
.contactList li{margin:8px 0; color:var(--muted)}
.contactList a{color:var(--text); text-decoration:underline}

.form label{display:block; margin:10px 0; color:var(--muted); font-weight:600; font-size:13px}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(47,121,255,.55); box-shadow:0 0 0 4px rgba(47,121,255,.15)}

.footer{padding:22px 0; border-top:1px solid var(--border); background:rgba(0,0,0,.15)}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:14px}
.footer__brand{display:flex; align-items:center; gap:10px; margin-bottom:8px}
.footer__brand img{width:36px; height:36px; border-radius:10px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text); text-decoration:none}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr;}
  h1{font-size:38px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
}

@media (max-width: 860px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    position:absolute;
    right:20px;
    top:64px;
    width:min(320px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    gap:10px;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(11,18,32,.92);
    box-shadow:var(--shadow);
  }
  .nav a{width:100%; padding:10px 10px; border-radius:12px}
  .nav a:hover{background:rgba(255,255,255,.06)}
  .nav__cta{display:block; text-align:center}
  .nav.nav--open{display:flex}
}
