body {
  font-family: system-ui, sans-serif;
}

h1, h2 {
  font-weight: 700;
}

footer {
  background-color: #f8f9fa;
}

/* Coming Soon Page Styles */
.coming-soon-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 100vh;
}

.coming-soon-page .logo h1 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto;
}

.email-signup .form-control {
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.email-signup .btn {
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h5 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 0.95rem;
}

.coming-soon-page footer {
  background: transparent;
  color: rgba(255,255,255,0.7);
}

/* Typewriter effect styles */
#doc-types, #integrations {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  min-height: 5rem;
  width: 400px;
  position: relative;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

#doc-types {
  color: #FF6B35;
  background: rgba(255,107,53,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,107,53,0.4);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  box-shadow: 0 8px 32px rgba(255,107,53,0.2);
}

#integrations {
  color: #00D4AA;
  background: rgba(0,212,170,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0,212,170,0.4);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  box-shadow: 0 8px 32px rgba(0,212,170,0.2);
}

#doc-types::after {
  content: '|';
  animation: blink 1s infinite;
  color: #FF6B35;
  font-weight: 300;
}

#integrations::after {
  content: '|';
  animation: blink 1s infinite;
  color: #00D4AA;
  font-weight: 300;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* "To" text styling */
.to-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFD93D;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Responsive adjustments for typewriter */
@media (max-width: 768px) {
  #doc-types, #integrations {
    font-size: 1.8rem;
    min-height: 3.5rem;
    width: 300px;
  }
  
  .to-text {
    font-size: 1.5rem;
  }
}
