:root{
  --bg:#0b0f19;
  --card:#101827;
  --text:#e6e9ef;
  --muted:#a9b2c3;
  --accent:#ff7a18;
  --accent2:#2dd4bf;
  --stroke:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(255,122,24,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 15%, rgba(45,212,191,.12), transparent 55%),
    linear-gradient(180deg,#070a12, var(--bg));
  color:var(--text);
}

.bgGlow{position:fixed;inset:0;pointer-events:none;opacity:.9}

.container{max-width:1040px;margin:0 auto;padding:20px 18px 60px}

/* Top bar (optional if you’re not using it yet) */
.topbar{
  position:sticky;top:0;z-index:5;
  background:rgba(7,10,18,.65);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.topbar__right{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}

.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand__logo{width:88px;height:88px;object-fit:contain}
.brand__text{display:grid;line-height:1.0;font-weight:900;letter-spacing:.03em}
.brand__text span{font-size:16px}

.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  margin-top:10px;
}

h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.03;
}

.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  max-width:60ch;
}

.badge{
  display:inline-block;
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
  letter-spacing:.01em;
}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 16px;
}

.btn{
  display:inline-block;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.01em;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),#ffb14a);
  border:0;
  color:#1a120a;
}

.fineprint{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.trust{display:flex;flex-direction:column;gap:6px;margin:10px 0 0}
.trust__item{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(16,24,39,.55);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:14px;
}

.heroCard{
  padding:16px;
  border-radius:18px;
  background:rgba(16,24,39,.62);
  border:1px solid rgba(255,255,255,.08);
}

.heroCard h2{margin:0 0 10px;font-size:18px}
.heroCard h3{margin:0 0 10px;font-size:14px;color:var(--muted);letter-spacing:.02em;text-transform:uppercase}
.heroCard ul,.heroCard ol{margin:0;padding-left:18px;color:var(--muted)}
.heroCard li{margin:8px 0}

.divider{height:1px;background:rgba(255,255,255,.08);margin:14px 0}

/* Sections */
.section{
  margin-top:26px;
  padding:18px;
  border-radius:18px;
  background:rgba(16,24,39,.40);
  border:1px solid rgba(255,255,255,.07);
}
.section h2{margin:0 0 14px;font-size:22px}
.muted{color:var(--muted)}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;border-radius:16px;
  background:rgba(16,24,39,.55);
  border:1px solid rgba(255,255,255,.08);
}
.step__num{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,122,24,.15);
  border:1px solid rgba(255,122,24,.28);
  color:#ffd7b8;
  font-weight:900;
}
.step__title{font-weight:900;margin-bottom:4px}

.hero{margin-top:10px;gap:12px}
h1{margin:0 0 12px}
.subhead{margin:0 0 18px;max-width:60ch}
.cta{margin:10px 0 16px}
.fineprint{margin:0}
.hero{align-items:start}
@media (max-width:920px){
  header img{width:120px !important;height:120px !important;}
}
@media (max-width:920px){
  header img{width:120px !important;height:120px !important;}
}
@media (max-width:920px){
  .heroCard{padding:12px}
  .heroCard ul{padding-left:16px}
}

