/* ============================================================
   Together — Pricing page animations only
   Scoped to .page-pricing — does not alter layout/spacing.
   ============================================================ */

.page-pricing .pricing-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-pricing .pricing-hero__inner {
  position: relative;
  z-index: 5;
}

.page-pricing .pricing-hero__title-line {
  display: block;
}

.page-pricing .pricing-hero .core-glow {
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pricingGlowFloat 8s ease-in-out infinite;
}

@keyframes pricingGlowFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.16; }
  50% { transform: translate(-47%, -54%) scale(1.12); opacity: 0.24; }
}

.page-pricing .pricing-hero .galaxy-container {
  z-index: 0;
  animation: pricingGalaxyDrift 22s ease-in-out infinite alternate;
}

@keyframes pricingGalaxyDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(1.5%, -2%) scale(1.04); }
}

.page-pricing .pricing-hero .star-layer {
  animation-duration: 38s;
  opacity: 0.65;
}

.page-pricing .pricing-hero .star-layer.warp {
  animation-duration: 7s;
  opacity: 0.38;
}

.page-pricing .pricing-hero__float-pixels {
  position: absolute;
  inset: -6%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 88% 72% at 50% 38%, #000 16%, transparent 74%);
}

.page-pricing .hero__float-pixel-wrap {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.page-pricing .hero__float-pixel-repel {
  display: block;
  pointer-events: none;
  will-change: transform;
}

.page-pricing .hero__float-pixel {
  position: relative;
  display: block;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(26, 20, 40, 0.1);
  pointer-events: none;
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
}

.page-pricing .hero__float-pixel--soft {
  filter: blur(1.5px);
  border-radius: 4px;
}

.page-pricing .hero__float-pixel--tiny {
  border-radius: 2px;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .page-pricing .pricing-hero .star-layer,
  .page-pricing .pricing-hero .galaxy-container,
  .page-pricing .pricing-hero .core-glow {
    animation: none !important;
  }

  .page-pricing .pricing-hero__float-pixels {
    display: none;
  }
}
