body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #6a1b9a 0%, #512da8 100%);
  color: #fff;
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
}

header {
  padding: 60px 20px 30px 20px;
  animation: fadeIn 1.5s ease-in;
}

h1 {
  font-size: 2.7em;
  color: #fff;
  margin-bottom: 0.3em;
  font-weight: 700;
  text-shadow: 0 2px 8px #3a1857a0;
}

h1 .brand {
  color: #e1bfff;
  text-shadow: 0 2px 8px #3a1857a0;
}

.subtitle {
  color: #fff;
  font-size: 2.1em;
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  font-weight: 600;
  text-shadow: 0 2px 8px #3a1857a0;
}

p {
  font-size: 1.25em;
  max-width: 700px;
  margin: 20px auto 30px auto;
  color: #f3eaff;
  text-shadow: 0 1px 6px #3a1857a0;
}

.features-list {
  max-width: 700px;
  margin: 60px auto 0 auto;
  text-align: left;
  background: rgba(40, 0, 80, 0.10);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px #3a185733;
}

.feature-item {
  font-size: 1.18em;
  margin-bottom: 22px;
  color: #f3eaff;
  line-height: 1.6;
}

.feature-item .brand {
  color: #e1bfff;
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(90deg, #b388ff 0%, #7c4dff 100%);
  color: #2d004d;
  border: none;
  border-radius: 8px;
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin-top: 30px;
  box-shadow: 0 2px 12px #3a185733;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: linear-gradient(90deg, #7c4dff 0%, #b388ff 100%);
  color: #fff;
}

footer {
  margin-top: 60px;
  font-size: 1em;
  color: #e1bfff;
  padding: 24px 10px 10px 10px;
  text-shadow: 0 1px 6px #3a1857a0;
  background: transparent;
}