:root{
  --bg: #0b1020;
  --bg2:#0d1630;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --accent: #7dd3fc; /* light cyan */
  --accent2:#a78bfa; /* violet */
  --ok:#86efac;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(167,139,250,.35), transparent 60%),
              radial-gradient(1000px 500px at 90% 0%, rgba(125,211,252,.30), transparent 55%),
              linear-gradient(180deg, var(--bg), #070a14 70%);
  color: var(--text);
  line-height:1.55;
}

a{ color: inherit; text-decoration:none; }
a.link{ color: var(--accent); }
a.link:hover{ text-decoration:underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,10,20,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.elevated{
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  background: rgba(7,10,20,.72);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight:700;
}
.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}
.brand-text{ letter-spacing:.2px; }

.nav{ display:flex; align-items:center; gap: 10px; }
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-link{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}
.nav-link:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.nav-link.active{ color: var(--text); background: rgba(255,255,255,.06); }

.nav-cta{
  background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(167,139,250,.18));
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
}
.nav-cta:hover{
  background: linear-gradient(135deg, rgba(125,211,252,.26), rgba(167,139,250,.26));
}

.hero{
  position:relative;
  padding: 72px 0 40px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset: -120px -120px auto -120px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(125,211,252,.12), transparent 70%);
  filter: blur(12px);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.badge{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 14px;
}
h1{
  font-size: clamp(40px, 5vw, 62px);
  line-height:1.05;
  margin: 14px 0 12px;
  letter-spacing:-.8px;
}
.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  cursor:pointer;
  font-weight: 650;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(125,211,252,.24), rgba(167,139,250,.24));
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.btn-primary:hover{ background: linear-gradient(135deg, rgba(125,211,252,.32), rgba(167,139,250,.32)); }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); }

.hero-trust{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.trust-item{
  flex: 1 1 140px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.trust-kpi{
  font-weight: 800;
  letter-spacing:.2px;
}
.trust-label{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.section{ padding: 52px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{ margin-bottom: 18px; }
.section-head h2{
  font-size: 30px;
  margin: 0 0 6px;
  letter-spacing:-.3px;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

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

.card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.card-title{ margin: 0 0 12px; }
.glow{
  position:relative;
  overflow:hidden;
}
.glow::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: radial-gradient(closest-side, rgba(125,211,252,.15), transparent 62%);
  transform: rotate(10deg);
  pointer-events:none;
}

.checklist, .bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li{ margin: 6px 0; }
.checklist li::marker{ color: var(--ok); }
.bullets li{ margin: 6px 0; }

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
  counter-reset: step;
}
.step{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.step h3{
  margin: 0 0 6px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.step h3::before{
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(125,211,252,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}
.steps.compact .step{ padding: 14px; }

.cta{
  padding: 44px 0;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(125,211,252,.10), rgba(167,139,250,.10));
}
.cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0 34px;
  background: rgba(0,0,0,.10);
}
.footer-inner{
  display:grid;
  gap: 14px;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted);
}
.footer-links a:hover{ color: var(--text); }
.footer-brand{ font-weight: 800; }
.footer-copy{ margin-top: 4px; }

.page-hero{
  padding: 54px 0 16px;
}
.page-hero h1{
  font-size: clamp(34px, 4.5vw, 46px);
  margin: 0 0 10px;
}
.pill-row{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
.pill{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
}
.pill:hover{ color: var(--text); background: rgba(255,255,255,.08); }

.form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}
label{ display:grid; gap: 6px; color: var(--muted); font-size: 14px; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}
textarea{ resize: vertical; }
.honeypot{ display:none; }
.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.hint{ opacity:.85; font-size: 12px; margin-left: 6px; }

.prose{
  max-width: 820px;
}
.prose h2{ margin-top: 22px; }
.prose ul{ color: var(--muted); }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items:flex-start; }
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    display:none;
    position:absolute;
    right: 20px;
    top: 64px;
    background: rgba(7,10,20,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    width: min(260px, calc(100vw - 40px));
    box-shadow: var(--shadow);
  }
  .nav-menu.open{ display:flex; }
  .nav-link{ width:100%; }
}
