/* Deploy-ready static site for Cloudflare Pages */
body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.App {
  min-height: 100vh;
}

/* Coming Soon Page */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.background-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

.coming-soon-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease 0.2s backwards;
}

.badge-icon {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
  }
  50% { 
    transform: scale(1.2) rotate(180deg); 
  }
}

.brand-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  animation: fadeIn 0.8s ease 0.3s backwards;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease 0.4s backwards;
}

.coming-soon-badge span {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
  }
}

.tagline {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
  animation: fadeIn 0.8s ease 0.5s backwards;
}

.description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 3rem;
  animation: fadeIn 0.8s ease 0.6s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-info {
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s ease 0.7s backwards;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  color: #2563eb;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.target-audience {
  padding-top: 2rem;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  animation: fadeIn 0.8s ease 0.8s backwards;
}

.target-audience p {
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-content {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }

  .brand-title {
    font-size: 2.5rem;
  }

  .coming-soon-badge span {
    font-size: 1.25rem;
    padding: 0.625rem 1.5rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .circle-1 {
    width: 300px;
    height: 300px;
  }

  .circle-2 {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 1.5rem;
  }

  .coming-soon-content {
    padding: 2rem 1.5rem;
  }

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

  .coming-soon-badge span {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .description {
    font-size: 0.9375rem;
  }

  .contact-item {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .target-audience p {
    font-size: 0.875rem;
  }
}

/* Hide Emergent Badge */
[class*="emergent"],
[id*="emergent"],
a[href*="emergent"],
div[style*="Made with"],
.watermark,
iframe {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}