/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Coming Soon Banner */
.coming-soon-banner {
  position: sticky;
  top: 0;
  background: rgba(88, 67, 223, 0.15);
  border-bottom: 1px solid rgba(88, 67, 223, 0.3);
  padding: 12px 0;
  text-align: center;
  z-index: 101;
}

.coming-soon-text {
  color: #8472f6;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Header */
.header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto;
}

/* Divider */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 64px 0;
}

/* Section */
.section {
  padding: 64px 0;
}

.section-highlight {
  background: rgba(88, 67, 223, 0.05);
  border-radius: 16px;
  margin: 64px 0;
  padding: 64px 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.section-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 16px;
}

.section-text strong {
  color: #8472f6;
  font-weight: 600;
}

/* Lists */
.problem-list,
.features-list {
  list-style: none;
  padding: 0;
}

.problem-list li,
.features-list li {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
}

.problem-list li::before,
.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5843df;
  font-size: 24px;
  line-height: 1;
}

/* Footer */
.footer {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-text {
    font-size: 12px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-text,
  .problem-list li,
  .features-list li {
    font-size: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-highlight {
    padding: 48px 16px;
  }
}
