.hero-visual {
  display: grid;
  place-items: center;
}

.orb-shell {
  position: relative;
  width: min(460px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.orb-shell::before {
  position: absolute;
  inset: 7%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(167, 139, 250, 0.28), transparent 38%),
    radial-gradient(circle at 70% 66%, rgba(56, 189, 248, 0.24), transparent 42%);
  filter: blur(24px);
  content: "";
}

.orb-shell::after {
  position: absolute;
  inset: 14%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(56, 189, 248, 0.18), rgba(124, 92, 219, 0.5), rgba(167, 139, 250, 0.18), rgba(56, 189, 248, 0.18));
  filter: blur(18px);
  opacity: 0.8;
  content: "";
  animation: orb-pulse 5.8s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orb-ring-one {
  inset: 0;
  border-top-color: rgba(167, 139, 250, 0.5);
  transform: rotate(-14deg) scaleY(0.86);
}

.orb-ring-two {
  inset: 10%;
  border-right-color: rgba(110, 231, 183, 0.42);
  transform: rotate(28deg) scaleY(0.92);
}

.logo {
  width: min(380px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 38px rgba(91, 111, 232, 0.34));
  animation: hero-orb-in 760ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.evoulve_circle {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #050006;
  box-shadow:
    inset 0 0 68px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(56, 189, 248, 0.16),
    0 0 96px rgba(124, 92, 219, 0.2);
}

:root[data-theme="light"] .evoulve_circle {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow:
    inset 0 0 64px rgba(0, 0, 0, 0.28),
    0 20px 80px rgba(37, 99, 235, 0.18),
    0 0 70px rgba(124, 92, 219, 0.16);
}

.overlay,
.show {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show {
  background-color: rgba(255, 70, 1, 0);
  opacity: 1;
}

.color {
  background: #000;
  mix-blend-mode: color;
  opacity: 0.4;
}

.saturate {
  background: #001670;
  mix-blend-mode: lighten;
  opacity: 1;
}

.light {
  box-shadow: inset -200px 20px 80px #ffdb00;
  mix-blend-mode: overlay;
  opacity: 1;
}

.reflect {
  box-shadow: inset -20px 20px 60px #fff;
  mix-blend-mode: overlay;
  opacity: 0;
}

.orb-caption {
  position: absolute;
  right: 3%;
  bottom: 11%;
  max-width: 210px;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: var(--surface-glass);
  box-shadow: var(--shadow-1);
  padding: 12px 14px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.orb-caption span {
  display: block;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orb-caption strong {
  display: block;
  margin-top: 4px;
  color: var(--text-1);
  font-size: 0.82rem;
  line-height: 1.25;
}

@keyframes hero-orb-in {
  from {
    transform: translateY(24px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes orb-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.95;
  }
}

@media (max-width: 1080px) {
  .orb-shell {
    width: min(400px, 78vw);
  }

  .logo {
    width: min(330px, 66vw);
  }
}

@media (max-width: 680px) {
  .orb-shell {
    width: min(310px, 82vw);
  }

  .logo {
    width: min(250px, 68vw);
  }

  .orb-caption {
    right: 0;
    bottom: 4%;
    max-width: 176px;
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .orb-shell::after {
    animation: none;
  }
}
