/* ==================================================================== */
/* PRODUCTION WIDGET KIT, class names + visual specs lifted directly    */
/* from /repositories/support-web-component:                              */
/*   src/agent/agent-cursor.ts        → .agent-cursor + ring/halo/flash  */
/*   src/agent/agent-mode-ui.ts       → .blar-agent-status-card + bubble */
/*   src/config/styles.ts             → .support-bubble + chat-window    */
/* Identical visuals to what end-users see in the live widget.            */
/* ==================================================================== */

/* === Closed widget bubble (live: .support-bubble in styles.ts) ======= */
.support-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(69, 147, 248, 0.30);
  display: grid;
  place-items: center;
  border: none;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(69, 147, 248, 0.40);
}
.support-bubble svg,
.support-bubble img {
  width: 28px;
  height: 28px;
}

/* === Open chat window (live: .support-chat-window in styles.ts) ====== */
.support-chat-window {
  width: 420px;
  max-width: 100%;
  height: 600px;
  max-height: 100%;
  background: #F7F7F7;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.support-chat-header {
  background: var(--accent);
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  flex-shrink: 0;
}
.support-header-left,
.support-header-right { display: flex; align-items: center; gap: 8px; }
.support-header-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
  text-align: center;
}
.support-entity-action {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  opacity: 0.7;
}
.support-entity-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  max-width: min(220px, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #F7F7F7;
}
.support-message { margin-bottom: 16px; }
.support-message.agent { display: flex; gap: 10px; }
.support-message.user {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px;
  margin-right: 8px;
}
.support-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.support-avatar svg,
.support-avatar img { width: 18px; height: 18px; }
.support-message-content {
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #1F2937;
  word-wrap: break-word;
}
.support-message.user .support-message-content {
  background: var(--accent);
  color: #FFFFFF;
}
.support-input-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 16px;
  background: #F7F7F7;
  border-top: 1px solid #E5E7EB;
  flex-shrink: 0;
}
.support-chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  font-size: 14px;
  background: #FFFFFF;
  color: #111827;
  height: 40px;
  min-height: 40px;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.support-chat-input::placeholder,
