:root{
  --bg0:#07090c;
  --bg1:#0d1117;
  --panel:#0f1622;
  --panel2:#111c2c;
  --text:#eaf2ff;
  --muted:#a8b3c7;
  --line:rgba(255,255,255,.10);
  --shadow:0 22px 70px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:24px;
  --brand:#39ff88;
  --brand2:#7aa7ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 15% 5%, rgba(57,255,136,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(122,167,255,.16), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.wrap{
  width:min(980px, 94vw);
  margin:32px auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  backdrop-filter: blur(8px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-dot{
  width:14px;height:14px;border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow:0 0 0 6px rgba(57,255,136,.12);
}
.brand-name{
  font-weight:800;
  letter-spacing:.06em;
}
.brand-sub{
  color:var(--muted);
  font-size:.9rem;
  margin-top:2px;
}

.meta{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:220px;
  justify-content:flex-end;
}
.stepinfo{
  color:var(--muted);
  font-weight:700;
}

.progress{
  position:relative;
  height:10px;
  width:220px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
}
.bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius:999px;
  transition:width .28s ease;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:26px 24px;
  box-shadow:var(--shadow);
}

h1{
  margin:0 0 12px 0;
  font-size:clamp(1.25rem, 2.3vw, 1.85rem);
  letter-spacing:-.02em;
}
p{
  margin:10px 0;
  line-height:1.55;
  color:rgba(234,242,255,.92);
}
strong{color:var(--text)}

.hint{
  margin-top:14px;
  color:var(--muted);
  font-size:.95rem;
}

.core{
  margin-top:14px;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(57,255,136,.22);
  background:rgba(57,255,136,.07);
}

.list{
  margin:14px 0 8px 18px;
}
.list li{margin:6px 0; color:rgba(234,242,255,.9)}

.grid{
  margin-top:14px;
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
label{
  display:flex;
  flex-direction:column;
  gap:7px;
  color:rgba(234,242,255,.9);
  font-weight:700;
  font-size:.95rem;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input::placeholder{color:rgba(168,179,199,.75)}
input:focus, select:focus, textarea:focus{
  border-color:rgba(122,167,255,.55);
  box-shadow:0 0 0 4px rgba(122,167,255,.14);
}

.actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.actions.two{justify-content:space-between}

.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .06s ease, filter .18s ease, background .18s ease;
}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  color:#08110c;
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
}
.btn.ghost:hover{background:rgba(255,255,255,.08)}

.fine{
  margin-top:14px;
  color:rgba(168,179,199,.9);
  font-size:.9rem;
}

.pill{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:rgba(234,242,255,.9);
}

.cal-wrap{
  margin-top:16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  min-height:720px;
}
#calendly-inline{min-height:720px}

.step{display:none}
.step.active{display:block}

.footer{
  text-align:center;
  color:rgba(168,179,199,.75);
  font-size:.9rem;
  padding:10px 0 24px;
}

@media (max-width: 720px){
  .top{flex-direction:column; align-items:stretch}
  .meta{justify-content:space-between; min-width:unset}
  .progress{width:100%}
  .grid{grid-template-columns:1fr}
  .cal-wrap, #calendly-inline{min-height:820px}
}
