/* Ask Wilson: signed mascot launcher (Pages-only, scripted, no LLM) */
.aw-dock{position:fixed;right:22px;bottom:22px;z-index:90;display:flex;align-items:center}
.aw-wrap{position:relative}
.aw-pill{
  display:flex;align-items:center;gap:10px;
  background:#1a1d24;border:1px solid #2c313a;
  border-radius:999px;padding:8px 14px 8px 8px;
  box-shadow:0 12px 36px rgba(0,0,0,.45);
  cursor:pointer;color:#fff;font:inherit;
  transition:transform .15s ease,border-color .15s ease;
}
.aw-pill:hover{transform:translateY(-1px);border-color:rgba(255,90,31,.55)}
.aw-pill img{width:44px;height:44px;border-radius:50%;box-shadow:0 0 0 2px #FF5A1F;display:block}
.aw-pill .aw-label{font-family:var(--display);font-weight:700;font-size:15px;letter-spacing:-.02em;padding-right:4px;white-space:nowrap}
.aw-pulse{
  position:absolute;width:52px;height:52px;left:5px;top:5px;
  border-radius:50%;border:2px solid rgba(255,90,31,.5);
  animation:awPulse 2s ease-out infinite;pointer-events:none;
}
@keyframes awPulse{0%{transform:scale(.92);opacity:.75}100%{transform:scale(1.35);opacity:0}}
.aw-panel{
  position:fixed;right:22px;bottom:92px;z-index:95;
  width:min(360px,calc(100vw - 32px));
  background:#1a1d24;border:1px solid #2c313a;border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  overflow:hidden;display:none;flex-direction:column;
}
.aw-panel.open{display:flex}
.aw-head{
  display:flex;align-items:center;gap:12px;
  padding:14px 14px 12px;background:#12151a;border-bottom:1px solid #2c313a;
}
.aw-head img{width:44px;height:44px;border-radius:50%;box-shadow:0 0 0 2px #FF5A1F}
.aw-head .aw-name{font-family:var(--display);font-weight:700;font-size:15px;color:#fff}
.aw-head .aw-role{font-size:12px;color:#9aa3b2;margin-top:2px}
.aw-close{
  margin-left:auto;background:transparent;border:0;color:#9aa3b2;
  font-size:20px;cursor:pointer;line-height:1;padding:4px 8px;min-width:40px;min-height:40px;
}
.aw-body{padding:14px;display:flex;flex-direction:column;gap:10px;min-height:220px;max-height:360px;overflow:auto}
.aw-bubble{
  align-self:flex-start;max-width:92%;
  background:#242831;border:1px solid #323843;border-radius:14px 14px 14px 4px;
  padding:11px 13px;font-size:14px;line-height:1.45;color:#e8eaef;
}
.aw-bubble .aw-who{font-size:11px;color:#FF5A1F;font-weight:600;margin-bottom:4px}
.aw-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}
.aw-chip{
  border:1px solid #3a3f49;background:#12151a;color:#e8eaef;
  border-radius:100px;padding:8px 12px;font-size:12.5px;cursor:pointer;font:inherit;
}
.aw-chip:hover{border-color:rgba(255,90,31,.7)}
.aw-chip.primary{border-color:rgba(255,90,31,.55);color:#fff}
.aw-foot{
  border-top:1px solid #2c313a;padding:10px 12px;display:flex;gap:8px;background:#12151a;
}
.aw-foot input{
  flex:1;border:1px solid #2c313a;background:#1a1d24;color:#fff;
  border-radius:10px;padding:10px 12px;font:inherit;font-size:13.5px;
}
.aw-foot button{
  background:#C93F0A;color:#fff;border:0;border-radius:10px;
  font-weight:700;font-size:13px;padding:10px 14px;cursor:default;opacity:.55;
}
@media(max-width:480px){
  .aw-dock{right:14px;bottom:16px}
  .aw-panel{right:12px;bottom:84px}
}

