/* ZENKORO Launch Page - Specific Styles */

/* Launch-specific header styles */
.lead {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--yellow), var(--red) 50%, var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}


.user-count {
  font-size: 0.875rem;
  color: var(--green);
  margin-top: 1rem;
  opacity: 0;
  animation: fade-in 1s 2s forwards;
}

/* Launch-specific feature card styling */
.feature-card.highlighted {
  background: linear-gradient(135deg, rgba(0,255,136,.08), rgba(0,255,136,.02));
  border: 2px solid var(--border-active);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(255,215,94,.4);
  box-shadow: 0 25px 50px rgba(255,215,94,.2);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

/* CTA Section - Launch specific */
.cta-section {
  padding: 3rem 2rem;
  margin: 3rem 0 2rem;
  background: radial-gradient(ellipse at center, rgba(255,215,94,.08), transparent 70%);
  border-radius: 24px;
  position: relative;
  animation: fade-up 0.8s 0.4s var(--ease) both;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.cta-section::before { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 24px 0 0 0; }
.cta-section::after { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 24px 0; }

.cta-section:hover::before,
.cta-section:hover::after {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Launch-specific modal header style (flex layout) */
#waitlistModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Success Message - Launch specific */
.success-message {
  background: linear-gradient(135deg, rgba(0,255,136,.2), rgba(0,255,136,.1));
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  color: #fff;
  text-align: center;
  margin: 2rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,255,136,.3);
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.success-message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,136,.1), transparent 70%);
  animation: pulse-success 2s ease-in-out infinite;
}

.success-message::after {
  content: '✓';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0,255,136,.2);
  transform: rotate(15deg);
  animation: float-check 3s ease-in-out infinite;
}

/* Success icon animation */
@keyframes float-check {
  0%, 100% { 
    transform: rotate(15deg) translateY(0); 
    opacity: 0.2;
  }
  50% { 
    transform: rotate(15deg) translateY(-10px); 
    opacity: 0.3;
  }
}

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

/* Launch-specific animations */

/* Footer styling - Launch specific */
footer {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

footer a {
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

/* Support for visible class animation */
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s var(--ease);
}

/* Input validation states specific to launch forms */
input:valid { border-color: rgba(0,255,136,.5); }
input:invalid:not(:placeholder-shown) { border-color: rgba(255,99,99,.5); }

/* Responsive */
@media (max-width: 768px) {
  .cta-section { padding: 2rem 1.5rem; }
  footer { padding: 1.5rem 0; }
}

@media (max-width: 480px) {
  .subtitle { font-size: 0.875rem; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 1rem; }
}