/* Pet Boarding Onboarding — hero */

.tw-pet-boarding-page .tw-hero--pet {
  background: linear-gradient(165deg, #020208 0%, #000066 40%, #0d2847 80%, #1a3a5c 100%);
  overflow: hidden;
}

.tw-pet-boarding-page .tw-hero--pet .tw-reveal,
.tw-pet-boarding-page .tw-hero--pet .tw-hero-line {
  opacity: 1;
  transform: none;
}

.tw-pet-boarding-page .tw-hero--pet .tw-hero-line {
  animation: tw-pet-line-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.tw-pet-boarding-page .tw-hero--pet .tw-hero-line--1 { animation-delay: 0.1s; }
.tw-pet-boarding-page .tw-hero--pet .tw-hero-line--2 { animation-delay: 0.22s; }
.tw-pet-boarding-page .tw-hero--pet .tw-hero-line--3 { animation-delay: 0.34s; }

@keyframes tw-pet-line-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.tw-pet-hero-visual {
  position: absolute;
  right: clamp(4%, 8vw, 12%);
  top: 50%;
  transform: translateY(-50%);
  width: min(300px, 34vw);
  height: min(300px, 34vw);
  z-index: 2;
  pointer-events: none;
}

.tw-pet-hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(34, 160, 234, 0.4);
  animation: tw-pet-ring-pulse 3.5s ease-in-out infinite;
}

.tw-pet-hero-ring--2 {
  inset: 18%;
  border-color: rgba(123, 63, 255, 0.35);
  animation-delay: 0.9s;
}

.tw-pet-hero-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(34, 160, 234, 0.45), rgba(0, 0, 102, 0.15) 70%);
  box-shadow: 0 0 50px rgba(34, 160, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tw-pet-hero-core svg {
  width: 48%;
  height: 48%;
  color: rgba(255, 255, 255, 0.92);
}

@keyframes tw-pet-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.05); opacity: 1; }
}

.tw-pet-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.tw-pet-hero-badge {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(34, 160, 234, 0.35);
  border-radius: 999px;
}

.tw-pet-boarding-page .tw-hero--compact.tw-hero--pet {
  min-height: min(76vh, 800px);
  min-height: min(76dvh, 800px);
}

@media (max-width: 900px) {
  .tw-pet-hero-visual { opacity: 0.35; right: -6%; }
}

@media (max-width: 600px) {
  .tw-pet-hero-visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tw-pet-hero-ring,
  .tw-pet-boarding-page .tw-hero--pet .tw-hero-line { animation: none; }
}
