/* M8.2 final pre-lock gate: Guide CTA -> builder target emphasis.
 * Presentation only. Does not open or execute any tool. */
.ptm8-guide-target-highlight{
  outline:3px solid #2563eb !important;
  outline-offset:3px !important;
  box-shadow:
    0 0 0 5px rgba(37,99,235,.14),
    0 10px 28px rgba(37,99,235,.12) !important;
  position:relative;
  z-index:2;
}

.ptm8-guide-target-pulse{
  animation:ptm8-guide-target-pulse 1.35s ease-out 1;
}

@keyframes ptm8-guide-target-pulse{
  0%{
    outline-color:#2563eb;
    box-shadow:
      0 0 0 2px rgba(37,99,235,.34),
      0 8px 22px rgba(37,99,235,.16);
    transform:scale(1);
  }
  45%{
    outline-color:#3b82f6;
    box-shadow:
      0 0 0 8px rgba(59,130,246,.18),
      0 12px 34px rgba(37,99,235,.18);
    transform:scale(1.012);
  }
  100%{
    outline-color:#2563eb;
    box-shadow:
      0 0 0 5px rgba(37,99,235,.14),
      0 10px 28px rgba(37,99,235,.12);
    transform:scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .ptm8-guide-target-pulse{
    animation:none;
  }
}
