:root{
  --bg:#0b1220;
  --panel:#0f1a33;
  --card:#101f3d;
  --text:#e8eeff;
  --muted:#b7c2e6;
  --brand:#7aa7ff;
  --brand2:#8ef0ff;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 5%, rgba(122,167,255,.20), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(142,240,255,.14), transparent 55%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 30%, #070b14 100%);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}

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

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px; background:#000; border:1px solid var(--border);
  border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.65);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(122,167,255,.95), rgba(142,240,255,.95));
  box-shadow: 0 10px 30px rgba(122,167,255,.20);
}
.brand span{display:inline-block}
.brand small{
  display:block; font-weight:600; color:var(--muted);
  letter-spacing:.2px; margin-top:2px;
}

.menu{
  display:flex; align-items:center; gap:18px;
}
.menu a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.menu a.active, .menu a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}

.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09);}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, rgba(122,167,255,.95), rgba(142,240,255,.85));
  color:#061022;
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(122,167,255,1), rgba(142,240,255,1));}
.btn.ghost{
  background: transparent;
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
}

.hero{
  padding:72px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
}
.kicker b{color:var(--text)}
h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.7px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
}
.hero-card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  height:100%;
}
.hero-card h3{margin:2px 0 8px; font-size:1.05rem}
.stat{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.stat .tile{
  border:1px solid var(--border);
  background: rgba(16,31,61,.50);
  border-radius:16px;
  padding:12px;
}
.tile .num{
  font-weight:900;
  font-size:1.2rem;
}
.tile .lbl{color:var(--muted); font-weight:600; font-size:.92rem}

.section{
  padding:44px 0;
}
.section h2{
  margin:0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:-.3px;
}
.section p.sub{
  margin:0 0 22px;
  color:var(--muted);
  max-width: 75ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 4;
  border:1px solid var(--border);
  background: rgba(16,31,61,.45);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:2px 0 8px}
.card p{margin:0; color:var(--muted)}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:700;
  font-size:.88rem;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.panel{
  border:1px solid var(--border);
  background: rgba(16,31,61,.35);
  border-radius: var(--radius);
  padding:20px;
}
.panel ul{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.panel li{margin:8px 0}
.panel strong{color:var(--text)}

.steps{
  counter-reset: step;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.step{
  grid-column: span 3;
  border:1px solid var(--border);
  background: rgba(16,31,61,.35);
  border-radius: var(--radius);
  padding:18px;
}
.step::before{
  counter-increment: step;
  content: counter(step);
  display:inline-grid;
  place-items:center;
  width:34px; height:34px;
  border-radius:12px;
  font-weight:900;
  color:#061022;
  background: linear-gradient(135deg, rgba(122,167,255,.95), rgba(142,240,255,.85));
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

.callout{
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(122,167,255,.12), rgba(142,240,255,.08));
  border-radius: calc(var(--radius) + 6px);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.callout p{margin:0; color:var(--muted); max-width: 70ch}
.callout h3{margin:0 0 6px}

.footer{
  padding:26px 0 46px;
  border-top:1px solid var(--border);
  background: rgba(7,11,20,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.footer h4{margin:0 0 10px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.small{color:var(--muted); font-size:.92rem}
.hr{
  height:1px; background: var(--border);
  margin:18px 0;
}

.form{
  display:grid; gap:12px;
}
.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.textarea{min-height: 120px; resize: vertical;}
.input:focus, .textarea:focus{border-color: rgba(122,167,255,.65)}
.help{color:var(--muted); font-size:.92rem}

/* Pricing bits */
.price-grid .card{grid-column: span 4;}
.price{
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.5px;
  margin: 8px 0 10px;
}
.price small{
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{margin: 8px 0;}
.highlight{
  outline: 2px solid rgba(122,167,255,.55);
  box-shadow: 0 18px 50px rgba(122,167,255,.12);
}

@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr}
  .card{grid-column: span 6}
  .step{grid-column: span 6}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .menu{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center;}
  .menu.mobile{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:10px 0 16px;
  }
  .menu.mobile a{width:100%}
}
@media (max-width: 560px){
  .card{grid-column: span 12}
  .step{grid-column: span 12}
  .price-grid .card{grid-column: span 12;}
}