.support-chat-input.placeholder { color: #9ca3af; }
.support-send-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}
.support-send-btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ==================================================================== */
/* AGENT CURSOR, live: .agent-cursor in agent-cursor.ts                 */
/* ==================================================================== */
@keyframes agentCursorClickRing {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.95; border-width: 3px; }
  70%  { opacity: 0.4; border-width: 2px; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; border-width: 1px; }
}
@keyframes agentCursorClickPress {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.62); }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes agentCursorClickFlash {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
.agent-cursor {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 1px;
  pointer-events: none;
  z-index: 30;
  will-change: transform;
}
.agent-cursor-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(69, 147, 248, 0.35) 0%,
    rgba(69, 147, 248, 0.15) 50%,
    rgba(69, 147, 248, 0) 75%
  );
}
.agent-cursor-arrow {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px;
  height: 22px;
  max-width: none;
  margin: -11px 0 0 -7px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  transform-origin: center;
}
.agent-cursor-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 24px; height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(69, 147, 248, 0.85);
  border-radius: 50%;
  opacity: 0;
}
.agent-cursor-flash {
  position: absolute;
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(69, 147, 248, 0.6) 0%,
    rgba(69, 147, 248, 0.2) 50%,
    rgba(69, 147, 248, 0) 80%
  );
  opacity: 0;
}
.agent-cursor-clicking .agent-cursor-ring-1 { animation: agentCursorClickRing 0.65s cubic-bezier(0.16, 1, 0.3, 1); }
.agent-cursor-clicking .agent-cursor-ring-2 { animation: agentCursorClickRing 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s; }
.agent-cursor-clicking .agent-cursor-flash  { animation: agentCursorClickFlash 0.45s ease-out; }
.agent-cursor-clicking .agent-cursor-arrow  { animation: agentCursorClickPress 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* User cursor, distinct from agent (no halo, no ring). Carries a "User"
   nametag so visitors can tell user activity from agent activity. */
.user-cursor {
  position: absolute;
  top: 0; left: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 30;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
  will-change: transform, opacity;
}
.user-cursor::after {
  content: "User";
  position: absolute;
  top: 22px;
  left: 14px;
  background: #0F1A2E;
  color: #FFFFFF;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
}
.user-cursor svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* ==================================================================== */
/* AGENT-MODE STATUS CARD, live: .blar-agent-status-card                */
/* (gradient bg, italic shimmer text, pulsing green dot, stop button)    */
/* ==================================================================== */
@keyframes blarAgentStatusPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}
@keyframes blarAgentStatusGlow {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.blar-agent-status-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.blar-agent-status-dot {
  width: 8px; height: 8px;
  background: #86efac;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blarAgentStatusPulse 1.5s ease-in-out infinite;
}
.blar-agent-status-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.55) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.55) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: blarAgentStatusGlow 2.5s linear infinite;
}
.blar-agent-stop-btn {
  width: 28px; height: 28px;
  padding: 0;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  border-radius: 6px;
  color: #FFFFFF;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.blar-agent-stop-btn svg { width: 12px; height: 12px; fill: currentColor; }
.blar-agent-stop-btn:hover { background: rgba(255, 255, 255, 0.30); }

/* ==================================================================== */
/* AGENT MESSAGE BUBBLE, live: .blar-agent-message-bubble               */
/* White floating box with explanation text                              */
/* ==================================================================== */
.blar-agent-message-bubble {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.blar-agent-bubble-content {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 450;
  color: #1F2937;
  line-height: 1.45;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==================================================================== */
/* ELEMENT HIGHLIGHT, agent's "looking at this" glow box                */
/* ==================================================================== */
.blar-agent-highlight {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 10px;
  box-shadow:
    0 0 12px rgba(69, 147, 248, 0.30),
    0 0 24px rgba(69, 147, 248, 0.15),
    inset 0 0 12px rgba(69, 147, 248, 0.05);
  pointer-events: none;
}

/* ==================================================================== */
/* MODULE: hero-walking                                                  */
/* ==================================================================== */
[data-anim="hero-walking"] .hw-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0 8px;
}
[data-anim="hero-walking"] .hw-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow:
    0 5px 30px rgba(15, 26, 46, 0.08),
    0 30px 70px -20px rgba(15, 26, 46, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-mock__chrome {
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #FAFBFE;
  border-bottom: 1px solid rgba(15, 26, 46, 0.06);
}
[data-anim="hero-walking"] .hw-mock__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15, 26, 46, 0.12);
  flex-shrink: 0;
}
[data-anim="hero-walking"] .hw-mock__url {
  margin-left: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #94A3B8;
  font-variant-numeric: tabular-nums;
}
[data-anim="hero-walking"] .hw-mock__body { flex: 1; display: flex; min-height: 0; position: relative; }
[data-anim="hero-walking"] .hw-side {
  width: 30%;
  min-width: 92px;
  max-width: 130px;
  background: #FAFBFE;
  border-right: 1px solid rgba(15, 26, 46, 0.06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
[data-anim="hero-walking"] .hw-side__logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #4593F8;
  margin: 2px 4px 8px;
}
[data-anim="hero-walking"] .hw-side__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 7px;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-side__row--active { background: rgba(69, 147, 248, 0.10); }
[data-anim="hero-walking"] .hw-side__dot {
  width: 11px; height: 11px;
  border-radius: 3px;
  background: rgba(15, 26, 46, 0.16);
  flex-shrink: 0;
}
[data-anim="hero-walking"] .hw-side__row--active .hw-side__dot { background: #4593F8; }
[data-anim="hero-walking"] .hw-side__bar {
  flex: 1;
  height: 7px;
  border-radius: 3px;
  background: rgba(15, 26, 46, 0.14);
  max-width: 70px;
}
[data-anim="hero-walking"] .hw-side__row--active .hw-side__bar { background: rgba(69, 147, 248, 0.45); }
[data-anim="hero-walking"] .hw-side__bar--sm { max-width: 46px; }
[data-anim="hero-walking"] .hw-main {
  flex: 1;
  position: relative;
  min-width: 0;
}
[data-anim="hero-walking"] .hw-view {
  position: absolute;
  inset: 0;
  padding: 18px 18px 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: opacity;
}
[data-anim="hero-walking"] .hw-view[hidden] { display: none; }
[data-anim="hero-walking"] .hw-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #F4F6FB;
  border-radius: 12px;
}
[data-anim="hero-walking"] .hw-metric__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1E5BC6;
  text-transform: uppercase;
}
[data-anim="hero-walking"] .hw-metric__value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #0F1A2E;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
[data-anim="hero-walking"] .hw-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 92px;
  padding: 0 4px;
  margin-top: 2px;
}
[data-anim="hero-walking"] .hw-bars__bar {
  flex: 1;
  border-radius: 3px;
  background: rgba(15, 26, 46, 0.10);
  height: var(--h, 50%);
}
[data-anim="hero-walking"] .hw-bars__bar:nth-child(4),
[data-anim="hero-walking"] .hw-bars__bar:nth-child(6) {
  background: rgba(69, 147, 248, 0.55);
}
[data-anim="hero-walking"] .hw-main__head {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 4px;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-main__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #0F1A2E;
  line-height: 1.1;
}
[data-anim="hero-walking"] .hw-main__sub {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1E5BC6;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
[data-anim="hero-walking"] .hw-stub {
  background: #F4F6FB;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-stub__line {
  height: 7px;
  border-radius: 3px;
  background: rgba(15, 26, 46, 0.10);
  width: 75%;
}
[data-anim="hero-walking"] .hw-stub__line--sm {
  width: 45%;
  background: rgba(15, 26, 46, 0.06);
}
[data-anim="hero-walking"] .hw-cta {
  margin-top: auto;
  align-self: stretch;
  height: 44px;
  border: none;
  border-radius: 11px;
  background: #4593F8;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  position: relative;
  will-change: transform, background-color;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 4px 12px rgba(69, 147, 248, 0.22);
  cursor: default;
}
[data-anim="hero-walking"] .hw-cta__label {
  display: inline-block;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-cta__check {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  opacity: 0;
  will-change: transform, opacity;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
}
[data-anim="hero-walking"] .hw-cta__check::after { content: "Connected"; }
/* Tour highlight on the CTA, matches widget tour-target outline + pulse */
@keyframes hwTourPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(69, 147, 248, 0.40),
      0 0 22px rgba(69, 147, 248, 0.30);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(69, 147, 248, 0.28),
      0 0 32px rgba(69, 147, 248, 0.45);
  }
}
[data-anim="hero-walking"] .hw-cta.is-target {
  outline: 3px solid #4593F8;
  outline-offset: 4px;
  animation: hwTourPulse 1.6s ease-in-out infinite;
}
/* Time-to-value timer, sits below the CTA, ticks while the agent works */
[data-anim="hero-walking"] .hw-timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 2px 0;
  will-change: opacity;
}
[data-anim="hero-walking"] .hw-timer__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1E5BC6;
  text-transform: uppercase;
}
[data-anim="hero-walking"] .hw-timer__value {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0F1A2E;
  font-variant-numeric: tabular-nums;
  min-width: 56px;
  text-align: left;
}
/* Agent-mode status card, floats inside the mock at the bottom, below the CTA.
   Takes turns with the support bubble (bottom-right). */
