:root{
  --bg: #f1f5f9;
  --panel: #ffffff;
  --panel2: #ffffff;
  --border: #e2e8f0;
  --text: #334155;
  --muted: #64748b;
  --muted2: #64748b;
  --accent: #f97316;
  --accent-hover: #ea580c;

  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --radius: 16px;
  --radius2: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family:'Open Sans', sans-serif;
  background: var(--base-darker, #0f172a);
}

h1, h2, h3, .brand,
h1,
.card h2,
label {
  color: #f8fafc;
}

.sub,
ul.bullets,
.fineprint {
  color: rgba(248,250,252,0.72);
}

.kicker {
  color: #f97316;
}



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

.wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 26px 16px 70px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0 18px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid var(--border);
  background: var(--panel2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.hero{
  padding: 14px 0 18px;
}
.kicker{
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 13px;
  margin: 0 0 8px;
  opacity: .95;
}
h1{
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 40px;
}

.card h2{
  margin: 0 0 10px;
  font-size: 18px;
}
ul.bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.progress{
  display:flex;
  gap: 8px;
  margin: 14px 0 16px;
}
.dot{
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}
.dot.on{
  background: rgba(255,138,42,0.95);
}

label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
  outline: none;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: rgba(248,250,252,0.45);
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(249,115,22,0.75);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.14);
}

.row{ margin-top: 14px; }

.actions{
  display:flex;
  gap: 10px;
  margin-top: 16px;
}

button{
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  cursor:pointer;
  transition: transform .05s ease, filter .15s ease;
  font-size: 16px;
}
button:active{ transform: translateY(1px); }
button:disabled{ opacity: .6; cursor:not-allowed; }

.btn-primary{
  background: var(--accent);
  color: #ffffff;
  flex: 1;
  border-radius: 9999px;
}
.btn-primary:hover{
  background: var(--accent-hover);
  filter: none;
}

.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9999px;
}

.err{
  display:none;
  color: #ffb0b0;
  font-size: 12px;
  margin-top: 8px;
}

.fineprint{
  font-size: 12px;
  color: var(--muted2);
  margin-top: 12px;
  line-height: 1.45;
}

.banner{
  display:none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,138,42,0.45);
  background: rgba(255,138,42,0.12);
  color: rgba(255,255,255,0.88);
}

/* Step visibility */
.step{ display:none; }
.step.active{ display:block; }

/* MOBILE: center align like your marketing site */
@media (max-width: 720px){
  .topbar{ justify-content:center; }
  .badge{ display:none; } /* keeps mobile tidy */
  .hero, .card{ text-align:center; }
  .sub{ margin-left:auto; margin-right:auto; }
  ul.bullets{ text-align:left; margin-left:auto; margin-right:auto; max-width: 42ch; }
  .actions{ justify-content:center; }
  .btn-ghost{ flex: 0 0 auto; }
}

/* DESKTOP: slightly more “site-like” spacing */
@media (min-width: 900px){
  .wrap{ padding-top: 34px; }
  h1{ font-size: 44px; }
  .card{ padding: 22px; }
}


@media (max-width: 720px){
  .actions{
    position: sticky;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(7,12,22,0) 0%, rgba(7,12,22,0.85) 30%, rgba(7,12,22,0.95) 100%);
    backdrop-filter: blur(6px);
    z-index: 5;
	h1{ font-size: 26px; margin-bottom: 8px; }
  }
}


/* Final onboarding polish */
.kicker {
  color: rgba(248, 250, 252, 0.88);
}

.sub {
  color: rgba(248, 250, 252, 0.86);
}

label {
  color: rgba(248, 250, 252, 0.92);
}

.step p,
.step span {
  color: rgba(248, 250, 252, 0.86);
}