/* WeAD Analyst — Monica-style right-edge bar → expands to pill */
#wead-analyst-strip {
  position: fixed;
  top: 336px;
  right: 0;
  z-index: 9300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 30px;
  height: 78px;
  padding: 0;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-right: none;
  background: rgba(8, 18, 32, 0.94);
  color: #e8f4ff;
  font: 500 11px/1.2 Inter, system-ui, sans-serif;
  backdrop-filter: blur(10px);
  box-shadow: -4px 4px 18px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: width 0.22s ease, height 0.22s ease, padding 0.22s ease,
    border-radius 0.22s ease, gap 0.22s ease;
  overflow: hidden;
  white-space: nowrap;
  max-width: none;
}

#wead-analyst-strip .wead-bar-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
  color: #00ff88;
  font: 700 11px/1.1 Inter, system-ui, sans-serif;
}

#wead-analyst-strip .chip,
#wead-analyst-strip .muted,
#wead-analyst-strip a {
  display: none;
}

#wead-analyst-strip.is-expanded {
  width: auto;
  height: 40px;
  padding: 0 12px;
  gap: 8px;
  border-radius: 999px 0 0 999px;
  cursor: default;
}

#wead-analyst-strip.is-expanded .wead-bar-label {
  display: none;
}

#wead-analyst-strip.is-expanded .chip,
#wead-analyst-strip.is-expanded .muted,
#wead-analyst-strip.is-expanded a {
  display: inline;
}

#wead-analyst-strip .chip {
  color: #00ff88;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#wead-analyst-strip .muted {
  color: rgba(232, 244, 255, 0.65);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#wead-analyst-strip a {
  color: #3dbbff;
  text-decoration: none;
  font-weight: 600;
}

#wead-analyst-strip a:hover {
  text-decoration: underline;
}

#wead-analyst-strip.paid {
  border-color: rgba(0, 255, 136, 0.5);
}

#wead-analyst-strip.hidden {
  display: none;
}

@media (max-width: 720px) {
  #wead-analyst-strip,
  #wead-analyst-strip.paid {
    top: auto !important;
    bottom: 132px !important;
    left: auto !important;
    right: 0 !important;
    width: 28px;
    height: 56px;
    max-width: none;
    padding: 0;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    display: flex;
  }

  #wead-analyst-strip .wead-bar-label {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  #wead-analyst-strip.is-expanded,
  #wead-analyst-strip.paid.is-expanded {
    width: auto;
    max-width: calc(100% - 12px);
    height: 38px;
    padding: 0 12px;
    border-radius: 999px 0 0 999px;
    justify-content: flex-start;
    gap: 8px;
  }

  #wead-analyst-strip .muted {
    max-width: 110px;
  }
}
