/* I Am Financially Free — landing page, matches the Rapid Mind Power brand system */

body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Poppins', sans-serif;
}

/* Dark navy sections with the brand's gold swirl artwork */
.bg-hero {
  background-color: #040C1E;
  background-image: linear-gradient(rgba(4, 12, 30, 0.65), rgba(4, 12, 30, 0.65)), url('../images/bg-2.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-offer {
  background-color: #040C1E;
  background-image: linear-gradient(rgba(4, 12, 30, 0.7), rgba(4, 12, 30, 0.7)), url('../images/bg-6.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Quote pills for the limiting-belief lines */
.quote-pill {
  background: #F3F1F6;
  border-radius: 999px;
  padding: 10px 22px;
  font-style: italic;
}

/* Animated gold/emerald "wealth" glow CTA button */
.cta-glow {
  position: relative;
  z-index: 1;
  background: #0B1220;
  border-radius: 10px;
  overflow: hidden;
}

.cta-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #FFCD10, #ffb400, #1fae6a, #FFCD10);
  background-size: 400%;
  z-index: -1;
  animation: goldGlow 12s linear infinite;
  filter: blur(6px);
}

@keyframes goldGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* Video play button */
.video-box {
  position: relative;
  cursor: pointer;
}

.video-play-btn {
  transition: transform 0.2s ease;
}

.video-box:hover .video-play-btn {
  transform: scale(1.08);
}

/* LISTEN. VISUALISE. REPEAT. ACT. banner divider dots */
.step-word:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #FFCD10;
  margin: 0 14px;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .step-word:not(:last-child)::after {
    display: none;
  }
}
