body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, #e6f0ff 0%, transparent 40%),
              radial-gradient(1200px 600px at 90% -20%, #f1e9ff 0%, transparent 40%),
              #ffffff;
  color: #0f172a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}


/* Navbar */
.navbar {
  padding: 1.5rem 0;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero p {
  font-size: 1.15rem;
  color: #475569;
  max-width: 520px;
}

/* Search Card */
.search-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.search-input {
  border: none;
  font-size: 1rem;
  padding: 0.9rem 1rem;
}

.search-input:focus {
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border: none;
  border-radius: 14px;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
}

.btn-outline-secondary {
  border-radius: 14px;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
}

/* Floating SVG placeholders */
.floating-shape {
  position: absolute;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  top: 15%;
  left: 5%;
  width: 120px;
  animation-delay: 0s;
}

.shape-2 {
  bottom: 20%;
  right: 8%;
  width: 160px;
  animation-delay: 2s;
}

.shape-3 {
  top: 25%;
  right: 20%;
  width: 90px;
  animation-delay: 4s;
}

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

/* Trust Section */
.trust {
  padding: 4rem 0 2rem;
  color: #64748b;
  font-size: 0.95rem;
}

.trust span {
  font-weight: 600;
  margin: 0 1rem;
}
#hero-text {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: #4f46e5;
  margin-left: 4px;
  animation: blink 1s infinite;
}

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