:root{
  /* EDIT: Brand colors */
  --bg: #0b1220;
  --panel: #101a2e;
  --panel-2: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.14);
  --accent: #2dd4bf; /* teal */
  --accent2: #60a5fa; /* blue */
  --danger: #fb7185;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
  --pad: clamp(18px, 2.6vw, 34px);
  --h1: clamp(34px, 4.2vw, 56px);
  --h2: clamp(22px, 2.6vw, 34px);
  --h3: clamp(18px, 2vw, 22px);
  --p: 16px;
}
*{ 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,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(96,165,250,0.28), transparent 55%),
    radial-gradient(1000px 650px at 15% 0%, rgba(45,212,191,0.22), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #070b14 100%);
  color: var(--text);
  line-height:1.55;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
.wrap{ max-width: var(--max); margin:0 auto; padding: 0 var(--pad); }

/* Header */
header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.65);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width: 220px;
}
.logoMark{
  width:34px; height:34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 10px 30px rgba(45,212,191,0.22);
  display:grid; place-items:center;
}
.logoMark svg{ width:22px; height:22px; opacity:0.95; }
.brandText{
  display:flex; flex-direction:column; line-height:1.1;
}
.brandText strong{ font-size:14px; letter-spacing:0.3px; }
.brandText span{ font-size:12px; color: var(--muted); }
nav ul{ list-style:none; display:flex; gap:16px; padding:0; margin:0; align-items:center; }
nav a{
  font-size:13px; color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
nav a:hover{ background: var(--panel-2); color: var(--text); }
.ctaRow{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ background: rgba(255,255,255,0.06); }
.btn:active{ transform: translateY(1px); }
.btnPrimary{
  border: none;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #051018;
  box-shadow: 0 14px 44px rgba(96,165,250,0.18), 0 10px 30px rgba(45,212,191,0.12);
}
.btnPrimary:hover{ filter: brightness(1.02); }
.btnSmall{ padding: 8px 12px; font-size: 12px; }

/* Hero */
.hero{ padding: 70px 0 34px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 13px;
}
.pill b{ color: var(--text); font-weight: 700; }
h1{
  font-size: var(--h1);
  line-height: 1.08;
  margin: 16px 0 14px;
  letter-spacing: -0.8px;
}
.sub{
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 22px;
}
.heroBtns{ display:flex; gap:10px; flex-wrap:wrap; }
.trustLine{
  margin-top: 18px;
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color: var(--muted);
  font-size: 13px;
}
.trustDot{
  width: 5px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.35);
}
.card{
  background: rgba(16,26,46,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.auditCard{ padding: 18px; }
.auditCard h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.auditCard p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.miniForm{
  display:grid;
  gap:10px;
}
label{ font-size: 12px; color: var(--muted); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
  font-size: 16px;
}
input:focus, textarea:focus{
  border-color: rgba(45,212,191,0.55);
  box-shadow: 0 0 0 4px rgba(45,212,191,0.10);
}
textarea{ min-height: 88px; resize: vertical; }
.finePrint{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* Section */
section{ padding: 44px 0; }
.sectionHead{
  margin-bottom: 18px;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 18px;
}
.sectionHead h2{
  margin:0;
  font-size: var(--h2);
  letter-spacing: -0.4px;
}
.sectionHead p{
  margin:0;
  color: var(--muted);
  max-width: 60ch;
  font-size: 15px;
}

/* Feature grids */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tile{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.tile h3{ margin: 0 0 6px; font-size: var(--h3); }
.tile p{ margin:0; color: var(--muted); font-size: 14px; }
.icon{
  width: 40px; height: 40px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(96,165,250,0.28), rgba(45,212,191,0.22));
  border: 1px solid rgba(255,255,255,0.10);
  display:grid; place-items:center;
  margin-bottom: 10px;
}
.icon svg{ width: 20px; height: 20px; opacity: 0.95; }

/* Proof */
.proofBar{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  padding: 16px 18px;
}
.proofLeft{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.proofBadge{
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  font-size: 12px;
}

/* Steps */
.step{
  display:flex; gap:12px;
  align-items:flex-start;
}
.stepNum{
  min-width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  display:grid; place-items:center;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin:0; color: var(--muted); font-size: 14px; }

/* FAQ */
details{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
}
details summary{
  cursor:pointer;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  list-style:none;
}
details summary::-webkit-details-marker{ display:none; }
details p{ margin: 10px 0 0; color: var(--muted); font-size: 14px; }

/* Footer */
footer{
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.foot{
  display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.foot a{ color: rgba(255,255,255,0.75); }
.foot a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  nav ul{ display:none; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .brand{ min-width: auto; }
}