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

body {
  background: #04152f;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(0,0,0,0.68),
      rgba(2,12,27,0.94)
    ),
    url('./hero2.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.background-overlay {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(56,122,255,0.12), transparent 70%);
  filter: blur(40px);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 40px;
  animation: fadeUp 1.2s ease;
}

.logo {
  width: min(760px, 95vw);
  margin-bottom: 10px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.45));
}

.subtitle {
  font-size: 28px;
  margin-bottom: 24px;
  color: #d6e4ff;
  font-weight: 300;
  letter-spacing: 1px;
}

.description {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.8;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.buttons a {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.primary {
  background: linear-gradient(135deg, #2f6fff, #74a5ff);
  color: white;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61,125,255,0.35);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(8px);
}

.secondary:hover {
  background: rgba(255,255,255,0.08);
}

.coming-soon {
  margin-top: 50px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

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

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 22px;
  }

  .description {
    font-size: 16px;
  }

  .logo {
    width: 98vw;
  }
}
