:root {
    --primary: #10b981;
    --secondary: #3b82f6;
    --dark: #1f2937;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 80px;
}
.feature-card {
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stats-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}
.code-block {
    background: #1f2937;
    color: #10b981;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
}
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}
.btn-primary:hover {
    background: #059669;
}
.coming-soon-card {
    opacity: 0.7;
    position: relative;
}
.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #78350f;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.btn-feedback {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-feedback:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: white;
}

.hero .display-3 {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#typed-title {
  display: block;
  line-height: 1.2;
  font-size: 2.7rem;   
  font-weight: 700;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}

/* Responsive font sizing for mobile */
@media (max-width: 768px) {
  .hero .display-3 {
    min-height: 100px;
    font-size: 2rem;
  }
  
  #typed-title {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 60px 0 50px;
  }
}

@media (max-width: 576px) {
  .hero .display-3 {
    min-height: 90px;
    font-size: 1.5rem;
  }
  
  #typed-title {
    font-size: 1.3rem;
  }
}
