:root {
  --primary: #6C63FF;
  --primary-dark: #5A52D9;
  --accent: #FF6584;
  --text: #F8F9FA;
  --text-secondary: #ADB5BD;
  --background: #0B0D17;
  --card-bg: rgba(22, 26, 44, 0.7);
  --gradient-start: #2b2d42;
  --gradient-end: #121420;
}

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

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
margin: 0;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main, header {
  max-width: 1100px;
  margin: auto;
padding: 1rem;
}

/* Stars background */
.stars, .twinkling {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.stars {
  background: #000 url('starfield.png') repeat top center;
}

.twinkling {
  background: transparent url('twinkling.png') repeat top center;
  animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
  from {background-position: 0 0;}
  to {background-position: -10000px 5000px;}
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(165, 180, 252, 0.3);
}

.logo span {
  color: var(--primary);
}

.hero {
  display: flex;
    flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  /*! margin-bottom: 20px; */
  font-weight: 700;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.feature-icon {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(108, 99, 255, 0.3));
  transition: all 0.3s;
}

.hero-image img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 20px 150px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(108, 99, 255, 0.3));
}

.pain-points, .solution {
  padding: 60px 0;
  position: relative;
}

.pain-points h2, .solution h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.pain-points p, .solution p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}
.solution p {
  margin-bottom: 20px;
}

.pain-points ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.pain-points li {
  margin:10px;
  background: #000;
  padding: 10px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid white;
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.solution-point {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
  backdrop-filter: blur(4px);
}

.solution-point:hover {
  transform: translateY(-10px);
}

.solution-point h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.signup-section {
  border-radius: 30px;
  margin: 40px 0;
}

.signup-content {
  text-align: center;
  max-width: 632px;
  margin: 0 auto;
}

.signup-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.signup-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.signup-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 200px;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.signup-form input::placeholder {
  color: var(--text-secondary);
}

.signup-form button {
  padding: 15px 30px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.signup-form button:hover {
  background: var(--primary-dark);
}

p.form-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 15px;
}

footer {
  text-align: center;
  padding: 30px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  background: #000;
  width: 100%;
  border-top: 1px solid #fff2;
}









.hero h2 {
    width: 100%; /* Make title take full width */
    order: 1; /* Set the order for desktop */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    order: 2; /* Set the order for desktop */
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    order: 3; /* Set the order for desktop */
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
  padding: 0;
  }
  
  .hero h2 {
      font-size: 2.5rem;
        order: 2;
        text-align: center;
        margin-bottom: 20px;
  }
  
  .tagline {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 30px;
  }
  
  .pain-points h2, .solution h2, .signup-content h2 {
      font-size: 2rem;
  }
    .hero-image {
        order: 1; /* Image first on mobile */
        width: 100%;
      max-height: 50vh;
z-index: -1;
    }
    
    .hero-content {
        order: 3; /* Features last on mobile */
        width: 100%;
    }
}
