/* ── HERO ── */
#hero {
  min-height: 95vh;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/satellite-bg.jpg') no-repeat center center/cover;
  filter: brightness(0.7);
  z-index: 0;
  animation: bgMove 30s linear infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(11,61,145,0.7),
    rgba(0,128,128,0.6),
    rgba(10,10,10,0.8)
  );
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}

.hero-image {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image img {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #3AAFA9, #6FFFE9, #C5FFF8);
  border: 5px solid transparent;
  background-clip: padding-box, border-box;
  object-fit: cover;
  box-shadow:
    0 0 65px rgba(8,8,8,0.6),
    0 10px 30px rgba(0,0,0,0.6);
}

.social-links {
  display: flex;
  gap: 30px;
  margin-top: -40px;
}

.social-links a img {
  width: 60px;
  height: 60px;
  transition: 0.3s;
}

.social-links a img:hover {
  transform: scale(1.2);
  filter: none;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-name {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.hero {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #3AAFA9, #6FFFE9, #C5FFF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#heroParticles {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-image { margin-top: 20px; }
  .hero-name { font-size: 2.5rem; white-space: normal; }
  .hero { font-size: 1.3rem; }
}