.customer_onboarding_page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a0a0a;
  padding:20px;
}

.customer_onboarding_card{
  width:100%;
  max-width:650px;
  background:#121212;
  border:1px solid #222;
  border-radius:24px;
  padding:24px;
}

.customer_onboarding_header{
  text-align:center;
  margin-bottom:24px;
}

.customer_onboarding_header p{
  color:var(--muted);
}

.customer_onboarding_steps{
  display:grid;
  gap:18px;
}

.customer_onboarding_step{
  background:#181818;
  border:1px solid #242424;
  border-radius:18px;
  padding:18px;
}

.customer_onboarding_step h3{
  margin:0 0 8px;
  color:var(--brand);
}

.customer_onboarding_step p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

.customer_onboarding_join_btn,
.customer_onboarding_back_btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  margin-top:16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
}

.customer_onboarding_join_btn{
  background:var(--brand);
  color:#000;
}

.customer_onboarding_back_btn{
  border:1px solid var(--brand);
  background:#000;
  color:var(--brand);
}