body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.landing {
  text-align: center;
  padding: 40px 20px;
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 12px 45px rgba(0,0,0,0.08);
  animation: fadeInUp 0.9s ease;
  margin: 0px 8px;
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Cleaner structure for multiple buttons */
.tool-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.btn-launch {
  display: block;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 14px;
  background: #489E45;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: 0.25s ease;
}

.btn-launch:hover {
  background: #3d893a;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
