:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg: #ffffff;
  --bg-dark: #111111;
  --text3: #111111;
  --accent: #e63946;
  --hover: #f1f1f1;
}

.launch-section {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--font);
  text-align: center;
  padding: 350px 240px;
  height: 100vh;
}

.launch-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.highlight {
  color: var(--accent);
  display: inline-block;
  animation: bounceWord 0.6s ease;
}

@keyframes bounceWord {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.launch-btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.launch-btn:hover {
  background-color: var(--hover);
  color: var(--text);
}

/* Tablet */
@media (max-width: 1024px) {
  .launch-title {
    font-size: 2rem;
  }

  .launch-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .launch-section {
    padding: 80px 20px;
  }

  .launch-title {
    font-size: 1.6rem;
  }

  .launch-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}