:root{
  --bg:#070A12;
  --panel:#0D1222;
  --panel2:#0B1020;
  --text:#EAF0FF;
  --muted:#A9B6D6;
  --line:rgba(255,255,255,.10);
  --accent:#7C5CFF;
  --accent2:#22D3EE;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(700px 450px at 15% 20%, rgba(34,211,238,.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin:0 auto; }

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:baseline; gap:10px; }
.brandMark{
  font-weight:800; letter-spacing:.12em;
  padding:8px 10px; border:1px solid var(--line);
  border-radius:12px; background: rgba(255,255,255,.03);
}
.brandText{ font-weight:700; opacity:.9; }

.menu{ display:flex; gap:18px; align-items:center; }
.menu a{ opacity:.9; }
.menu a:hover{ opacity:1; }

.burger{
  display:none;
  background:transparent; border:0; cursor:pointer;
  width:44px; height:44px;
}
.burger span{
  display:block; height:2px; width:22px; margin:5px auto;
  background: rgba(234,240,255,.85);
  border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), rgba(124,92,255,.65));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btnGhost{
  background: rgba(255,255,255,.04);
  box-shadow:none;
}
.btnSmall{ padding:10px 14px; border-radius:12px; box-shadow:none; }

.hero{ padding:68px 0 28px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight:600;
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:14px 0 12px;
}
.accent{ color: var(--accent2); }
.sub{ color: var(--muted); font-size: 16.5px; line-height:1.6; max-width: 54ch; }

.heroCtas{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }

.trust{
  display:flex; gap:14px; margin-top:18px; flex-wrap:wrap;
}
.trustItem{
  padding:12px 14px;
  border-radius:16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.trustNum{ font-weight:800; font-size:18px; }
.trustLabel{ color: var(--muted); font-size:13px; margin-top:2px; }

.heroVisual{ position:relative; min-height: 340px; }
.cardGlass{
  position:absolute; inset:0;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:18px;
  overflow:hidden;
}
.miniTitle{ color: var(--muted); font-weight:700; }
.bars{
  display:flex; gap:10px; align-items:flex-end;
  height:180px; margin-top:16px;
}
.bar{
  flex:1; height: var(--h);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34,211,238,.95), rgba(124,92,255,.95));
  border:1px solid rgba(255,255,255,.12);
}
.miniRow{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.tag{
  font-size:12px; font-weight:700; color: var(--muted);
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.ring{
  position:absolute; right:-70px; top:-70px;
  width:220px; height:220px;
  border-radius:50%;
  border: 1px dashed rgba(255,255,255,.18);
  filter: drop-shadow(0 14px 40px rgba(124,92,255,.25));
}
.ring2{
  right:auto; left:-90px; top:auto; bottom:-90px;
  width:260px; height:260px;
  border-style: solid;
  opacity:.55;
}

.section{ padding:64px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kicker{ color: var(--accent2); font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:12px; }
.sectionHead{ margin-bottom:26px; }
.sectionHead h2{ margin:10px 0 6px; font-size: clamp(26px, 3vw, 38px); }
.muted{ color: var(--muted); line-height:1.6; }

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.mediaBox, .copyBox{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.mediaInner{ padding:22px; }
.copyBox{ padding:22px; }

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

.featureGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.feature{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.feature h4{ margin:0 0 8px; }
.feature p{ margin:0; color: var(--muted); font-size:14px; line-height:1.55; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 10px; }
.bullets{ padding-left: 18px; color: var(--muted); }
.bullets li{ margin:8px 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.step{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.stepNum{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
}
.centerCta{ margin-top:22px; text-align:center; }

.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:14px 14px;
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{ color: var(--muted); margin:10px 0 0; line-height:1.65; }

.cta{
  padding-top:40px;
}
.ctaBox{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(600px 250px at 20% 0%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(700px 300px at 90% 40%, rgba(124,92,255,.22), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:26px;
  text-align:center;
}
.ctaActions{ display:flex; gap:12px; justify-content:center; margin-top:14px; flex-wrap:wrap; }
.tiny{ font-size:12.5px; margin-top:10px; }

.footer{
  border-top:1px solid var(--line);
  padding:28px 0 18px;
  background: rgba(0,0,0,.18);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .9fr;
  gap:16px;
}
.footerBrand{ display:flex; gap:10px; align-items:baseline; margin-bottom:10px; }
.footer h4{ margin:0 0 10px; }
.footer ul{ list-style:none; padding:0; margin:0; }
.footer li{ margin:8px 0; color: var(--muted); }
.footer a:hover{ text-decoration:underline; }

.footerBottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 920px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroVisual{ min-height: 320px; }
  .twoCol{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .featureGrid{ grid-template-columns: 1fr; }
  .menu{ display:none; }
  .burger{ display:block; }
  .menu.open{
    display:flex;
    position:absolute;
    right:4%;
    top:66px;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    width:min(320px, 92vw);
    border-radius:16px;
    border:1px solid var(--line);
    background: rgba(7,10,18,.92);
    box-shadow: var(--shadow);
  }
}
