/* Pre-Launch Section Styles */
.pre-launch-section {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pre-launch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pre-launch-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Launch Badge */
.launch-badge {
  display: inline-block;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.badge-text {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Launch Title */
.launch-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.launch-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 80px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  color: #fff;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* Early Bird Offers */
.early-bird-offers {
  margin: 60px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.offer-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 32px 24px;
  color: var(--ink);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.offer-card.highlight::before {
  content: '⭐ MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.offer-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.offer-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}

.price {
  margin: 16px 0 24px;
}

.original-price {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.offer-benefits li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.offer-benefits li:last-child {
  border-bottom: none;
}

.offer-card .btn {
  width: 100%;
  margin-top: 24px;
}

/* Launch CTA */
.launch-cta {
  margin-top: 60px;
  padding: 0 20px;
}

.urgency-text {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 500;
}

.urgency-text strong {
  color: var(--accent);
}

.progress-bar {
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 20px auto 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #fbbf24 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.btn.large {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
}

/* Early Bird Hero Button */
.btn.early-bird-hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: earlyBirdPulse 3s infinite;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.btn.early-bird-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #f59e0b 0%, var(--accent) 100%);
}

.btn.early-bird-hero .btn-icon {
  font-size: 1.1em;
  animation: rocketBounce 2s infinite;
}

.btn.early-bird-hero .btn-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 4px;
}

@keyframes earlyBirdPulse {
  0%, 100% { 
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  }
  50% { 
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.6);
  }
}

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pre-launch-section {
    padding: 60px 0;
  }
  
  .countdown-timer {
    gap: 16px;
  }
  
  .countdown-item {
    padding: 16px 12px;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .offer-card.highlight {
    transform: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn.large {
    width: auto;
    max-width: 280px;
    min-width: 200px;
  }
  
  .btn.early-bird-hero {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .btn.early-bird-hero .btn-badge {
    padding: 3px 6px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    gap: 12px;
  }
  
  .countdown-item {
    padding: 12px 8px;
    min-width: 60px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .offer-card {
    padding: 24px 16px;
  }
}
