:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --accent: #e63946;
  --highlight: #f0f0f0;
}



.launch-steps {
  padding: 60px 40px;
  text-align: center;
}

.launch-steps h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--highlight);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}

.step-number {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Tablet View */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-steps h2 {
    font-size: 1.8rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .launch-steps {
    padding: 40px 20px;
  }

  .launch-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .step-card {
    text-align: center;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }
}