body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.background-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #dbeafe, transparent 60%), radial-gradient(circle at 70% 60%, #c7d2fe, transparent 50%);
  filter: blur(100px);
  z-index: 0;
}

.hero-glass {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: fadeUp 0.8s ease-out;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -1px;
  color: transparent;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title span {
  background: linear-gradient(to right, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.85;
}

.hero-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-button {
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-button.primary {
  background-color: #1d4ed8;
  color: white;
}

.hero-button.primary:hover {
  background-color: #0036b1;
  transform: translateY(-2px);
}

.hero-button.secondary {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  background-color: transparent;
}

.hero-button.secondary:hover {
  background-color: rgba(29, 78, 216, 0.1);
  transform: translateY(-2px);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.hero-button.arrow span {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.hero-button.arrow:hover span {
  transform: translateX(3px);
}

.footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  color: #888;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  opacity: 0.8;
}
