/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.5;
}

/* Utility Classes */
.text-gold {
  color: #d4af37;
}

/* Page Container */
.page-container {
  min-height: 100vh;
  background-color: #000000;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.background-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.decoration-top-right {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: #d4af37;
  opacity: 0.1;
}

.decoration-bottom-left {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: #d4af37;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  height: 8rem;
  width: auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-highlight {
  display: block;
  color: #d4af37;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-features {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-check {
  color: #d4af37;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #d4af37;
  box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.1);
  transform: translateY(-0.5rem);
}

.benefit-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: rgba(212, 175, 55, 0.2);
}

.icon-benefit {
  width: 1.75rem;
  height: 1.75rem;
  color: #d4af37;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #d4af37;
}

.benefit-description {
  color: #9ca3af;
  line-height: 1.75;
}

/* Community Section */
.community-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
  overflow: hidden;
}

.community-background {
  position: absolute;
  inset: 0;
}

.community-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background-color: #d4af37;
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(100px);
}

.community-card {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), transparent);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.community-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #d4af37;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.icon-large {
  width: 2.5rem;
  height: 2.5rem;
  color: #000000;
}

.community-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.community-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.community-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #9ca3af;
}

.stat-divider {
  display: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background-color: #d4af37;
  color: #000000;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  background-color: #b8941f;
  transform: scale(1.05);
}

.icon-arrow {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .icon-arrow {
  transform: translateX(0.25rem);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 1rem;
  background-color: #000000;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
  flex: 1;
}

.testimonial-card:hover {
  border-color: #d4af37;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 1rem;
  background: linear-gradient(to top, #0a0a0a, #000000);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.pricing-card-monthly {
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), transparent);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.pricing-card-monthly:hover {
  border-color: #d4af37;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
}

.pricing-card-lifetime {
  position: relative;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), transparent);
  border: 2px solid #d4af37;
}

.pricing-card-lifetime:hover {
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d4af37;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.pricing-icon-lifetime {
  background-color: #d4af37;
}

.icon-pricing {
  width: 1.75rem;
  height: 1.75rem;
  color: #d4af37;
}

.pricing-icon-lifetime .icon-pricing {
  color: #000000;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
}

.price-period {
  color: #9ca3af;
}

.price-note {
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.icon-check-small {
  width: 1.25rem;
  height: 1.25rem;
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-feature span {
  color: #d1d5db;
}

.pricing-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #d4af37;
  color: #000000;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

.pricing-button:hover {
  background-color: #b8941f;
  transform: scale(1.05);
}

.icon-arrow-small {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.pricing-button:hover .icon-arrow-small {
  transform: translateX(0.25rem);
}

.pricing-button-lifetime {
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
  padding: 2rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background-color: #000000;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-section {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .community-stats {
    flex-direction: row;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 4rem;
    background-color: rgba(212, 175, 55, 0.3);
  }

  .testimonials-grid {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3.75rem;
  }

  .benefits-section {
    padding: 5rem 2rem;
  }

  .community-section {
    padding: 5rem 2rem;
  }

  .testimonials-section {
    padding: 5rem 2rem;
  }

  .pricing-section {
    padding: 5rem 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-card {
    padding: 4rem;
  }
}
