/**
 * Shared PulseDirect / Red Pulse EKG boot treatment.
 * Markup is injected by pulse-ekg.js into .pd-ekg containers.
 */
.rp-boot,
.pd-boot {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rp-boot-status,
.startup-status {
  margin: 8px 0 6px;
  font-family: var(--font-display, 'Rajdhani', sans-serif);
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary, #F5F5F7);
  text-align: center;
}

.rp-boot-sub,
.startup-sub {
  margin: 0;
  font-size: 14px;
  color: var(--text-tertiary, #A8A8BC);
  text-align: center;
}

.pd-ekg {
  width: 280px;
  max-width: 72%;
  height: 36px;
  margin: 14px auto 8px;
  position: relative;
}

.pd-ekg__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.45));
}

.pd-ekg__path {
  fill: none;
  stroke: var(--red-500, #ef4444);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-ekg__path--pulse {
  opacity: 1;
}

.pd-ekg__path--pulse.pd-ekg__path--animating {
  will-change: stroke-dashoffset;
}
