:root {
  --accent-cyan: #00FFE7;
  --accent-pink: #FF00C8;
  --accent-orange: #FFB200;
  --bg-dark: #0A0A0D;
}
body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg-dark);
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
.background-animate {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(270deg, var(--accent-cyan), var(--accent-pink), var(--accent-orange), var(--accent-cyan));
  background-size: 200% 200%;
  animation: gradientMove 8s ease-in-out infinite;
  opacity: 0.12;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.container {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 90vw;
  margin: 4rem auto 0 auto;
  background: rgba(20,20,30,0.84);
  border-radius: 18px;
  box-shadow: 0 2px 32px #000b;
  padding: 2.2rem 1.2rem 2.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-hero {
  width: 160px;
  max-width: 80vw;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 28px #000b, 0 0 8px var(--accent-cyan);
  border: 0;
  background: none;
  display: block;
}
.title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.3em;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  text-shadow: 0 2px 16px #000a;
}
.subtitle {
  font-size: 1.07rem;
  color: #dedede;
  margin-bottom: 1.5em;
  text-align: center;
  max-width: 400px;
  text-shadow: 0 2px 8px #000a;
}
.features-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.features-list li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  position: relative;
  font-size: 1.01em;
}
.features-list li:before {
  content: "";
  position: absolute;
  left: 0; top: 0.3em;
  font-size: 1.1em;
}
.cta {
  margin: 2em 0 0 0;
  font-size: 1.15em;
  text-align: center;
}
.cta a {
  color: var(--accent-cyan);
  text-decoration: underline;
}
footer {
  color: #888;
  font-size: 0.9em;
  margin: 2em 0 1em 0;
  text-align: center;
}
@media (max-width: 600px) {
  .container { padding: 1.2rem 0.5rem 2rem 0.5rem; }
  .brand-hero { width: 80px; }
  .title { font-size: 1.2rem; }
  .subtitle { font-size: 0.97rem; }
}