* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.landing {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.landing-inner {
  max-width: 520px;
  width: 100%;
}

/* Contenedor del logo: reemplazar el ícono por <img src="logo.png" alt="Logo"> cuando esté listo */
.logo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.logo-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.logo-icon {
  font-size: 4rem;
  color: #16a34a;
}

.landing h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.25;
}

.landing-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.landing-features {
  text-align: left;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.landing-features h2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.landing-features ul {
  list-style: none;
}

.landing-features li {
  font-size: 0.9375rem;
  color: #6b7280;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.landing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

.landing-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #16a34a;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.landing-cta:hover {
  background: #15803d;
}

@media (max-width: 480px) {
  .logo-container {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }

  .logo-icon {
    font-size: 3rem;
  }

  .landing h1 {
    font-size: 1.5rem;
  }

  .landing-desc {
    font-size: 0.9375rem;
  }
}