[data-anim="hero-walking"] .hw-agent {
  position: absolute;
  bottom: 12px;
  left: 50%;
  right: auto; top: auto;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(30, 91, 198, 0.30);
  z-index: 22;
  font-size: 11px;
  width: auto;
  white-space: nowrap;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-agent .blar-agent-status-text { font-size: 11px; }
[data-anim="hero-walking"] .hw-agent .blar-agent-stop-btn { width: 18px; height: 18px; border-radius: 4px; }
[data-anim="hero-walking"] .hw-agent .blar-agent-stop-btn svg { width: 10px; height: 10px; }
[data-anim="hero-walking"] .hw-agent .blar-agent-status-dot { width: 7px; height: 7px; }

/* Closed widget bubble pinned to the SaaS mock's bottom-right corner */
[data-anim="hero-walking"] .hw-widget-bubble {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  z-index: 23;
  will-change: transform, opacity;
}
[data-anim="hero-walking"] .hw-widget-bubble .support-bubble {
  width: 100%;
  height: 100%;
}
[data-anim="hero-walking"] .hw-widget-bubble img {
  width: 18px;
  height: 18px;
}
/* Slime morph blob, gooey transition between bubble and agent status card,
   mirrors src/agent/slime-animation.ts in the support-web-component repo. */
[data-anim="hero-walking"] .hw-slime {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(30, 91, 198, 0.40);
  z-index: 24;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  will-change: top, left, width, height, border-radius, opacity;
}
[data-anim="hero-walking"] .agent-cursor { z-index: 30; }

/* ==================================================================== */
/* MODULE: problem-stat                                                  */
/* ==================================================================== */
[data-anim="problem-stat"] .ps-stage {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
[data-anim="problem-stat"] .ps-eyebrow {
  font-family: var(--type-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  text-transform: uppercase;
}
[data-anim="problem-stat"] .ps-num-wrap {
  display: flex;
  align-items: flex-start;
  font-weight: 800;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
[data-anim="problem-stat"] .ps-num {
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  display: inline-block;
}
[data-anim="problem-stat"] .ps-num-pct {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  margin-left: 0.15em;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
  line-height: 1;
  align-self: flex-start;
}
[data-anim="problem-stat"] .ps-sub {
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--fg-soft);
  letter-spacing: -0.01em;
}
[data-anim="problem-stat"] .ps-bar {
  position: relative;
  width: 100%;
  height: 32px;
  margin-top: 0.5rem;
  transform-origin: left center;
}
[data-anim="problem-stat"] .ps-bar-track {
  position: absolute;
  inset: 0;
  background: var(--rule);
  border-radius: 2px;
}
[data-anim="problem-stat"] .ps-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--accent-deep);
  border-radius: 2px;
}
[data-anim="problem-stat"] .ps-marker {
  position: absolute;
  top: 0;
  left: 37.5%;
  height: 100%;
  pointer-events: none;
}
[data-anim="problem-stat"] .ps-marker-line {
  position: absolute;
  top: -8px; left: 0;
  width: 2px;
  height: calc(100% + 16px);
  background: var(--friction);
}
[data-anim="problem-stat"] .ps-marker-label {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: translateX(-50%);
  font-family: var(--type-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--friction);
  white-space: nowrap;
  text-transform: uppercase;
}
[data-anim="problem-stat"] .ps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
[data-anim="problem-stat"] .ps-row-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--type-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
[data-anim="problem-stat"] .ps-row-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
[data-anim="problem-stat"] .ps-row-dot-activate { background: var(--accent-deep); }
[data-anim="problem-stat"] .ps-row-dot-stall { background: var(--friction); }
[data-anim="problem-stat"] .ps-row-activate .ps-row-text { color: var(--accent-deep); }
[data-anim="problem-stat"] .ps-row-stall .ps-row-text { color: var(--friction); }
@media (max-width: 600px) {
  [data-anim="problem-stat"] .ps-bar { height: 24px; }
  [data-anim="problem-stat"] .ps-marker-label { font-size: 0.625rem; }
}

/* ==================================================================== */
/* MODULE: solution-walks-teaches-acts                                   */
/* ==================================================================== */
[data-anim="solution-walks-teaches-acts"] .wta-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 0.5rem;
}
@media (max-width: 920px) {
  [data-anim="solution-walks-teaches-acts"] .wta-stage { grid-template-columns: 1fr; }
}
[data-anim="solution-walks-teaches-acts"] .wta-tile {
  position: relative;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(15, 26, 46, 0.16);
  border: 1px solid rgba(15, 26, 46, 0.08);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 440px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out-power3), box-shadow 0.25s var(--ease-out-power3), border-color 0.25s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-tile:hover,
