:root{
  --bg0:#060a12;
  --bg1:#0b1220;
  --stroke:#1f2a3a;
  --text:#e8eef7;
  --muted:#a8b3c7;
  --muted2:#7f8aa3;
  --accent:#93c5fd;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, #0f1a33 0%, transparent 55%),
              radial-gradient(900px 800px at 90% 15%, #132046 0%, transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
}

.bg{min-height:100%; padding:28px 18px;}
.container{max-width:1040px; margin:0 auto;}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  width:30px;
  height:30px;
  border-radius:80px;
  object-fit:cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.06);
  background:#0a1020;
}

.brand__name{font-size: 25px; font-weight:800; letter-spacing:.2px;}
.brand__tag{font-size:15px; color:var(--muted2); margin-top:2px;}

.proof__pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(8,12,22,.35);
  backdrop-filter: blur(10px);
}

.proof__count{font-weight:900; color:var(--accent);}
.proof__label{font-size:15px; color:var(--muted);}

.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px; /* was 18px (slightly more breathing room) */
  align-items:start; /* NEW: prevents odd vertical stretching */
}

.hero{
  padding:26px 22px; /* was 22px 18px */
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r);
  background: rgba(10,14,26,.22);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(600px 260px at 20% 10%, rgba(147,197,253,.14), transparent 60%),
              radial-gradient(600px 260px at 70% 30%, rgba(147,197,253,.08), transparent 55%);
  pointer-events:none;
}
.hero > *{position:relative;}

/* NEW: hero logo sizing (this is the main fix for “logo too big”) */
.hero__logo{
  width: min(120px, 55%);
  height: auto;
  display:block;
  margin: 2px auto 16px;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.35));
  opacity: .95;
}

/* If you ever switch to inline SVG in the hero */
.hero__logo svg{
  width: 100%;
  height: auto;
  display:block;
}

h1{
  margin:0 0 10px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-0.6px;
}

.subhead{
  margin:0 0 14px; /* was 18px */
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}

.bullets{
  list-style:none;
  padding:0;
  margin:0 0 14px; /* was 18px */
  display:grid;
  gap:10px;
}

.bullets li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d8e1f2;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(147,197,253,.9);
  box-shadow: 0 0 0 6px rgba(147,197,253,.12);
}

.callout{
  margin-top:6px;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(8,12,22,.35);
}

.callout__title{font-weight:800; margin-bottom:6px;}
.callout__body{color:var(--muted); font-size:14px; line-height:1.5;}

.card{
  padding:22px 18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);
  background: rgba(10,14,26,.38);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.card h2{margin:0 0 6px; font-size:20px;}
.muted{margin:0 0 16px; color:var(--muted); font-size:14px;}

.form{display:grid; gap:12px;}

.field{display:grid; gap:6px;}
.field span{font-size:12px; color:var(--muted2);}
.field em{font-style:normal; color:rgba(168,179,199,.75)}

input, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(6,10,18,.55);
  color:var(--text);
  outline:none;
}

input::placeholder{color:rgba(168,179,199,.55)}
input:focus, select:focus{
  border-color: rgba(147,197,253,.45);
  box-shadow: 0 0 0 5px rgba(147,197,253,.12);
}

button{
  margin-top:4px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(147,197,253,.35);
  background: rgba(147,197,253,.16);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}
button:disabled{opacity:.6; cursor:not-allowed;}

.msg{
  min-height:18px;
  font-size:13px;
  color:var(--muted);
  margin:6px 0 0;
}
.msg.ok{color:#a7f3d0;}
.msg.err{color:#fca5a5;}

.fineprint{
  margin:5px 0 0;
  color: rgba(168,179,199,.7);
  font-size:12px;
  line-height:1.5;
}

.footer{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px;
  color: rgba(168,179,199,.75);
  font-size:12px;
  text-align:center;
}
.footer__sep{opacity:.6}
.footer__muted{opacity:.9}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr;}
  h1{font-size:34px;}
  .hero__logo{
    width: min(160px, 55%);
    margin-bottom: 14px;
  }
}
