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

html,
body {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(103, 95, 255, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 245, 255, 0.18), transparent 55%),
    radial-gradient(circle at top, #151827 0, #050509 55%, #02030a 100%);
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

.single-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  overflow: hidden;
}

.single-hero__layer {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 0 0, rgba(0, 245, 255, 0.2), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 78, 205, 0.2), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: blur(6px);
  animation: slow-shift 26s ease-in-out infinite alternate;
}

.single-hero__layer--two {
  opacity: 0.25;
  transform: scale(1.1);
  animation-duration: 34s;
  animation-direction: alternate-reverse;
}

.single-hero__content {
  position: relative;
  max-width: 720px;
  width: 100%;
  padding: 0 8px;
  text-align: left;
  transform: translateY(10px);
  opacity: 0;
  animation: fade-up 700ms ease forwards;
}

.single-hero__label {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #a6a9cd;
  margin-bottom: 12px;
}

.single-hero__name {
  font-size: clamp(2.6rem, 5.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.single-hero__line {
  font-size: clamp(0.96rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #c5c7e5;
}

.single-hero__world-img {
  position: absolute;
  inset: 10% 8%;
  width: 84%;
  height: auto;
  object-fit: contain;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  filter: saturate(0) contrast(1.1) brightness(1.1);
  pointer-events: none;
  transform: scale(1.02);
  animation: world-glow 18s ease-in-out infinite;
}

.single-hero__globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  mix-blend-mode: screen;
  filter: saturate(0.8) contrast(1.05) brightness(0.9);
  pointer-events: none;
}

.single-hero__orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  border-top: 1px solid rgba(0, 245, 255, 0.4);
  border-right: 1px solid rgba(255, 78, 205, 0.3);
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -60%);
  opacity: 0.45;
  mix-blend-mode: screen;
  filter: blur(0.4px);
  animation: orbit-spin 26s linear infinite;
  pointer-events: none;
}

@keyframes orbit-spin {
  0% {
    transform: translate(-45%, -60%) rotate(0deg);
  }
  50% {
    transform: translate(-48%, -62%) rotate(180deg);
  }
  100% {
    transform: translate(-45%, -60%) rotate(360deg);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-shift {
  0% {
    transform: translate3d(-20px, 10px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(20px, -10px, 0) scale(1.12);
  }
}

@keyframes world-glow {
  0% {
    opacity: 0.16;
    filter: saturate(0) contrast(1.05) brightness(1.02);
  }
  40% {
    opacity: 0.3;
    filter: saturate(1.1) contrast(1.15) brightness(1.12);
  }
  70% {
    opacity: 0.22;
    filter: saturate(0.5) contrast(1.05) brightness(1.05);
  }
  100% {
    opacity: 0.18;
    filter: saturate(0) contrast(1.05) brightness(1.02);
  }
}

@media (max-width: 600px) {
  .single-hero {
    padding: 20px 16px;
  }

  .single-hero__content {
    padding: 0 4px;
  }

  .single-hero__name {
    letter-spacing: 0.16em;
  }

  .single-hero__world-img {
    inset: 18% -10%;
    width: 120%;
    opacity: 0.16;
  }

  .single-hero__orbit {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -55%);
  }
}


