Imagine you're tuning the EQ on a stereo. You want more bass, but if you crank the knob too far, the mids collapse and the whole mix turns to mud. What you really want is a per-frequency sensitivity map — how much does each knob-turn distort the overall sound? That's what MISVO builds for language model outputs: a Fisher-information-based sensitivity map that tells you exactly how much each steering vector distorts the token distribution, so you can push reward up while keeping generation quality intact. The committed claim: pre-logit steering vectors can be optimized to maximize arbitrary test-time rewards on frozen LLMs without degrading coherence, by penalizing interventions using the local KL geometry of the induced token distribution. The Fisher quadratic that emerges has an analytic gradient computable through matrix-vector products with the frozen LM head — no backpropagation through the model, no parameter updates. The authors prove an exact decomposition of the sequence-level KL gradient into an analytic Fisher term and a suffix score-function term, then show the suffix term is second-order in steering magnitude, meaning three different Fisher surrogates all agree with the full KL gradient to first order. The ladder here matters. MISVO is compared against Best-of-N (BoN) sampling — the strongest simple baseline for test-time reward maximization — plus unregularized steering and other controlled-generation methods. Across seven model-task combinations spanning preference alignment (AlpacaEval, reward models) and code generation (HumanEval-style), MISVO takes highest mean reward in six of seven settings while maintaining diversity and coherence scores close to BoN. The key win: BoN requires generating N full sequences and scoring all of them, which is N× the compute. MISVO optimizes position-specific steering vectors on a single forward pass through the frozen head. Architecturally, this sits in the activation-engineering family — representation engineering, steering vectors, contrastive activation addition — but with a principled regularization story that most prior work lacks. The method leans on a specific structural property: the language model head (the final unembedding matrix) is frozen and linear, which means the Fisher information matrix of the softmax output with respect to pre-logit perturbations has a closed-form expression. No sampling needed for the dominant gradient term. The compute overhead is matrix-vector products with the vocabulary projection — cheap relative to a full forward pass. Integrity is mixed. The evaluation spans multiple model sizes (approximately 1B to 14B parameters) and both preference and code tasks, which is better than most steering papers. But the benchmarks are researcher-chosen, not pre-registered. The comparison to BoN is honest and informative — BoN is genuinely the right baseline here. However, there's no comparison to recent RLHF or DPO fine-tuning results, which occupy a different compute tradeoff but address the same problem. The theoretical results (first-order equivalence of surrogates, second-order suffix bound) are derived analytically, which is strong. The milestone to watch: steering methods need to demonstrate robustness under distribution shift and adversarial reward hacking at scale. MISVO works at 14B parameters today. The next meaningful threshold is demonstrating that the Fisher regularization holds — meaning it actually prevents reward over-optimization — at 70B+ scale and on harder, more gameable reward signals. If the local KL geometry stays well-behaved at that scale, this becomes a standard tool for test-time adaptation. The experiment the authors didn't run: scaling to 70B+ models and testing against deliberately adversarial or misspecified reward models. The honest read is (a) — compute budget. Running controlled steering experiments at 70B with multiple tasks and baselines is expensive. The theory predicts the Fisher surrogate should remain valid (it depends on the head being frozen and linear, which doesn't change with scale), but empirical verification at that scale is the obvious next step.