:root{
  --bg:#070a12;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.55);
  --primary: #8b5cf6;
  --primary2:#22c55e;
  --danger:#ef4444;
  --shadow: 0 18px 50px 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, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }

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

.bg{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.glow{
  position:absolute;
  filter: blur(80px);
  opacity:.9;
  border-radius:999px;
}
.glow-1{ width:520px; height:520px; left:-140px; top:-140px; background: rgba(139,92,246,.28); }
.glow-2{ width:560px; height:560px; right:-180px; bottom:-180px; background: rgba(34,197,94,.18); }
.grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0,0,0,1), rgba(0,0,0,.2) 55%, transparent 78%);
  opacity:.55;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
}

.brand{ display:flex; align-items:center; gap:10px; }
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 6px rgba(139,92,246,.12);
}
.brand-text{ font-weight:700; letter-spacing:-.02em; }
.muted{ color: var(--muted2); font-weight:600; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color: var(--muted); font-weight:600; font-size:14px; }
.nav a:hover{ color: var(--text); }

.main{ padding-bottom: 48px; }

.hero{ padding: 54px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.pulse{
  width:8px; height:8px; border-radius:999px;
  background: var(--primary2);
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(34,197,94,.5); }
  70%{ box-shadow:0 0 0 14px rgba(34,197,94,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height:1.03;
  letter-spacing:-.04em;
}
.gradient{
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(139,92,246,.92), rgba(34,197,94,.88));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.lead{ color: var(--muted); font-size: 16px; line-height:1.6; max-width: 62ch; }

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight:700;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, rgba(139,92,246,.98), rgba(34,197,94,.85));
  color: rgba(0,0,0,.88);
}
.btn-primary:hover{ filter: brightness(1.05); }

.btn-secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
.btn-secondary:hover{ background: rgba(255,255,255,.08); }

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}

.btn-arrow{ font-weight:900; }
.w-100{ width:100%; }

.trust{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 18px;
}
.trust-item{
  flex: 1 1 180px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.trust-kpi{ display:block; font-weight:800; letter-spacing:-.02em; }
.trust-text{ display:block; color: var(--muted); font-size: 13px; margin-top: 4px; }

.hero-card .card{
  height:100%;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
.card-eyebrow{ margin:0; color: var(--muted2); font-weight:700; font-size: 12px; letter-spacing:.02em; }
.card-title{ margin:6px 0 0; font-size: 18px; font-weight:800; letter-spacing:-.02em; }

.chip{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  color: rgba(255,255,255,.9);
  font-weight:800;
  font-size: 12px;
}

.divider{ height:1px; background: rgba(255,255,255,.10); margin: 14px 0; }

.features{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.features li{ display:flex; align-items:flex-start; gap:10px; color: var(--muted); }
.icon{
  width:22px; height:22px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  flex: 0 0 auto;
  color: rgba(255,255,255,.92);
  font-weight:900;
}

.tiny{ font-size: 12.5px; line-height:1.5; }
.link{ text-decoration: underline; text-underline-offset: 3px; }

.section{ padding: 40px 0; }
.section h2{ margin:0 0 10px; font-size: 28px; letter-spacing:-.03em; }
.subhead{ margin:0; color: var(--muted); line-height:1.6; max-width: 70ch; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.mini-card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.mini-card h3{ margin:0 0 8px; font-size: 16px; letter-spacing:-.02em; }
.mini-card p{ margin:0; color: var(--muted); line-height:1.6; }

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(139,92,246,.10);
  border: 1px solid rgba(139,92,246,.24);
  color: rgba(255,255,255,.84);
}
.note p{ margin:0; color: rgba(255,255,255,.86); }

.quote{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.quote-text{ margin:0; font-size: 16px; line-height:1.6; color: rgba(255,255,255,.86); }
.quote-by{ margin:10px 0 0; color: var(--muted2); font-size: 13px; }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-bullets{ margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height:1.8; }

.form{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.field{ display:grid; gap:6px; margin-bottom: 12px; }
label{ font-weight:700; color: rgba(255,255,255,.86); font-size: 13px; }
input, textarea{
  width:100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  outline:none;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.45); }
input:focus, textarea:focus{ border-color: rgba(139,92,246,.45); box-shadow: 0 0 0 4px rgba(139,92,246,.12); }

.error{ color: rgba(239,68,68,.95); min-height: 16px; }

.hp{ position:absolute; left:-9999px; top:-9999px; opacity:0; }

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.45);
  backdrop-filter: blur(12px);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
