html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #222;
  background: #fff9f9;
}

.bright-bg {
  background: 
    linear-gradient(to bottom right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)),
    url('assets/mountain-silhouette.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-content,
.problem-solution,
.referral-rewards-container {
  text-align: left !important;
}

.hero h1 {
  font-size: 2.6em;
  font-weight: 800;
  line-height: 1.2;
  color: #e91e63;
  margin-bottom: 0.5em;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 2em;
  line-height: 1.5;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1em;
}

.waitlist-form input {
  padding: 12px;
  font-size: 1em;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.waitlist-form button {
  padding: 12px 18px;
  font-size: 1em;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

.referral-note {
  color: #777;
  font-size: 0.9em;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5em;
}

.store-button img {
  height: 50px;
}

.footer {
  background: #fff;
  padding: 20px 0;
  font-size: 0.9em;
  color: #aaa;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #e91e63;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  top: 0;
  background: #e91e63;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  z-index: 1000;
}

.sticky-cta .cta-link {
  margin-left: 10px;
  padding: 6px 12px;
  background: white;
  color: #e91e63;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* Gamified Queue */
.gamified-queue {
  background: #fff0f5;
  border: 1px solid #e91e63;
  border-radius: 12px;
  padding: 20px;
  margin: 1.5em auto;
  max-width: 500px;
  text-align: center;
}

.gamified-queue .progress-bar {
  width: 100%;
  height: 10px;
  background: #ffe4ec;
  border-radius: 6px;
  margin: 10px 0;
}

.gamified-queue .progress {
  height: 100%;
  background: #e91e63;
  border-radius: 6px;
}

/* Countdown Banner */
.countdown-banner {
  background: #ff4081;
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
}
.section {
  padding: 40px 20px;
}

.signup-form {
  margin-top: 20px;
  margin-bottom: 20px;
}

.content-section {
  margin-bottom: 32px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-card {
  background: #ffffffd9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.hero-overlay {
  background: linear-gradient(to bottom right, rgba(233, 30, 99, 0.04), rgba(255, 255, 255, 0));
  padding: 60px 0;
}

@media (max-width: 600px) {
  .container {
    max-width: 90%;
    padding: 20px 10px;
    text-align: left;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .subtitle {
    font-size: 1em;
  }

  .hero-card {
    padding: 20px 15px;
  }

  .store-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .store-button img {
    height: 50px;
  }
  /* Improve Hero Spacing on Mobile */
  .hero-content {
    padding: 0 10px;
  }
}
/* Add Visual Markers for Problem–Solution */
.problem-solution p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e91e63;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.btn, .waitlist-form button {
  border-radius: 30px;
  padding: 14px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn.primary, .waitlist-form button {
  background-color: #e91e63;
  color: white;
  border: none;
}

.btn.primary:hover, .waitlist-form button:hover {
  background-color: #c2185b;
}

.btn.secondary {
  background-color: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  margin-bottom: 12px;
}

.btn.secondary:hover {
  background-color: #fce4ec;
  color: #c2185b;
  border-color: #c2185b;
}
.box-sizing, *::before, *::after {
  box-sizing: border-box;
}

/* Sticky CTA with gradient */
.sticky-cta {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #f06292, #e91e63);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  z-index: 1000;
}

/* Countdown banner consistent pink */
.countdown-banner {
  background: #e91e63;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1em;
  margin: 0 auto 2em;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.5);
}

/* Consistent box shadows for cards */
.hero-card, .beehiiv-signup {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive container padding */
@media (max-width: 600px) {
  .container {
    max-width: 90%;
    padding: 20px 10px;
    text-align: left;
  }
}

/* Button hover and transition for secondary */
.btn.secondary {
  background-color: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn.secondary:hover {
  background-color: #fce4ec;
  color: #c2185b;
  border-color: #c2185b;
}
/* Referral, Social Proof, Urgency, and Confirmation Toast */
.referral-info {
  margin-top: 1em;
  margin-bottom: 1em;
}

.social-proof,
.urgency-text {
  font-size: 0.95em;
  color: #555;
  margin: 0.3em 0;
}

.confirmation-toast {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 20px;
  text-align: center;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

.icon-star::before {
  content: "*";
  color: #fbc02d;
  margin-right: 6px;
}

.icon-rocket::before {
  content: ">";
  color: #e91e63;
  margin-right: 6px;
}
.step-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.step-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* About Page Enhancements */
.highlight-quote {
  font-size: 18px;
  font-weight: 500;
  color: #e91e63;
  background: #fff0f5;
  padding: 12px 16px;
  border-left: 4px solid #e91e63;
  margin: 24px 0;
}

.quote-highlight {
  font-style: italic;
  font-size: 17px;
  color: #555;
  background: #fafafa;
  border-left: 4px solid #e91e63;
  padding: 16px 20px;
  margin: 32px 0;
}

ul.principles {
  padding-left: 20px;
  margin-bottom: 24px;
}

ul.principles li {
  margin-bottom: 10px;
  line-height: 1.6;
}
/* Hero section content wrapper */
.hero-content {
  text-align: left;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 2.6em;
  color: #e91e63;
  margin-bottom: 0.5em;
}
.hero-content .subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 1.5em;
}

/* Problem-solution block */
.problem-solution {
  background-color: #fff0f5;
  border-left: 4px solid #e91e63;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
  border-radius: 6px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333;
  text-align: left !important;
}
.problem-solution p {
  margin: 0 0 10px;
}

/* Referral section clean layout */
.referral-rewards-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 32px;
  max-width: 720px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.referral-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.referral-step:last-child {
  margin-bottom: 0;
}
.badge {
  background-color: #e91e63;
  color: #fff;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.reward-details {
  font-size: 0.95rem;
  color: #333;
}
.reward-perk {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
}
/* Style Footer Social Links for Mobile */
.social-links a {
  background-color: #ffd7e5;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* Mobile Width Safety Padding */
@media (max-width: 380px) {
  .container, .hero-content {
    padding: 0 10px;
  }

  .referral-rewards-container {
    padding: 24px 16px;
  }
  .problem-solution {
    padding-left: 10px;
    padding-right: 10px;
  }
}