:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --text:#e9eef7;
  --muted:#a9b6cc;
  --line:rgba(255,255,255,.08);
  --accent:#7aa7ff;
  --accent2:#86efac;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(122,167,255,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(134,239,172,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--text); text-decoration-color: rgba(122,167,255,.55); text-underline-offset: 3px;}
a:hover{color:#ffffff}

.container{width:min(1120px, calc(100% - 48px)); margin:0 auto;}
.grid{display:grid; gap:22px;}
.two{grid-template-columns: 1fr 1fr;}

.hero__image-wrap{
  position:relative;
  width:100%;
  height:340px;
  overflow:hidden;
}
.hero__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
  display:block;
}
.hero__image-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,23,0.15) 0%,
    rgba(11,15,23,0.55) 60%,
    rgba(11,15,23,1) 100%
  );
}

.nav{position:sticky; top:0; z-index:10; backdrop-filter: blur(10px); background: rgba(11,15,23,.65); border-bottom:1px solid var(--line);}
.nav__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{font-weight:700; letter-spacing:.2px; text-decoration:none;}
.nav__links{display:flex; gap:18px; align-items:center;}
.nav__links a{color:var(--muted); text-decoration:none; font-weight:500;}
.nav__links a:hover{color:var(--text)}

.hero{padding:64px 0 30px;}
.hero__grid{grid-template-columns: 1.15fr .85fr; align-items:start;}
.eyebrow{color:var(--muted); font-weight:600; letter-spacing:.2px; margin:0 0 10px;}
h1{font-size:clamp(38px, 4.2vw, 56px); line-height:1.05; margin:0 0 14px;}
.lead{color:var(--muted); font-size:18px; margin:0 0 22px; max-width: 52ch;}

.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background: linear-gradient(180deg, rgba(122,167,255,.95), rgba(122,167,255,.75));
  color:#07101f; font-weight:700; border:1px solid rgba(255,255,255,.12);
  padding:12px 16px; border-radius: 14px; text-decoration:none; box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{background: transparent; color: var(--text); border:1px solid var(--line); box-shadow:none;}
.btn--ghost:hover{border-color: rgba(122,167,255,.35)}
.btn--small{padding:10px 12px; border-radius: 12px; box-shadow:none; background: rgba(122,167,255,.14); color:var(--text); border: 1px solid rgba(122,167,255,.18);}
.btn--small:hover{background: rgba(122,167,255,.20)}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap;}

.ticks{list-style:none; padding:0; margin:18px 0 0; display:flex; gap:14px; flex-wrap:wrap;}
.ticks li{color:var(--muted); font-weight:600; font-size:13px; padding:6px 10px; border:1px solid var(--line); border-radius:999px; background: rgba(255,255,255,.03)}

.section{padding:54px 0;}
h2{margin:0 0 10px; font-size:28px;}
.sub{margin:0 0 22px; color:var(--muted); max-width: 70ch;}

.card{background: rgba(15,22,36,.78); border:1px solid var(--line); border-radius: var(--radius); padding:18px; box-shadow: 0 18px 50px rgba(0,0,0,.35);}
.hero__card h3{margin:0 0 10px;}
.stack{display:grid; gap:12px;}
.mini__k{font-weight:700; margin-bottom:4px;}
.mini__v{color:var(--muted)}

.steps{grid-template-columns: repeat(3, 1fr);}
.step__n{font-weight:800; color: rgba(122,167,255,.9); letter-spacing:.5px;}
.muted{color:var(--muted)}

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

.callout{margin-top: 22px; border:1px solid rgba(122,167,255,.20); background: linear-gradient(180deg, rgba(122,167,255,.12), rgba(255,255,255,.02)); border-radius: var(--radius); padding:18px; display:flex; align-items:center; justify-content:space-between; gap:16px;}
.callout__cta{display:flex; gap:12px; flex-wrap:wrap;}

.faq{display:grid; gap:12px;}
details summary{cursor:pointer; font-weight:700;}
details p{color:var(--muted); margin:10px 0 0;}

.footer-cta{padding-bottom:70px;}
.footer-cta__inner{display:flex; flex-direction:column; align-items:flex-start; gap:10px;}
.tiny{font-size:12px; opacity:.9}

@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr;}
  .steps{grid-template-columns:1fr;}
  .two{grid-template-columns:1fr;}
  .nav__links{display:none;}
  .callout{flex-direction:column; align-items:flex-start;}
}
