/* ============================================
   EARLY ACCESS CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  overflow: hidden;
}

/* Ambient green gradient background */
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-section__glow-1 {
  position: absolute;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(74, 124, 80, 0.06) 0%,
    rgba(74, 124, 80, 0.03) 40%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section__glow-2 {
  position: absolute;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(74, 124, 80, 0.05) 0%,
    transparent 70%
  );
  top: 20%;
  right: 10%;
}

.cta-section__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__content h2 {
  margin-bottom: var(--space-6);
}

.cta-section__content p {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-10);
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.cta-section__secondary-text {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.cta-section__secondary-text a {
  color: var(--accent-green);
  transition: color var(--transition-fast);
}

.cta-section__secondary-text a:hover {
  color: var(--accent-green-hover);
}
