
/* CSS reset */

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

img, picture, video {
  max-width: 100%;
  display: block;
}

body {
  line-height: 1.5;
}

/* Particle background */
#tsparticles {
  position: fixed;
  top: -20vh;
  left: 0;
  width: 100%;
  height: 140vh;
  z-index: -1;
  will-change: transform;
}

/* Begin styles */

html {
  background: linear-gradient(180deg, #0d1a3a 0%, #1a0533 50%, #0a0514 100%);
  min-height: 100vh;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #1a1a2e;
  max-width: 1080px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(135deg, #ffffff 0%, #f0ebfd 50%, #e0d6fa 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
  padding: 3rem 2rem;
  margin: 3rem auto;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 2rem;
}

.logo img {
  max-height: 100%;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  color: #7c3aed;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  display: flow-root;
}

.highlight-text {
  background: linear-gradient(90deg, #a855f7, #3b82f6, #a855f7);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 7s linear infinite;
}

@keyframes gradient-shift {
  to {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlight-text {
    animation: none;
  }
}

.description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7c3aed;
}

/* Signup section */
.signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.7rem;
}

.signup-note {
  width: 100%;
  max-width: 600px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4c1d95;
  text-align: center;
  margin-bottom: 1.5rem;
}

.ml-embedded {
  width: 100%;
  max-width: 600px;
}

.ml-embedded .ml-form-embedBody {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background: transparent !important;
}

.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedContainer,
.ml-embedded form {
  background: transparent !important;
}

/* Features */
.features ul {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 5rem;
  gap: 1rem;
  list-style: none;
}

.features li {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  background-color: #4c1d95;
  border-radius: 999px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.features li:hover {
  background-color: #6d28d9;
  transform: translateY(-2px);
}



/* Responsive screens */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .card {
    padding: 2rem 1.25rem;
    margin: 1rem auto;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