[data-anim="solution-walks-teaches-acts"] .wta-tile:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 40px 90px -30px rgba(15, 26, 46, 0.22);
  border-color: rgba(69, 147, 248, 0.30);
}
[data-anim="solution-walks-teaches-acts"] .wta-eyebrow {
  font-family: var(--type-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
[data-anim="solution-walks-teaches-acts"] .wta-title {
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: #0F1A2E;
  margin: 0.4rem 0 0.95rem;
  line-height: 1;
}
[data-anim="solution-walks-teaches-acts"] .wta-period {
  color: #1E5BC6;
  display: inline-block;
}
[data-anim="solution-walks-teaches-acts"] .wta-mock {
  position: relative;
  flex: 1;
  background: #FAFBFE;
  border: 1px solid rgba(15, 26, 46, 0.06);
  border-radius: 12px;
  overflow: hidden;
}
[data-anim="solution-walks-teaches-acts"] .wta-caption {
  font-family: var(--type-display);
  font-weight: 300;
  font-size: 0.86rem;
  color: #5C6470;
  margin: 0.85rem 0 0;
  line-height: 1.45;
}
[data-anim="solution-walks-teaches-acts"] .wta-cursor {
  z-index: 30;
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-mock--walks {
  display: grid;
  grid-template-columns: 124px 1fr;
}
[data-anim="solution-walks-teaches-acts"] .wta-side {
  background: #FFFFFF;
  border-right: 1px solid rgba(15, 26, 46, 0.06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row {
  height: 22px;
  border-radius: 6px;
  background: rgba(15, 26, 46, 0.06);
  position: relative;
  transition: background-color 0.2s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row--parent {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row--parent.is-active {
  background: rgba(69, 147, 248, 0.10);
}
[data-anim="solution-walks-teaches-acts"] .wta-side-icon {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(15, 26, 46, 0.18);
  flex-shrink: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row--parent.is-active .wta-side-icon {
  background: var(--accent);
}
[data-anim="solution-walks-teaches-acts"] .wta-side-label {
  flex: 1;
  font-family: var(--type-display);
  font-size: 10px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: -0.01em;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row--parent.is-active .wta-side-label {
  color: #1E5BC6;
  font-weight: 700;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-chevron {
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  color: #94A3B8;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-chevron svg {
  width: 10px;
  height: 10px;
  max-width: none;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-row--parent.is-expanded .wta-side-chevron {
  transform: rotate(90deg);
  color: #1E5BC6;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-submenu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-submenu.is-expanded {
  max-height: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-subitem {
  height: 18px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  font-family: var(--type-display);
  font-size: 9.5px;
  font-weight: 500;
  color: #6B7280;
  border-radius: 4px;
  letter-spacing: -0.01em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-side-subitem.is-active {
  background: rgba(69, 147, 248, 0.14);
  color: #1E5BC6;
  font-weight: 700;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane {
  position: relative;
  overflow: hidden;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-loader {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(15, 26, 46, 0.06);
  z-index: 5;
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4593F8, #1E5BC6);
  box-shadow: 0 0 6px rgba(69, 147, 248, 0.4);
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-view {
  position: absolute;
  inset: 0;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-view--1 { opacity: 1; }
[data-anim="solution-walks-teaches-acts"] .wta-pane-bar {
  height: 12px;
  width: 64%;
  background: rgba(15, 26, 46, 0.10);
  border-radius: 4px;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-line {
  height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 4px;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-line--short { width: 60%; }
[data-anim="solution-walks-teaches-acts"] .wta-pane-title {
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 13px;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-pref {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  background: #FAFBFE;
  border-radius: 7px;
  border: 1px solid rgba(15, 26, 46, 0.05);
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-pref-icon {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: rgba(69, 147, 248, 0.18);
  flex-shrink: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-pref-label {
  flex: 1;
  font-family: var(--type-display);
  font-size: 10.5px;
  font-weight: 500;
  color: #1F2937;
  letter-spacing: -0.01em;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-toggle {
  position: relative;
  width: 22px;
  height: 12px;
  border-radius: 6px;
  background: rgba(15, 26, 46, 0.18);
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: left 0.25s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-toggle.is-on {
  background: var(--accent);
}
[data-anim="solution-walks-teaches-acts"] .wta-pane-toggle.is-on::after {
  left: 12px;
}
[data-anim="solution-walks-teaches-acts"] .wta-mock--teaches { padding: 14px; }
[data-anim="solution-walks-teaches-acts"] .wta-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 46, 0.06);
  border-radius: 10px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
[data-anim="solution-walks-teaches-acts"] .wta-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-anim="solution-walks-teaches-acts"] .wta-card-label {
  width: 80px; height: 8px;
  background: rgba(15, 26, 46, 0.10);
  border-radius: 4px;
  display: inline-block;
}
[data-anim="solution-walks-teaches-acts"] .wta-card-stat {
  width: 40px; height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 4px;
  display: inline-block;
}
[data-anim="solution-walks-teaches-acts"] .wta-chart {
  position: relative;
  height: 92px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 6px 4px 4px;
  background: #FAFBFE;
  border-radius: 8px;
  border: 1px solid rgba(15, 26, 46, 0.04);
}
[data-anim="solution-walks-teaches-acts"] .wta-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 3px;
  opacity: 0.85;
}
[data-anim="solution-walks-teaches-acts"] .wta-row {
  height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 4px;
}
[data-anim="solution-walks-teaches-acts"] .wta-row--short { width: 70%; }
[data-anim="solution-walks-teaches-acts"] .wta-highlight {
  position: absolute;
  top: 50px;
  left: 18px;
  right: 18px;
  height: 96px;
  border-radius: 10px;
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-tooltip {
  position: absolute;
  top: 154px;
  left: 22px;
  right: 22px;
  background: #FFFFFF;
  color: #1F2937;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 36px;
  width: 10px; height: 10px;
  background: #FFFFFF;
  transform: rotate(45deg);
  box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.04);
}
[data-anim="solution-walks-teaches-acts"] .wta-tooltip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4593F8;
  flex-shrink: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-mock--acts {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
[data-anim="solution-walks-teaches-acts"] .wta-form-label {
  height: 8px;
  width: 44%;
  background: rgba(15, 26, 46, 0.10);
  border-radius: 4px;
}
[data-anim="solution-walks-teaches-acts"] .wta-input {
  position: relative;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 46, 0.10);
  border-radius: 10px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: var(--type-mono);
  font-size: 0.84rem;
  color: #0F1A2E;
}
[data-anim="solution-walks-teaches-acts"] .wta-input-text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}
[data-anim="solution-walks-teaches-acts"] .wta-caret {
  display: inline-block;
  width: 1.5px;
  height: 16px;
  background: #1E5BC6;
  margin-left: 1px;
  opacity: 0;
}
[data-anim="solution-walks-teaches-acts"] .wta-button {
  height: 42px;
  border-radius: 10px;
  background: #4593F8;
  color: #FFFFFF;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 8px 22px -10px rgba(69, 147, 248, 0.55);
}
[data-anim="solution-walks-teaches-acts"] .wta-form-hint {
  height: 6px;
  width: 60%;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 3px;
  margin-top: 2px;
}

/* ==================================================================== */
/* MODULE: job-onboarding, uses REAL .support-onboarding-* classes      */
/* lifted from support-web-component/src/config/styles.ts (3605–3787)    */
/* ==================================================================== */
[data-anim="job-onboarding"] .jo-stage {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 88px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  box-sizing: border-box;
}
[data-anim="job-onboarding"] .support-onboarding-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 30px 70px -30px rgba(15, 26, 46, 0.22);
  overflow: hidden;
  will-change: transform, opacity;
}
[data-anim="job-onboarding"] .support-onboarding-header {
  padding: 16px 16px 12px;
}
[data-anim="job-onboarding"] .support-onboarding-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
[data-anim="job-onboarding"] .support-onboarding-progress-meta {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 6px 0;
}
[data-anim="job-onboarding"] .support-onboarding-progress-bar {
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
}
[data-anim="job-onboarding"] .support-onboarding-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
}
[data-anim="job-onboarding"] .support-onboarding-step {
  border-top: 1px solid #E5E7EB;
}
[data-anim="job-onboarding"] .support-onboarding-step-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}
[data-anim="job-onboarding"] .support-onboarding-step-number {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  background: #F3F4F6;
  color: #9CA3AF;
  transition: background-color 0.3s ease, color 0.3s ease;
}
[data-anim="job-onboarding"] .support-onboarding-step.active .support-onboarding-step-number {
  background: rgba(69, 147, 248, 0.12);
  color: var(--accent);
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .support-onboarding-step-number {
  background: var(--accent);
  color: #FFFFFF;
}
[data-anim="job-onboarding"] .support-onboarding-step-number .step-num-text {
  display: inline-block;
}
[data-anim="job-onboarding"] .support-onboarding-step-number .step-num-check {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .step-num-text {
  display: none;
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .step-num-check {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
[data-anim="job-onboarding"] .support-onboarding-step-title {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  position: relative;
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .support-onboarding-step-title {
  color: #9CA3AF;
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .support-onboarding-step-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #9CA3AF;
}
[data-anim="job-onboarding"] .support-onboarding-step-chevron {
  width: 16px;
  height: 16px;
  color: #9CA3AF;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}
[data-anim="job-onboarding"] .support-onboarding-step-chevron svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[data-anim="job-onboarding"] .support-onboarding-step.expanded .support-onboarding-step-chevron {
  transform: rotate(90deg);
}
[data-anim="job-onboarding"] .support-onboarding-step.completed .support-onboarding-step-chevron {
  opacity: 0;
}
[data-anim="job-onboarding"] .support-onboarding-step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
[data-anim="job-onboarding"] .support-onboarding-step.expanded .support-onboarding-step-body {
  max-height: 240px;
}
[data-anim="job-onboarding"] .support-onboarding-step.active .support-onboarding-step-header {
  background: rgba(69, 147, 248, 0.04);
}
[data-anim="job-onboarding"] .support-onboarding-step-body-inner {
  padding: 0 16px 14px 52px;
}
[data-anim="job-onboarding"] .support-onboarding-step-description {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0 0 12px 0;
  letter-spacing: -0.005em;
}
[data-anim="job-onboarding"] .support-onboarding-step-cta {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
}
[data-anim="job-onboarding"] .jo-bubble {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  z-index: 23;
  will-change: transform, opacity;
}
[data-anim="job-onboarding"] .jo-bubble .support-bubble {
  width: 100%;
  height: 100%;
}
[data-anim="job-onboarding"] .jo-bubble img {
  width: 22px;
  height: 22px;
}
[data-anim="job-onboarding"] .jo-slime {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(30, 91, 198, 0.40);
  z-index: 24;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  will-change: top, left, width, height, border-radius, opacity;
}
[data-anim="job-onboarding"] .jo-user-cursor {
  z-index: 30;
  opacity: 0;
}
[data-anim="job-onboarding"] .jo-agent-cursor {
  z-index: 31;
  opacity: 0;
}

/* Phase B, agent demonstrating in the user's app (mirrors job-releases) */
[data-anim="job-onboarding"] .jo-app {
  position: absolute;
  inset: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 30px 70px -30px rgba(15, 26, 46, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
[data-anim="job-onboarding"] .jo-app__chrome {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #FAFBFE;
  border-bottom: 1px solid #E5E7EB;
}
[data-anim="job-onboarding"] .jo-app__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(15, 26, 46, 0.12);
}
[data-anim="job-onboarding"] .jo-app__url {
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
[data-anim="job-onboarding"] .jo-app__body {
  flex: 1;
  display: flex;
  min-height: 0;
}
[data-anim="job-onboarding"] .jo-app__side {
  width: 92px;
  background: #FAFBFE;
  border-right: 1px solid #E5E7EB;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
[data-anim="job-onboarding"] .jo-app__side-logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent);
  margin: 0 4px 6px;
}
[data-anim="job-onboarding"] .jo-app__side-row {
  height: 18px;
  border-radius: 5px;
  background: rgba(15, 26, 46, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}
[data-anim="job-onboarding"] .jo-app__side-row--sm { width: 60%; }
[data-anim="job-onboarding"] .jo-app__side-row--active {
  background: rgba(69, 147, 248, 0.12);
}
[data-anim="job-onboarding"] .jo-app__side-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
[data-anim="job-onboarding"] .jo-app__side-label {
  font-size: 10px;
  font-weight: 700;
  color: #1E5BC6;
  letter-spacing: -0.01em;
}
[data-anim="job-onboarding"] .jo-app__main {
  flex: 1;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
[data-anim="job-onboarding"] .jo-app__main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
[data-anim="job-onboarding"] .jo-app__title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}
[data-anim="job-onboarding"] .jo-app__field-label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.01em;
}
[data-anim="job-onboarding"] .jo-app__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
[data-anim="job-onboarding"] .jo-app__pill {
  padding: 7px 11px;
  background: #F4F6FB;
  border: 1.5px solid transparent;
  border-radius: 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #5C6470;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
[data-anim="job-onboarding"] .jo-app__pill.is-selected {
  background: #4593F8;
  color: #FFFFFF;
  border-color: #1E5BC6;
  transform: scale(1.04);
}
[data-anim="job-onboarding"] .jo-app__row {
  height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 3px;
}
[data-anim="job-onboarding"] .jo-app__row--short { width: 60%; }
[data-anim="job-onboarding"] .jo-app__cta {
  flex-shrink: 0;
  padding: 7px 14px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
[data-anim="job-onboarding"] .jo-app__cta.is-saved {
  background: #10B981;
  color: #FFFFFF;
}
/* In-app agent-mode status card, pinned to bottom-center, matches the
   production .blar-agent-status-card from src/agent/agent-mode-ui.ts. */
[data-anim="job-onboarding"] .jo-app__status {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 11px;
  opacity: 0;
}
[data-anim="job-onboarding"] .jo-app__status .blar-agent-status-text { font-size: 11px; }
[data-anim="job-onboarding"] .jo-app__status .blar-agent-stop-btn { width: 18px; height: 18px; border-radius: 4px; }
[data-anim="job-onboarding"] .jo-app__status .blar-agent-stop-btn svg { width: 10px; height: 10px; }
[data-anim="job-onboarding"] .jo-app__status .blar-agent-status-dot { width: 7px; height: 7px; }
/* Toast above the floating agent status card, mirrors the production
   .blar-agent-bubbles-container + .blar-agent-message-bubble (slides up
   from below the status card, narrower than the app). */
[data-anim="job-onboarding"] .jo-app__toast {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  opacity: 0;
}
[data-anim="job-onboarding"] .jo-app__toast .blar-agent-bubble-content {
  font-size: 12px;
  font-weight: 500;
  padding: 10px 12px;
  line-height: 1.4;
}

/* ==================================================================== */
/* MODULE: job-releases, uses REAL .support-release-card classes        */
/* lifted from support-web-component/src/config/styles.ts (5102–5310)    */
/* ==================================================================== */
[data-anim="job-releases"] .jr-stage {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  padding: 16px;
  box-sizing: border-box;
}
[data-anim="job-releases"] .support-releases-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  min-height: 500px;
}
[data-anim="job-releases"] .support-release-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  font-family: inherit;
  will-change: transform, opacity;
}
[data-anim="job-releases"] .support-release-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--support-release-accent, #3B82F6);
}
[data-anim="job-releases"] .support-release-card[data-category="announcement"] { --support-release-accent: #3B82F6; }
[data-anim="job-releases"] .support-release-card[data-category="event"]        { --support-release-accent: #A855F7; }
[data-anim="job-releases"] .support-release-card[data-category="feature"]      { --support-release-accent: #10B981; }
[data-anim="job-releases"] .support-release-card[data-category="update"]       { --support-release-accent: #F59E0B; }
[data-anim="job-releases"] .support-release-card.is-expanded {
  border-color: var(--support-release-accent, var(--accent));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
[data-anim="job-releases"] .support-release-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 18px;
}
[data-anim="job-releases"] .support-release-header-text {
  flex: 1;
  min-width: 0;
}
[data-anim="job-releases"] .support-release-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
[data-anim="job-releases"] .support-release-category {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid;
}
[data-anim="job-releases"] .support-release-card[data-category="announcement"] .support-release-category {
  background: #DBEAFE; color: #1D4ED8; border-color: #BFDBFE;
}
[data-anim="job-releases"] .support-release-card[data-category="feature"] .support-release-category {
  background: #D1FAE5; color: #047857; border-color: #A7F3D0;
}
[data-anim="job-releases"] .support-release-card[data-category="update"] .support-release-category {
  background: #FEF3C7; color: #B45309; border-color: #FDE68A;
}
[data-anim="job-releases"] .support-release-date { text-transform: uppercase; }
[data-anim="job-releases"] .support-release-title {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
[data-anim="job-releases"] .support-release-preview {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-anim="job-releases"] .support-release-card.is-expanded .support-release-preview { display: none; }
[data-anim="job-releases"] .support-release-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F3F4F6;
}
[data-anim="job-releases"] .support-release-thumb .jr-thumb-stub { width: 100%; height: 100%; }
[data-anim="job-releases"] .support-release-card.is-expanded .support-release-thumb { display: none; }
[data-anim="job-releases"] .support-release-chevron {
  width: 16px;
  height: 16px;
  color: #9CA3AF;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.2s ease;
}
[data-anim="job-releases"] .support-release-chevron svg { width: 16px; height: 16px; }
[data-anim="job-releases"] .support-release-card.is-expanded .support-release-chevron {
  transform: rotate(180deg);
}
[data-anim="job-releases"] .support-release-detail {
  padding: 0 16px 16px 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
[data-anim="job-releases"] .support-release-card.is-expanded .support-release-detail {
  max-height: 220px;
}
[data-anim="job-releases"] .support-release-image {
  margin: 0 0 12px 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #F3F4F6;
}
[data-anim="job-releases"] .support-release-image .jr-detail-stub { width: 100%; height: 100%; }
[data-anim="job-releases"] .support-release-body {
  font-size: 13px;
  line-height: 1.55;
  color: #111827;
}
[data-anim="job-releases"] .jr-cursor { opacity: 0; }
[data-anim="job-releases"] .support-release-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 7px 14px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
}

/* Phase 2, agent demonstrating in the user's app */
[data-anim="job-releases"] .jr-app {
  position: absolute;
  inset: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 30px 70px -30px rgba(15, 26, 46, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
[data-anim="job-releases"] .jr-app__chrome {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #FAFBFE;
  border-bottom: 1px solid #E5E7EB;
}
[data-anim="job-releases"] .jr-app__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(15, 26, 46, 0.12);
}
[data-anim="job-releases"] .jr-app__url {
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
[data-anim="job-releases"] .jr-app__body {
  flex: 1;
  display: flex;
  min-height: 0;
}
[data-anim="job-releases"] .jr-app__side {
  width: 92px;
  background: #FAFBFE;
  border-right: 1px solid #E5E7EB;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
[data-anim="job-releases"] .jr-app__side-logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent);
  margin: 0 4px 6px;
}
[data-anim="job-releases"] .jr-app__side-row {
  height: 18px;
  border-radius: 5px;
  background: rgba(15, 26, 46, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}
[data-anim="job-releases"] .jr-app__side-row--sm { width: 60%; }
[data-anim="job-releases"] .jr-app__side-row--active {
  background: rgba(69, 147, 248, 0.12);
}
[data-anim="job-releases"] .jr-app__side-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(15, 26, 46, 0.22);
  flex-shrink: 0;
  transition: background 0.25s ease;
}
[data-anim="job-releases"] .jr-app__side-label {
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
[data-anim="job-releases"] .jr-app__side-row--active .jr-app__side-label {
  color: #1E5BC6;
  font-weight: 700;
}
[data-anim="job-releases"] .jr-app__side-row--active .jr-app__side-dot {
  background: var(--accent);
}
[data-anim="job-releases"] .jr-app__main {
  flex: 1;
  position: relative;
  min-width: 0;
}
[data-anim="job-releases"] .jr-app__view {
  position: absolute;
  inset: 14px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
[data-anim="job-releases"] .jr-app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
[data-anim="job-releases"] .jr-app__title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}
[data-anim="job-releases"] .jr-app__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
[data-anim="job-releases"] .jr-app__tile {
  height: 56px;
  border-radius: 8px;
  background: #F4F6FB;
  border: 1px solid rgba(15, 26, 46, 0.06);
}
[data-anim="job-releases"] .jr-app__tile--accent { background: rgba(69, 147, 248, 0.08); }
[data-anim="job-releases"] .jr-app__row {
  height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 3px;
}
[data-anim="job-releases"] .jr-app__row--lg { height: 28px; }
[data-anim="job-releases"] .jr-app__row--short { width: 60%; }
[data-anim="job-releases"] .jr-app__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 26px;
  padding: 0 12px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}
[data-anim="job-releases"] .jr-app__cta-label,
[data-anim="job-releases"] .jr-app__cta-check {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[data-anim="job-releases"] .jr-app__cta-check { opacity: 0; }
[data-anim="job-releases"] .jr-app__cta.is-success { background: #10B981; }
[data-anim="job-releases"] .jr-app__toast {
  position: absolute;
  bottom: 88px;
  left: 50%;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow:
    0 10px 30px -8px rgba(15, 26, 46, 0.22),
    0 0 0 1px rgba(15, 26, 46, 0.05);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1F2937;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  opacity: 0;
  z-index: 25;
}
[data-anim="job-releases"] .jr-app__toast-text { line-height: 1.4; }
[data-anim="job-releases"] .jr-app__status {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 11px;
  opacity: 0;
}
[data-anim="job-releases"] .jr-app__status .blar-agent-status-text { font-size: 11px; }
[data-anim="job-releases"] .jr-app__status .blar-agent-stop-btn { width: 18px; height: 18px; border-radius: 4px; }
[data-anim="job-releases"] .jr-app__status .blar-agent-stop-btn svg { width: 10px; height: 10px; }
[data-anim="job-releases"] .jr-app__status .blar-agent-status-dot { width: 7px; height: 7px; }

[data-anim="job-releases"] .jr-user-cursor { z-index: 30; opacity: 0; }
[data-anim="job-releases"] .jr-bubble {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  z-index: 23;
}
[data-anim="job-releases"] .jr-bubble .support-bubble {
  width: 100%;
  height: 100%;
}
[data-anim="job-releases"] .jr-bubble img {
  width: 22px;
  height: 22px;
}
[data-anim="job-releases"] .jr-slime {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(30, 91, 198, 0.40);
  z-index: 24;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

/* ==================================================================== */
/* MODULE: job-nudges, multi-phase scene                                */
/* Phase 1: user navigates the SaaS app (sidebar click → view changes)   */
/* Phase 2: closed widget bubble pops a toast notification               */
/* Phase 3: user clicks the toast → agent mode activates                 */
/* Phase 4: agent demonstrates with highlight + message bubble           */
/* ==================================================================== */
[data-anim="job-nudges"] .jn-stage {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  overflow: hidden;
}

/* SaaS app shell */
[data-anim="job-nudges"] .jn-app {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 360px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 30px 70px -30px rgba(15, 26, 46, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
[data-anim="job-nudges"] .jn-app__chrome {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #FAFBFE;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
}
[data-anim="job-nudges"] .jn-app__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(15, 26, 46, 0.12);
}
[data-anim="job-nudges"] .jn-app__url {
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
[data-anim="job-nudges"] .jn-app__body {
  flex: 1;
  display: flex;
  min-height: 0;
}
[data-anim="job-nudges"] .jn-app__side {
  width: 110px;
  background: #FAFBFE;
  border-right: 1px solid #E5E7EB;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
[data-anim="job-nudges"] .jn-app__side-logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent);
  margin: 0 4px 6px;
}
[data-anim="job-nudges"] .jn-app__side-row {
  height: 22px;
  border-radius: 5px;
  background: rgba(15, 26, 46, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
[data-anim="job-nudges"] .jn-app__side-row--sm { width: 60%; }
[data-anim="job-nudges"] .jn-app__side-row.is-active {
  background: rgba(69, 147, 248, 0.12);
}
[data-anim="job-nudges"] .jn-app__side-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(15, 26, 46, 0.18);
  flex-shrink: 0;
}
[data-anim="job-nudges"] .jn-app__side-row.is-active .jn-app__side-dot {
  background: var(--accent);
}
[data-anim="job-nudges"] .jn-app__side-label {
  font-size: 10px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: -0.01em;
}
[data-anim="job-nudges"] .jn-app__side-row.is-active .jn-app__side-label {
  color: #1E5BC6;
  font-weight: 700;
}
[data-anim="job-nudges"] .jn-app__main {
  flex: 1;
  position: relative;
  padding: 14px 16px;
  min-width: 0;
}
[data-anim="job-nudges"] .jn-app__view {
  position: absolute;
  inset: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
[data-anim="job-nudges"] .jn-app__view--2 { opacity: 0; }
[data-anim="job-nudges"] .jn-app__title {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
[data-anim="job-nudges"] .jn-app__row {
  height: 8px;
  background: rgba(15, 26, 46, 0.06);
  border-radius: 3px;
}
[data-anim="job-nudges"] .jn-app__row--lg {
  height: 64px;
  background: linear-gradient(135deg, #F4F6FB 0%, #EDF1F8 100%);
}
[data-anim="job-nudges"] .jn-app__row--short { width: 58%; }
[data-anim="job-nudges"] .jn-app__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
[data-anim="job-nudges"] .jn-app__tile {
  height: 48px;
  border-radius: 8px;
  background: #F4F6FB;
  border: 1px solid rgba(15, 26, 46, 0.06);
}
[data-anim="job-nudges"] .jn-app__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  padding: 6px;
  background: #FAFBFE;
  border-radius: 8px;
}
[data-anim="job-nudges"] .jn-app__bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 3px;
  opacity: 0.85;
}

/* Closed widget bubble pinned to bottom-right of the app, with toast */
[data-anim="job-nudges"] .jn-app__widget {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
[data-anim="job-nudges"] .jn-app__widget .support-bubble {
  width: 44px;
  height: 44px;
}
[data-anim="job-nudges"] .jn-app__widget .support-bubble img {
  width: 22px;
  height: 22px;
}
[data-anim="job-nudges"] .jn-app__widget-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  background: #EF4444;
  border-radius: 8px;
  border: 2px solid #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  padding: 0 3px;
  line-height: 1;
  opacity: 0;
}
[data-anim="job-nudges"] .jn-app__toast {
  position: absolute;
  right: 56px;
  bottom: 4px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px -8px rgba(15, 26, 46, 0.22);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1F2937;
  white-space: nowrap;
  opacity: 0;
}
[data-anim="job-nudges"] .jn-app__toast-text { line-height: 1.4; }
[data-anim="job-nudges"] .jn-app__toast-tail {
  position: absolute;
  right: -5px;
  bottom: 16px;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  transform: rotate(45deg);
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.04);
}

/* Tour highlight, applied to the target element itself (chart, tile, etc.)
   via .is-tour-highlighted. Mirrors blar-tour.ts:336-362: outline +
   outline-offset + pulsing box-shadow. Scaled down for the smaller mock
   so the glow doesn't bleed past the app's overflow boundary. */
@keyframes blarTourPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(69, 147, 248, 0.40), 0 0 12px rgba(69, 147, 248, 0.30);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(69, 147, 248, 0.30), 0 0 18px rgba(69, 147, 248, 0.40);
  }
}
[data-anim="job-nudges"] .is-tour-highlighted {
  outline: 2px solid #4593F8;
  outline-offset: 3px;
  border-radius: 8px;
  animation: blarTourPulse 1.6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
/* Tour tooltip card, mirrors .tour-tooltip + .tour-progress-bar from
   blar-tour.ts:65-95. The progress bar shows when the card will dismiss
   (it depletes via scaleX from 1 → 0). Scaled down for the small mock. */
[data-anim="job-nudges"] .jn-app__tooltip {
  position: absolute;
  right: 14px;
  top: 60px;
  width: 220px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 26, 46, 0.18), 0 2px 8px rgba(15, 26, 46, 0.08);
  overflow: hidden;
  opacity: 0;
  z-index: 25;
}
[data-anim="job-nudges"] .jn-app__tooltip-progress {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.45);
  transform-origin: left center;
}
[data-anim="job-nudges"] .jn-app__tooltip-header {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.01em;
  padding: 10px 14px 4px;
}
[data-anim="job-nudges"] .jn-app__tooltip-description {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.45;
  padding: 0 14px 12px;
}
[data-anim="job-nudges"] .jn-app__status {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 11px;
  opacity: 0;
}
[data-anim="job-nudges"] .jn-app__status .blar-agent-status-text { font-size: 11px; }
[data-anim="job-nudges"] .jn-app__status .blar-agent-stop-btn { width: 18px; height: 18px; border-radius: 4px; }
[data-anim="job-nudges"] .jn-app__status .blar-agent-stop-btn svg { width: 10px; height: 10px; }
[data-anim="job-nudges"] .jn-app__status .blar-agent-status-dot { width: 7px; height: 7px; }

/* Cursors */
[data-anim="job-nudges"] .jn-user-cursor {
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 20px;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}
[data-anim="job-nudges"] .jn-agent-cursor {
  position: absolute;
  top: 0; left: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
[data-anim="job-nudges"] .jn-agent-cursor .agent-cursor-arrow {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.7));
}
[data-anim="job-nudges"] .jn-slime {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4593F8 0%, #1E5BC6 100%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(30, 91, 198, 0.40);
  z-index: 24;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
