:root{
  --bg:#0b1220;
  --card:#101a33;
  --text:#e9eefc;
  --muted:#aab6da;
  --accent:#ffffff;
  --line:rgba(255,255,255,.12);
  --shadow: 0 16px 50px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}


a{color:var(--text); text-decoration:none}
a:hover{opacity:.9; text-decoration:underline}

.container{
  width:min(1080px, 92vw);
  margin:0 auto;
  padding:28px 0 64px;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:10px 0 24px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand strong{font-size:18px; letter-spacing:.2px}
.brand span{font-size:13px; color:var(--muted); margin-top:4px}

.top-cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.pill{
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  color:var(--text);
  font-size:13px;
  background: rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

.hero{
  padding:18px 0;
}

.h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.04;
  margin:10px 0 12px;
}

.sub{
  font-size:16px;
  color:var(--muted);
  line-height:1.45;
  max-width: 68ch;
}

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

.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
}

.dot{
  width:10px;height:10px;border-radius:99px;
  background: rgba(255,255,255,.9);
  margin-top:6px;
  flex:0 0 10px;
}

.card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding:18px;
}

.card h2{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:.2px;
}

.card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.4;
  font-size:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:12px 0;
}

label{
  font-size:13px;
  color:var(--muted);
}

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

input:focus{
  border-color: rgba(255,255,255,.35);
}

input::placeholder{
  color: rgba(233,238,252,.55);
}

.small{
  font-size:12px;
  color:var(--muted);
  line-height:1.35;
}

.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:10px;
}

.checkbox input{
  width:18px;height:18px;margin-top:2px;
}

.btn{
  width:100%;
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.92);
  color:#0b1220;
  font-weight:700;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn:disabled{opacity:.65; cursor:not-allowed}

.status{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
  min-height: 18px;
}

.section{
  margin-top:34px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}

@media (max-width: 900px){
  .section{grid-template-columns:1fr}
}

.box{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding:14px;
}

.box strong{display:block; margin-bottom:6px}
.box span{color:var(--muted); font-size:14px; line-height:1.45}

.footer{
  margin-top:44px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

/* Sticky Mobile Call Bar */
.mobile-call{
  display:none;
}

/* ---------------------------
   MOBILE TUNING (THE FIX)
   --------------------------- */
@media (max-width: 768px){
  .container{
    width: min(720px, 92vw);
    padding:16px 0 78px; /* room for sticky bar */
  }

  .header{
    padding:8px 0 14px;
    align-items:flex-start;
  }

  .brand strong{font-size:16px}
  .brand span{font-size:12px}

  .top-cta{
    gap:8px;
  }

  .pill{
    padding:9px 12px;
    font-size:13px;
  }

  .hero{
    padding:10px 0 0;
  }

  .h1{
    font-size: clamp(28px, 7vw, 40px);
    line-height:1.06;
    margin:10px 0 10px;
  }

  .sub{
    font-size:15px;
    line-height:1.5;
  }

  .bullets{
    gap:8px;
  }

  .dot{
    margin-top:6px;
  }

  /* Make the top grid feel intentional on mobile */
  .grid{
    gap:14px;
  }

  /* Cards feel better with slightly less padding on small screens */
  .card{
    padding:14px;
    border-radius:18px;
  }

  input{
    padding:13px 12px;
    border-radius:12px;
  }

  .btn{
    padding:14px 14px;
    border-radius:14px;
    font-size:16px;
  }

  /* On mobile, boxes should be denser & not look like big slabs */
  .section{
    margin-top:18px;
    gap:10px;
  }

  .box{
    padding:12px;
    border-radius:16px;
  }

  /* Jump links wrap nicely */
  .hero div[style*="margin:14px 0;"]{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }
  .hero div[style*="margin:14px 0;"] .pill{
    flex: 1 1 auto;
    justify-content:center;
  }

  /* Sticky Mobile Call Bar */
  .mobile-call{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    text-align:center;
    padding:12px 0;
    z-index:1000;
    box-shadow:0 -4px 20px rgba(0,0,0,.25);
  }

  .mobile-call a{
    color:#0b1220;
    font-weight:800;
    text-decoration:none;
    font-size:16px;
  }
}

/* Extra-tight phones */
@media (max-width: 380px){
  .pill{font-size:12.5px}
  .h1{font-size: clamp(26px, 8vw, 36px)}
}
