/* Home page specific styles */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.hero > div {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
}

.brand {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 20px;
}

.vanilla {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00d9ff 0%, #0099cc 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 40px rgba(0, 217, 255, 0.2);
  animation: slideIn 0.8s ease 0.1s backwards;
}

.essence {
  position: relative;
  font-family: 'Inter', serif;
  font-style: italic;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 700;
  color: var(--accent-secondary);
  text-shadow: 0 8px 40px rgba(255, 0, 110, 0.3);
  letter-spacing: -0.02em;
  display: block;
  margin-top: 10px;
  animation: slideIn 0.8s ease 0.2s backwards;
}

.divider {
  width: min(700px, 92%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 30px auto;
  animation: slideIn 0.8s ease 0.3s backwards;
}

.tagline {
  width: min(700px, 92%);
  margin: 0 auto 30px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  animation: slideIn 0.8s ease 0.4s backwards;
}

.counter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 40px;
  flex-wrap: wrap;
  animation: slideIn 0.8s ease 0.5s backwards;
}

.counter.live {
  opacity: 0.9;
}

.slot {
  text-align: center;
}

.num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  background: var(--glass-medium);
  border: 1.5px solid var(--accent);
  padding: 12px 20px;
  border-radius: 14px;
  min-width: 90px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.num:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.4);
  border-color: var(--accent-secondary);
}

.lbl {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
}

.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideIn 0.8s ease 0.6s backwards;
}

.cta .btn {
  animation: glow 3s ease-in-out infinite;
}

.page-home footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 50;
}

/* Launch Complete Message */
.launch-complete {
  text-align: center;
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 700px;
  background: var(--glass-medium);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
  animation: slideIn 0.6s ease;
}

.launch-title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #00d9ff 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.launch-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.launch-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .counter {
    gap: 8px;
  }

  .num {
    min-width: 70px;
    padding: 10px 14px;
  }

  .cta {
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}
