/* ---------- Global polish ---------- */
body {
  background: radial-gradient(1200px circle at 20% 10%, rgba(255,255,255,0.06), transparent 40%),
              radial-gradient(900px circle at 80% 20%, rgba(255,255,255,0.04), transparent 35%),
              #0f1115;
  color: #e9eef6;
}

.text-muted,
.text-secondary {
  color: rgba(233, 238, 246, 0.70) !important;
}

/* ---------- Hero card ---------- */
.hero-shell {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
  padding: 3.25rem;
}

.hero-kicker {
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233, 238, 246, 0.70);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(233, 238, 246, 0.72);
}

.btn-soft {
  border-radius: 14px;
  padding: .9rem 1.2rem;
  font-weight: 600;
}

.btn-soft-primary {
  background: rgba(13,110,253,0.18);
  border: 1px solid rgba(13,110,253,0.35);
  color: #e9eef6;
}
.btn-soft-primary:hover {
  background: rgba(13,110,253,0.28);
  border-color: rgba(13,110,253,0.55);
  color: #fff;
}

.btn-soft-success {
  background: rgba(25,135,84,0.18);
  border: 1px solid rgba(25,135,84,0.35);
  color: #e9eef6;
}
.btn-soft-success:hover {
  background: rgba(25,135,84,0.28);
  border-color: rgba(25,135,84,0.55);
  color: #fff;
}

/* subtle divider */
.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 1.5rem 0;
}
