.hero {
  height: 100vh;
  padding: 0 20px;
  background: radial-gradient(circle at 30% 30%, #1a002f, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* */
.hero-content {
   max-width: 750px;
  margin: 0 auto;
  z-index: 2;

  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* badge */
.badge {
  background: rgba(255,255,255,0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}

/* title */
h1 {
  font-size: 56px;
  margin: 25px 0;
  line-height: 1.2;
}

/* gradient text */
h1 span {
  background: linear-gradient(90deg, #ff6a00, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle */
.hero p {
  font-size: 18px;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.primary {
  background: linear-gradient(90deg, #ff6a00, #9b00ff);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.primary:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.6);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 30px;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.secondary:hover {
  background: white;
  color: black;
}

/* glow */
.glow {
  position: absolute;
  width: 350px;
  height: 350px;
  filter: blur(140px);
  transition: transform 0.15s ease;
}

.glow.left {
  background: #ff6a00;
  left: -120px;
  bottom: -120px;
}

.glow.right {
  background: #9b00ff;
  right: -120px;
  top: -120px;
}

/* background dots */
.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveBg 40s linear infinite;
  top: -50%;
  left: -50%;
}

@keyframes moveBg {
  from {
    transform: translate(0,0);
  }
  to {
    transform: translate(200px,200px);
  }
}

#typing {
  background: linear-gradient(90deg, #ff6a00, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-right: 2px solid #fff;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}




/* ===== POPUP BACKGROUND ===== */
.social-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

/* show */
.social-popup.show {
  opacity: 1;
  visibility: visible;
}

/* ===== CONTENT ===== */
.popup-content {
  background: rgba(10, 10, 20, 0.95);
    padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;

  transform: scale(0.8);
  transition: 0.4s;

  backdrop-filter: blur(20px);
}

/* animation */
.social-popup.show .popup-content {
  transform: scale(1);
}

/* close */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

/* title */
.popup-content h3 {
  margin-bottom: 20px;
}

/* links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px;
  border-radius: 20px;

  background: linear-gradient(90deg, #ff6a00, #9b00ff);

  text-decoration: none;
  color: white;

  transition: 0.3s;
}

.social-links a:hover {
  transform: scale(1.07);
}

.social-links i {
  font-size: 18px;
}