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

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #F8FAFC;
}

.font-space {
  font-family: 'Space Grotesk', sans-serif;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 58, 138, 0.05);
}

.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 138, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-radius: 1rem;
}

.btn-blue {
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-blue:hover {
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 100%);
}

.btn-outline-blue {
  background: transparent;
  color: #1E3A8A;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 58, 138, 0.25);
}

.btn-outline-blue:hover {
  background: rgba(30, 58, 138, 0.05);
  transform: translateY(-2px);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: float 14s infinite ease-in-out alternate;
}

.orb-1 { background: #DBEAFE; width: 450px; height: 450px; top: -10%; left: -5%; opacity: 0.6; }
.orb-2 { background: #E0E7FF; width: 700px; height: 700px; bottom: -15%; right: -10%; opacity: 0.5; animation-delay: -5s; }
.orb-3 { background: #EFF6FF; width: 350px; height: 350px; top: 45%; left: 45%; opacity: 0.7; animation-duration: 18s; }

@keyframes float {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.05); }
  100% { transform: translate(-40px, 40px) scale(0.95); }
}

.gs-reveal {
  visibility: hidden;
}
