* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0d0d12;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.wrapper {
  max-width: 600px;
  text-align: center;
}

.logo {
  max-width: 320px;
  width: 100%;
  margin-bottom: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  color: #a0a0b0;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.badge {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 6px 16px;
  border: 1px solid #00e0ff;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #00e0ff;
}

.descripcion {
  color: #d0d0d8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.feature {
  background: #17171f;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #2a2a35;
}

.feature .icon {
  font-size: 1.5rem;
}

.feature p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #c0c0cc;
}

.footer-text {
  color: #00e0ff;
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}