.ind1,
.r1,
.a1 {
  position: relative;
  overflow: hidden;
}

.ind1::before {
  content: "";
  position: absolute;
  inset: -45%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 114, 182, 0.24), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(219, 39, 119, 0.16), transparent 40%),
    radial-gradient(circle at 50% 88%, rgba(255, 232, 243, 0.95), transparent 58%);
}

@media only screen and (max-width: 1024px) {
  .ind1::before {
    inset: 0;
  }
}

.ind1 > *,
.r1 > *,
.a1 > * {
  position: relative;
  z-index: 1;
}

@keyframes xj-shimmer {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.82;
  }
  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes xj-logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--xj-primary), var(--xj-accent), var(--xj-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.ind1-a4,
.contact-box,
.r1-b2a,
.p1-2,
.p1-4,
.p1-5,
.p1-6,
.p1-7 {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ind1-a4,
.contact-box,
.r1-b2a {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ind1-a4:hover,
.contact-box:hover,
.r1-b2a:hover {
  box-shadow: 0 18px 42px rgba(157, 23, 77, 0.18) !important;
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: no-preference) {
  .site-logo {
    animation: xj-logo-float 4.8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
