body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7eaff;
  color: #222;
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  margin-bottom: 120px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #ff4ecb 70%, #6c2eb7 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem 0 3rem 7vw;
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.logo {
  width: 260px;
  max-width: 90vw;
  margin-bottom: 2.5rem;
  display: block;
}
.hero h1, .hero .gradient-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
  padding: 0;
}
.hero p {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 2.2rem;
  text-shadow: none;
}
.cta-btn {
  background: linear-gradient(90deg, #ff4ecb 0%, #6c2eb7 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 1.1rem 2.7rem;
  cursor: pointer;
  box-shadow: 0 6px 32px #ff4ecb33, 0 2px 8px #6c2eb733;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 1px;
  text-decoration: none !important;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  transform: scale(1.07);
}
.hero-influencer {
  position: absolute;
  right: -60px;
  bottom: -320px;
  width: 800px;
  max-width: 70vw;
  z-index: 3;
  filter: drop-shadow(0 16px 60px #ff4ecb88) drop-shadow(0 4px 16px #6c2eb7cc);
  transform: rotate(-6deg) scale(1.18);
  animation: jumpIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
}
@keyframes jumpIn {
  0% { opacity: 0; transform: translateY(80px) scale(0.8) rotate(-12deg); }
  80% { opacity: 1; transform: translateY(-10px) scale(1.1) rotate(-7deg); }
  100% { opacity: 1; transform: translateY(0) scale(1.08) rotate(-6deg); }
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: #fff;
  color: #222;
  border-radius: 18px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 90vw;
  box-shadow: 0 8px 40px #6c2eb799, 0 2px 8px #ff4ecb99;
  position: relative;
  animation: popin 0.3s;
  border: 3px solid #ff4ecb;
}
@keyframes popin {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.close-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c2eb7;
  cursor: pointer;
}
.modal-content h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #6c2eb7;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-group {
  margin-bottom: 1.2rem;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #6c2eb7;
}
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #d1c4e9;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.2rem;
  background: #f3eaff;
  color: #222;
  box-sizing: border-box;
}
textarea {
  min-height: 60px;
  resize: vertical;
}
.creator-type {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.creator-type label {
  color: #222;
  font-weight: 500;
  margin-bottom: 0;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #ff4ecb 0%, #6c2eb7 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 0.9rem 0;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px #ff4ecb66, 0 2px 8px #6c2eb799;
}
.submit-btn:hover {
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  transform: scale(1.03);
}
.section {
  padding: 64px 0 48px 0;
  background: transparent;
  text-align: center;
}
.fitness-discovery {
  background: transparent;
  color: #222;
}
.fitness-discovery h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #6c2eb7;
  text-shadow: none;
}
.fitness-discovery p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #222;
  text-shadow: none;
}
.section-cta {
  display: inline-block;
  background: #fff;
  color: #6c2eb7;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 4px 24px #ff4ecb33, 0 2px 8px #6c2eb733;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-bottom: 1rem;
}
.section-cta:hover {
  background: #6c2eb7;
  color: #fff;
  transform: scale(1.05);
}
.fitness-earnings {
  background: #f7eaff;
}
.fitness-earnings h2 {
  color: #6c2eb7;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.fitness-earnings p {
  color: #222;
  font-size: 1.1rem;
}
.fitness-freedom {
  background: #fff;
}
.fitness-freedom h2 {
  color: #ff4ecb;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.fitness-freedom p {
  color: #222;
  font-size: 1.1rem;
}
.fitness-og {
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  color: #fff;
}
.fitness-og h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px #ff4ecb99;
}
.fitness-og p {
  font-size: 1.1rem;
  color: #fff;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.gradient-text {
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: none;
  display: inline-block;
}
.solid-hero-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.05;
  color: #6c2eb7;
  letter-spacing: -1px;
  display: inline-block;
}
.hero-signup-form {
  margin-top: 1rem;
}
.email-input-group {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  align-items: center;
}
.email-input-group input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 32px;
  border: 2px solid #fff;
  font-size: 1rem;
  background: #fff;
  color: #222;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.email-input-group input[type="email"]:focus {
  outline: none;
  border-color: #ff4ecb;
  box-shadow: 0 2px 12px rgba(255, 78, 203, 0.3);
}
.hero-cta-btn {
  background: linear-gradient(90deg, #ff4ecb 0%, #6c2eb7 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 24px #ff4ecb33, 0 2px 8px #6c2eb733;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.hero-cta-btn:hover {
  background: linear-gradient(90deg, #6c2eb7 0%, #ff4ecb 100%);
  transform: scale(1.05);
}
@media (max-width: 1200px) {
  .hero-influencer {
    width: 600px;
    right: -40px;
    bottom: -220px;
  }
  .hero {
    margin-bottom: 80px;
  }
  .hero-content {
    max-width: 90vw;
    padding: 2rem 0 2rem 5vw;
  }
  .logo {
    width: 120px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 900px) {
  .hero h1, .hero .gradient-text {
    font-size: 2.5rem;
  }
  .hero-influencer {
    width: 400px;
    right: -20px;
    bottom: -120px;
  }
  .hero {
    margin-bottom: 40px;
  }
  .hero-content {
    max-width: 95vw;
    padding: 1.5rem 0 1.5rem 3vw;
  }
  .logo {
    width: 180px;
    margin-bottom: 1.5rem;
  }
  .gradient-text {
    font-size: 2.2rem;
  }
  .solid-hero-text {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .hero h1, .hero .gradient-text {
    font-size: 1.5rem;
  }
  .hero-influencer {
    width: 200px;
    right: -10px;
    bottom: -40px;
  }
  .hero {
    margin-bottom: 20px;
  }
  .hero-content {
    padding: 1rem 0 1rem 2vw;
  }
  .logo {
    width: 120px;
    margin-bottom: 1rem;
  }
  .section {
    padding: 36px 0 24px 0;
  }
  .container {
    padding: 0 0.5rem;
  }
  .fitness-discovery h2,
  .fitness-earnings h2,
  .fitness-freedom h2,
  .fitness-og h2 {
    font-size: 1.2rem;
  }
  .gradient-text {
    font-size: 1.3rem;
  }
  .solid-hero-text {
    font-size: 1.3rem;
  }
  .email-input-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  .email-input-group input[type="email"] {
    width: 100%;
  }
  .hero-cta-btn {
    width: 100%;
    padding: 0.9rem 1rem;
  }
} 

/* Footer Styles */
.footer {
  background: transparent;
  padding: 30px 0;
  margin-top: 60px;
  text-align: center;
}

.footer p {
  color: #222;
  font-size: 0.9rem;
  margin: 0;
} 
