/**
 * Catalyst Custom Styles
 * Platform-specific styling
 */

/* Construction/Coming Soon Styles */
.construction-badge {
  background: #FFC107;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.construction-zone {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  margin: 1.5rem 0;
  position: relative;
}

.progress-fill {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #FF8C42);
  animation: loading 2s ease-in-out infinite;
  position: relative;
}

.progress-fill::after {
  content: "65%";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

@keyframes loading {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 1rem 0;
  font-weight: 600;
}

/* Platform stats */
.platform-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* App showcase */
.app-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.app-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.app-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.app-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.app-card p {
  margin-bottom: 1.5rem;
}

/* Research features */
.research-features {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.research-features .card {
  cursor: default;
}

.research-features .card:hover {
  transform: translateY(-2px);
}

/* Technology grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tech-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--divider);
  text-align: center;
}

.tech-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tech-item p {
  margin: 0;
  font-size: 0.9rem;
}

/* CTA Box */
.cta-box {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.cta-box h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .platform-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .app-showcase {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
}