:root{
  --bg:#070A12;
  --panel:#0B1022;
  --panel2:#0D1430;
  --text:#EAF0FF;
  --muted:#A7B3D1;
  --line:rgba(255,255,255,.10);
  --brand:#7C5CFF;
  --brand2:#34D2FF;
  --ok:#2EE59D;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(52,210,255,.18), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(46,229,157,.10), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{display:block; max-width:100%}

.container{max-width:var(--container); margin:0 auto; padding:0 18px}
.mt-10{margin-top:10px}
.mt-14{margin-top:14px}
.mt-16{margin-top:16px}
.mt-20{margin-top:20px}
.center{text-align:center}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 14px; border-radius:10px;
}
.skip-link:focus{left:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  min-height:72px;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled{
  background: rgba(7,10,18,.85);
  border-bottom-color: rgba(255,255,255,.14);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:72px;
}

.brand{display:flex; align-items:center; gap:14px; padding-top:2px}
.brand img{width:44px; height:44px}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-size:16px; font-weight:600; letter-spacing:.2px}
.brand-sub{font-size:11px; opacity:.65; margin-top:2px}

.nav-menu{
  display:flex; align-items:center; gap:10px;
  list-style:none; margin:0; padding:0;
}
.nav-menu a{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;
  border-radius:12px;
  color:var(--muted);
  font-size:14px;
}
.nav-menu a.active{color:var(--text); background:rgba(255,255,255,.06)}
.nav-menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  color:var(--text);
}
.burger{
  display:block; width:18px; height:2px; background:var(--text);
  position:relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text);
}
.burger::before{top:-6px}
.burger::after{top:6px}

.section{padding:64px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px}
.section-head p{margin:0; color:var(--muted)}

.hero{padding:64px 0 42px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch}
.eyebrow{
  display:inline-flex; padding:6px 10px; border:1px solid var(--line);
  border-radius:999px; color:var(--muted);
  background:rgba(255,255,255,.03);
}
h1{font-size:44px; line-height:1.08; margin:14px 0 10px}
.lead{font-size:18px; color:var(--muted); margin:0}
.hero-proof{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.hero-proof li{margin:6px 0}

.hero-card{
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-inner{padding:18px}
.metric{
  display:flex; align-items:baseline; justify-content:space-between;
  border-bottom:1px solid var(--line);
  padding:12px 0;
}
.metric-value{font-size:26px; font-weight:800}
.metric-label{color:var(--muted)}
.hero-note{margin-top:12px; color:var(--muted)}

.cta-row{display:flex; gap:10px; margin:16px 0 12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  border:1px solid var(--line);
  font-weight:650;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: transparent;
  color:#0B0F1F;
  box-shadow: 0 8px 24px rgba(124,92,255,0.35);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  color:var(--text);
}
.trust-row{display:flex; gap:8px; flex-wrap:wrap}
.trust-pill{
  font-size:13px;
  padding:6px 10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
}

.page-hero{padding:46px 0 20px}
.page-hero h1{margin:0 0 6px; font-size:38px}
.page-hero .lead{margin:0}

.grid{display:grid; gap:14px}
.cards-2{grid-template-columns:repeat(2, 1fr)}
.cards-3{grid-template-columns:repeat(3, 1fr)}
.cards-4{grid-template-columns:repeat(4, 1fr)}
.two-col{grid-template-columns: 1fr 1fr}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card.small{padding:14px}
.card h2,.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.note{color:var(--muted); font-size:13px; margin-top:10px}

.checklist{
  margin:10px 0 0; padding:0; list-style:none;
}
.checklist li{
  margin:7px 0; padding-left:24px; position:relative; color:var(--text);
}
.checklist li::before{
  content:"";
  width:14px; height:14px; border-radius:4px;
  position:absolute; left:0; top:3px;
  background: linear-gradient(135deg, var(--ok), rgba(46,229,157,.55));
}

.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-size:13px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
}

.cta{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.20), rgba(52,210,255,.12));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.cta h2{margin:0 0 6px}
.cta p{margin:0; color:var(--muted)}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

.form{display:grid; gap:12px; margin-top:12px}
label{display:grid; gap:6px; color:var(--muted); font-size:14px}
input, select, textarea{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:14px;
  padding:11px 12px;
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(52,210,255,.55);
  box-shadow: 0 0 0 3px rgba(52,210,255,.12);
}

.site-footer{
  padding:40px 0 24px;
  border-top:1px solid var(--line);
  background: rgba(7,10,18,.55);
}
.footer-grid{
  display:grid; gap:14px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding-bottom:14px;
}
.footer-title{margin:0 0 10px; font-size:14px; color:var(--muted); letter-spacing:.2px}
.footer-links{list-style:none; margin:0; padding:0}
.footer-links li{margin:8px 0}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.muted{color:var(--muted)}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}
