:root{
  --bg:#0b1020;
  --panel:#101a33;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.75);
  --line:rgba(255,255,255,.12);

  --primary:#7c3aed;
  --accent:#38bdf8;

  --radius:18px;
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1000px 600px at 10% 0%, rgba(124,58,237,.25), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(56,189,248,.20), transparent 60%),
    var(--bg);
  color:var(--text);
}

/* HEADER */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1100;
  background:rgba(11,16,32,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
}
.logo{
  display:flex;
  gap:10px;
  align-items:center;
}
.logo-icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  font-weight:900;
}
.logo-text small{
  display:block;
  font-size:12px;
  color:var(--muted);
}
#menuBtn{
  font-size:24px;
  background:none;
  border:none;
  color:var(--text);
}

/* MENU OVERLAY (FIXED – NO PUSHING) */
.menu{
  position:fixed;
  top:70px;
  left:0;
  right:0;
  z-index:1000;

  background:rgba(11,16,32,.96);
  backdrop-filter:blur(12px);

  display:flex;
  flex-direction:column;
  gap:12px;
  padding:16px;

  transform:translateY(-120%);
  transition:transform .25s ease;
}
.menu.open{
  transform:translateY(0);
}
.menu a{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.menu a.cta{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  font-weight:700;
}

/* DIM BACKGROUND WHEN MENU OPEN */
body.menu-open::after{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  z-index:900;
}

/* MAIN CONTENT */
main{
  padding:110px 16px 32px;
}

/* HERO */
.hero{
  max-width:720px;
  margin:0 auto 60px;
}
.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  margin-bottom:14px;
}
.hero h1{
  font-size:clamp(30px,6vw,44px);
  line-height:1.05;
}
.grad{
  background:linear-gradient(90deg,#fbbf24,#38bdf8,#7c3aed);
  -webkit-background-clip:text;
  color:transparent;
}
.hero-text{
  color:var(--muted);
  margin:16px 0 22px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
}
.btn.primary{
  background:linear-gradient(135deg,var(--primary),var(--accent));
}
.btn.ghost{
  background:rgba(255,255,255,.05);
}
.hero-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}
.trust{
  padding:12px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  text-align:center;
  font-size:14px;
}

/* SECTIONS */
.section{
  margin:60px auto;
  max-width:900px;
}
.section.alt{
  background:rgba(255,255,255,.03);
  padding:32px 20px;
  border-radius:var(--radius);
}
.grid{
  display:grid;
  gap:14px;
}
.grid.two{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.card,.panel{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}

/* FOOTER */
.footer{
  text-align:center;
  padding:24px;
  color:var(--muted);
}
.btn {
  text-decoration: none;
}

.btn.primary {
  color: #fff;
}

.btn.ghost {
  color: var(--text);
}
.btn.primary{
  background: linear-gradient(
    135deg,
    #7c3aed,
    #38bdf8
  );
  box-shadow: 0 12px 30px rgba(124,58,237,.45);
}

.hero {
  margin-bottom: 40px;
}

.hero-trust {
  margin-top: 16px;
}