.site-nudge {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: min(360px, calc(100vw - 44px));
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 15px 16px 14px;
  box-shadow: 0 30px 70px rgba(16,18,22,.24), 0 4px 16px rgba(16,18,22,.10);
  opacity: 0; transform: translateY(18px) scale(.97); pointer-events: none;
  transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
}
.site-nudge.on { opacity: 1; transform: none; pointer-events: auto; }
.site-nudge .coach-head { display: flex; align-items: center; gap: 7px; }
.site-nudge .coach-head svg { width: 15px; height: 15px; }
.site-nudge .coach-head strong { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.site-nudge .coach-head span { font-size: 11px; color: var(--faint); }
.site-nudge p { margin-top: 9px; font-size: 14px; line-height: 1.5; color: #3d4757; }
.site-nudge .coach-btns { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.site-nudge button { font-family: inherit; border: 0; cursor: pointer; }
#nudgeYes {
  background: var(--brand); color: #fff; font-size: 13px; font-weight: 650;
  border-radius: 999px; padding: 8px 18px;
  transition: background .15s, transform .15s;
}
#nudgeYes:hover { background: var(--brand-deep); transform: translateY(-1px); }
#nudgeNo { background: none; color: var(--faint); font-size: 13px; }
#nudgeNo:hover { color: var(--soft); }

/* the walkover: fixed layer that frames the talk button */
.guide { position: fixed; inset: 0; z-index: 290; pointer-events: none; }
.guide .cur { position: fixed; }

/* the coach cursor (used by the walkover) */
.cur { position: absolute; left: 0; top: 0; opacity: 0; transition: opacity .4s ease; will-change: transform; }
.cur svg:first-child { width: 20px; height: 30px; display: block; }
.cur.coach svg:first-child path { fill: var(--brand); stroke: #fff; stroke-width: 2.4; }
.cur { filter: drop-shadow(0 3px 7px rgba(16,32,56,.28)); }
.cur .tag {
  position: absolute; left: 15px; top: 26px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 650; letter-spacing: -.01em;
  padding: 3px 9px; border-radius: 999px;
}
.cur.coach .tag { background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(42,120,214,.35); }
.cur.coach .tag svg { width: 10px; height: 10px; }

.pill.pressed { transform: scale(.955); box-shadow: 0 4px 14px rgba(42,120,214,.30); }
.guide-bracket {
  position: fixed; border: 2.5px solid var(--brand-bright); border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(77,147,236,.16), 0 0 0 9999px rgba(6,8,12,.5);
  opacity: 0; transform: scale(1.1);
  transition: opacity .35s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.guide-bracket.on { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .site-nudge { transition: none; }
}
