/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header styles */
.fixed-header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 50;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Button styles */
.primary-button {
  background-color: #6938ef;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}

.primary-button:hover {
  background-color: #7a4ee0;
}

.primary-button i {
  margin-left: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
}

/* Hero section styles */
.hero-section {
  min-height: 100vh;
  width: 100%;
  padding-top: 8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.text-center {
  text-align: center;
}

.early-access-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  background-color: #f3f0ff;
  border-radius: 9999px;
}

.early-access-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6938ef;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Social proof section */
.social-proof {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid white;
  margin-left: -0.5rem;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.rating {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.stars {
  color: #fbbf24;
}

/* Responsive styles */
@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }

  .primary-button {
    padding: 0.75rem 2rem;
  }
}
