* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.badge {
  background: rgba(253, 184, 5, 0.2);
  border: 2px solid #FCB804;
  color: #FCB804;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.tagline {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s backwards;
  max-width: 800px;
  line-height: 1.4;
}

.subtitle {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.3s backwards;
  max-width: 600px;
}

.highlight {
  color: #FCB804;
  font-weight: 700;
}

.countdown {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 3rem;
  animation: fadeInUp 1s ease 0.4s backwards;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-item {
  text-align: center;
  background: rgba(253, 184, 5, 0.1);
  border: 2px solid #FCB804;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  min-width: 100px;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 800;
  color: #FCB804;
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  width: 100%;
  margin: 0 auto 1.5rem;
  animation: fadeInUp 1s ease 0.5s backwards;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1.2rem 1.8rem;
  border: 2px solid #FCB804;
  background: rgba(253, 184, 5, 0.1);
  color: #FFFFFF;
  font-size: 1.1rem;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
  background: rgba(253, 184, 5, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 184, 5, 0.3);
}

.cta-button {
  padding: 1.2rem 3rem;
  background: #FCB804;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(253, 184, 5, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(253, 184, 5, 0.6);
}

.cta-button:active {
  transform: translateY(-1px);
}

.success-message {
  display: none;
  background: rgba(253, 184, 5, 0.2);
  border: 2px solid #FCB804;
  color: #FCB804;
  padding: 1rem 2rem;
  border-radius: 15px;
  margin-top: 1rem;
  animation: fadeInUp 0.5s ease;
  font-weight: 600;
}

.bonus-text {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 1rem;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.stats {
  display: flex;
  gap: 3rem;
  margin: 4rem 0 2rem;
  animation: fadeInUp 1s ease 0.7s backwards;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #FCB804;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.problem-section {
  padding: 5rem 2rem;
  background: #0a0a0a;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FCB804;
  font-weight: 800;
}

.problem-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.9;
  opacity: 0.9;
}

.features {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(253, 184, 5, 0.05);
  border: 2px solid rgba(253, 184, 5, 0.2);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(253, 184, 5, 0.1);
  border-color: #FCB804;
  box-shadow: 0 20px 40px rgba(253, 184, 5, 0.2);
}

.feature-title {
  font-size: 1.5rem;
  color: #FCB804;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-description {
  opacity: 0.85;
  line-height: 1.7;
  font-size: 1.05rem;
}

.social-proof {
  background: #FCB804;
  color: #000000;
  padding: 4rem 2rem;
  text-align: center;
}

.social-proof-text {
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: #000000;
  opacity: 0.7;
  font-size: 0.9rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .logo {
    height: 80px;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    padding: 1rem 1.5rem;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .problem-text {
    font-size: 1.1rem;
  }

  .email-form {
    flex-direction: column;
  }

  .email-input {
    min-width: 100%;
  }
}