:root{
  --bg:#070b14;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.06);
  --text:#eaf0ff;
  --muted:#b8c3e0;
  --brand:#5b7cfa;
  --brand2:#00c8aa;
  --line:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2: 24px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(91,124,250,.25), transparent 62%),
    radial-gradient(900px 520px at 80% 5%, rgba(0,200,170,.16), transparent 58%),
    radial-gradient(900px 520px at 65% 95%, rgba(91,124,250,.14), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,.55);
  border-bottom:1px solid var(--line);
}
.topbar .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:750;
  letter-spacing:.2px;
}
.logo-badge{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(91,124,250,1), rgba(0,200,170,1));
  box-shadow: 0 10px 25px rgba(91,124,250,.18);
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:999px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.04)}
.nav .cta{color:var(--text); background:rgba(91,124,250,.18); border:1px solid rgba(91,124,250,.28)}
.nav .cta:hover{background:rgba(91,124,250,.24)}

/* Mobile */
.menu-btn{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  font-weight:700;
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  padding:12px 0 16px;
}
.mobile-nav a{
  display:block;
  text-decoration:none;
  color:var(--muted);
  padding:12px 10px;
  border-radius:12px;
  font-weight:650;
}
.mobile-nav a:hover{color:var(--text); background:rgba(255,255,255,.04)}

/* Hero */
.hero{ padding:56px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  margin:0 0 10px;
}
.dot{
  width:7px; height:7px; border-radius:99px;
  background:var(--brand2);
  box-shadow:0 0 0 6px rgba(0,200,170,.12);
}
.hero h1{
  margin:0;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.5px;
}
.subhead{ color:var(--muted); margin:14px 0 18px; font-size:16px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:750;
  font-size:14px;
}
.btn:hover{transform: translateY(-1px); transition: transform .12s ease}
.btn.primary{background: var(--brand); border-color: transparent; box-shadow: 0 14px 45px rgba(91,124,250,.22)}
.btn.ghost{background: rgba(255,255,255,.02)}
.btn.small{padding:10px 12px; font-size:13px; font-weight:750}
.btn.link{border-color:transparent; background:transparent; padding:0; font-weight:700; color:rgba(234,240,255,.95)}
.btn.link:hover{transform:none; text-decoration:underline}

.trust-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.pill{
  font-size:12px;
  color:rgba(234,240,255,.92);
  border:1px solid rgba(255,255,255,.12);
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
}

.photo-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.photo{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.photo-note{ color:var(--muted); font-size:12px; margin-top:10px; }

/* Sections */
.section{ padding:34px 0; }
.section h2{ margin:0 0 14px; font-size:26px; letter-spacing:-.2px; }
.section p{ margin:0 0 12px; color:var(--muted); }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.card h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.2px; }
.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(234,240,255,.9);
  font-size:13px;
  margin-bottom:10px;
}
.price{ font-weight:900; }
.badge{
  font-size:12px;
  color:rgba(234,240,255,.9);
  border:1px solid rgba(255,255,255,.12);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
}
.summary{ color:var(--muted); margin:0 0 12px; }
.details{ margin-top:10px; border-top:1px dashed rgba(255,255,255,.14); padding-top:10px; }
details summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:rgba(234,240,255,.95);
  display:flex;
  align-items:center;
  gap:10px;
}
details summary::-webkit-details-marker{display:none}
.chev{
  width:10px; height:10px;
  border-right:2px solid rgba(234,240,255,.85);
  border-bottom:2px solid rgba(234,240,255,.85);
  transform: rotate(-45deg);
  transition: transform .15s ease;
  margin-left:auto;
}
details[open] .chev{transform: rotate(45deg)}
ul{ margin:10px 0 0 18px; color:var(--muted); }
li{ margin:6px 0; }
.outcome{
  margin-top:10px;
  color:rgba(234,240,255,.92);
  background: rgba(91,124,250,.12);
  border:1px solid rgba(91,124,250,.18);
  border-radius: 14px;
  padding:10px 12px;
}

/* Steps */
.steps{
  counter-reset: step;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.step::before{
  counter-increment: step;
  content: counter(step);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius: 12px;
  background: rgba(91,124,250,.20);
  border:1px solid rgba(91,124,250,.26);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{ margin:0 0 6px; font-size:16px; }
.step p{ margin:0; color:var(--muted); font-size:13px; }

/* Footer */
.footer{
  padding:26px 0 40px;
  border-top:1px solid var(--line);
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:rgba(234,240,255,.92)}
.smallprint{
  color:rgba(234,240,255,.82);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:12px 14px;
}

/* Responsive */
@media (max-width: 980px){
  .hero h1{font-size:38px}
  .hero-grid{grid-template-columns: 1fr; }
  .photo{height:150px}
  .grid-2{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr 1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .mobile-nav{display:none}
  .mobile-nav.open{display:block}
}
@media (max-width: 520px){
  .hero h1{font-size:32px}
  .steps{grid-template-columns: 1fr}
}
