@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0A0A;
  color: #FFFFFF;
  overflow-x: hidden;
}

.gradient-bg {
  background: radial-gradient(ellipse at top, #0066FF15 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, #00FF8810 0%, transparent 50%);
}

.text-gradient {
  background: linear-gradient(135deg, #0066FF 0%, #00FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.input-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 20px 24px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 18px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px #0066FF20;
}

.search-input::placeholder {
  color: #666;
}

.ai-badge {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #0066FF;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.feature-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #0066FF;
  transform: translateY(-4px);
  box-shadow: 0 10px 40px #0066FF20;
}

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

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

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

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.8s ease-out;
}

.animate-float {
  /* Removed floating animation - keeping badge static */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.btn-primary {
  background: #0066FF;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #0066FF30;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #0066FF;
  color: #0066FF;
}

.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #AAA;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

nav {
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: #AAA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.center-text {
  text-align: center;
}

.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .nav-links { display: none; }
}