/* ==========================================================================
   Submission page — dark card with CTA button
   ========================================================================== */

.launch {
  max-width: 820px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
}
.launch-card {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
  color: #fff;
  padding: 36px 30px;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.launch-emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 14px;
}
.launch-card h2 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.launch-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0 auto 20px;
  max-width: 460px;
  line-height: 1.55;
}
.launch-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, var(--accent) 100%);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.6);
  text-decoration: none !important;
  color: #fff !important;
}
.launch-sub {
  margin-top: 18px !important;
  font-size: 0.82rem !important;
  color: #94a3b8 !important;
  opacity: 0.85;
}

.submit-back {
  max-width: 820px;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
}
.submit-back a { color: var(--accent); font-weight: 600; }
