/* First-run tutorial: a ring around what matters, and one line about why. */

.coach {
  position: fixed;
  inset: 0;
  z-index: 58;
  /* The overlay must never swallow the click it is asking for. */
  pointer-events: none;
}

.coach-ring {
  position: absolute;
  border: 2px dashed var(--amber);
  box-shadow: 0 0 0 9999px rgba(5, 4, 12, .55), 0 0 22px rgba(255, 194, 61, .35);
  animation: coachpulse 1.1s steps(2) infinite;
}

@keyframes coachpulse {
  50% { border-color: var(--lime); }
}

.coach-note {
  position: absolute;
  pointer-events: auto;
  background: var(--screen);
  border: 2px solid var(--amber);
  box-shadow: 0 4px 0 #000;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coach-note b {
  font-family: var(--px);
  font-size: 9px;
  font-weight: normal;
  letter-spacing: 1px;
  color: var(--amber);
}

.coach-note p {
  margin: 0;
  font-size: 19px;
  line-height: 1.05;
  color: var(--ink);
}

.coach-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coach-step {
  font-family: var(--px);
  font-size: 8px;
  color: var(--dim);
}

@media (prefers-reduced-motion: reduce) {
  .coach-ring { animation: none; }
}
