Imagine you're a detective pinning index cards to a corkboard — each card is an event ("fired on March 3rd"), each string connecting them is a relationship ("because of" or "after"). Now imagine doing that automatically for thousands of legal complaints, where the sequence and causality of events is the entire argument. That's the core mechanism of ARGUS: turn flat legal text into structured event graphs so a machine can reason about who did what to whom, when, and why. The committed claim: a source-grounded pipeline combining a 5W1H schema (Who, What, When, Where, Why, How), legal-domain language models, and LLM-based structured generation can build document-level Event Knowledge Graphs (EKGs) from real employment-discrimination complaints — and those graphs improve downstream reasoning tasks compared to raw text or linearized representations. ARGUS works in stages. First, it extracts fact-bearing statements from CourtListener complaints. Then it builds chunk-level event graphs with participant roles, temporal ordering, and causal structure using a schema inspired by journalism's 5W1H framework. Finally, it merges chunk-level subgraphs into document-level representations. The pipeline leans on legal-domain models for extraction and LLMs for structured generation — a pragmatic hybrid that avoids the fragility of pure end-to-end approaches while leveraging LLM flexibility for schema-conformant output. The results tell two distinct stories. For claim classification on a held-out set, the graph-structured classifier outperforms both raw-text and linearized-graph baselines. This is the strong result — it demonstrates that the graph structure carries information that flat representations lose, particularly the temporal and causal ordering of events that matters enormously in discrimination law. For document-scoped QA, EKG-only retrieval also improves performance. But for open-retrieval QA, gains are limited by low first-stage candidate recall — the graph helps you reason over evidence you've already found, but doesn't help you find it in the first place. The validation regime is a mix of human and multi-model assessment for graph quality, plus standard classification metrics on a held-out set. The authors are refreshingly honest about the open-retrieval QA limitation, which many teams would have buried. However, there's no pre-registration, no community benchmark for legal EKGs (because one doesn't exist yet), and the dataset comes from CourtListener — public but not a standardized benchmark. The human evaluation adds credibility but introduces subjectivity. The broader field fight here is about whether structured representations still matter in the age of large language models. One camp says throw everything into a big context window and let attention figure out the structure. The other says explicit structure — knowledge graphs, event schemas, causal chains — remains necessary for domains where reasoning about sequences and roles is the task, not a byproduct. ARGUS lands firmly on the structure side, and the claim classification results support that bet for this specific domain. The honest gap: ARGUS hasn't been tested against a strong LLM-only baseline where, say, GPT-4 or Claude simply reads the full complaint and classifies directly. The authors built the EKG pipeline and compared graph-structured inputs to raw/linearized inputs within their own framework — but the elephant in the room is whether a sufficiently large context window with chain-of-thought prompting achieves comparable classification without the graph construction overhead. That experiment is conspicuously absent, likely because the answer is uncomfortably competitive, and the paper's value proposition rests on the graph being worth building.