.hero-ring {
  width: min(45vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 223, 35, 0.6);
  border-left-color: transparent;
  border-radius: 50%;
  position: relative;
  animation: spin 26s linear infinite;
}
.hero-ring:before,
.hero-ring:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(215, 223, 35, 0.18);
  border-radius: 50%;
  inset: 12%;
}
.hero-ring:after {
  inset: 25%;
}
.hero-ring .arrow {
  position: absolute;
  right: -7px;
  top: 18%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #d7df23;
  transform: rotate(-10deg);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.metric-num {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #0d0d0d;
  color: #d7df23;
  display: grid;
  place-items: center;
  font-weight: 800;
}
@media (prefers-reduced-motion: reduce) {
  .hero-ring {
    animation: none;
  }
}
.home-hero-title {
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.hero-visual {
  position: relative;
}
.hero-visual .media-frame {
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(215, 223, 35, 0.22);
  border-radius: 24px;
  z-index: 0;
}
.hero-visual > * {
  position: relative;
  z-index: 1;
}
.hero-float {
  position: absolute !important;
  left: -22px;
  bottom: 24px;
  background: #d7df23;
  color: #111;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  max-width: 190px;
}
.hero-float strong {
  display: block;
  font-size: 1.05rem;
}
.hero-float span {
  font-size: 0.72rem;
  line-height: 1.3;
  display: block;
  margin-top: 3px;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1023px) {
  .hero-visual .media-frame {
    height: 360px;
  }
  .home-hero-title {
    font-size: clamp(2.6rem, 8vw, 4.4rem);
  }
}
