Why this is not a marketing line
Most legal-tech products treat survivor safety as a feature you add in the second version. A "quick exit" button shows up in the right rail. A privacy toggle gets hidden in settings. The product team ships, and the safety surface is a thin layer painted on top of a flow that was designed for a different user.
LawSensai's Family Law Center was built the other way around. The first design conversation was not "what does the dashboard look like." It was "what does a survivor see in the first five seconds, and what happens if the person they live with walks into the room?" Everything that comes after, the matter, the vault, the routing, the attorney handoff, was built on top of an answer to that question.
If you or someone you know is in immediate danger, the National Domestic Violence Hotline is at 1-800-799-7233 (call) or 88788 (text START). The NNEDV Safety Net Project (techsafety.org) publishes the technology-safety principles that inform much of the design described below. The point of the Family Law Center is not to replace those resources. It is to make sure a legal-tech product does not make a survivor's situation worse.
Here is what "survivor-safety-first" actually looks like in production code, not in marketing copy.
The quick-exit pill is always visible
Every page under /family renders a quick-exit pill in the top-right corner. It is not in a menu. It is not below the fold. It is a single piece of UI that follows you on every route, including triage, the matter dashboard, the vault, the settlement composer, every panel.
The pill is rose-600. That color was chosen deliberately. It is loud against the rest of the green-and-cream LawSensai palette so it stands out under stress. A survivor under partner surveillance should be able to find it without searching for it.
One click does three things at once:
- Replaces the current tab with a neutral safe page (a generic weather or news site).
- Scrubs the browser history for the session so the back button does not return to the matter.
- Invalidates the active Supabase session and clears the local auth tokens so anyone who reopens the browser cannot resume the session.
It is not a redirect. It is an exit.
Esc-Esc-Esc is the keyboard shortcut
Mouse-based exits are not always fast enough. Pressing the Escape key three times within roughly one second fires the same quick-exit logic as the pill. The hotkey is documented in the Help panel and surfaced as a tooltip the first time a user enters a matter.
The reason for three escapes rather than one is also deliberate. A single Escape is too easy to fire by accident (most modal dialogs use it to close), and an accidental quick-exit during a real session would be its own kind of cost. Three escapes in a one-second window is rare in normal use and almost impossible to fire by accident.
Browser-history scrub on exit
The browser back button is one of the more underappreciated risks on a shared device. A user closes a tab, hands the laptop back, and the next person hits Cmd-Shift-T (reopen closed tab) or the back arrow and lands back on the matter dashboard.
When the quick exit fires, the Family Law Center uses history.replaceState to rewrite the recent history entries so they point at the neutral safe page, not at the matter. The browser's session history for that tab no longer contains the matter URL. Reopening the closed tab opens the safe page, not the matter.
This is not perfect (a user who already opened multiple matter pages in multiple tabs has multiple histories to clear), but it closes the common case.
Safe-mode hides matter detail from the dashboard
A separate toggle, distinct from quick exit, is "safe mode." When safe mode is on, the user dashboard, the matters list, and the navigation breadcrumbs replace all matter detail with a neutral placeholder. The matter is still there, the data is intact, but the screen shows "Active matter" instead of "Divorce from Alex Doe" and "Document" instead of "Custody evaluation, signed 4/14/2026."
Safe mode is enabled by toggle from the user menu. It is also enabled automatically by shared-device detection when LawSensai sees signals that the device is shared (multiple recent logins from different user agents on the same machine, for example) without producing false positives on a family laptop used by one person from different browsers.
Safe mode does not just hide names. It also gates extraction (the LLM-driven document parser that pulls amounts and dates out of uploaded PDFs) and gates the AI brief generator. Both of those features can produce screen output that would be sensitive in front of the wrong person, so safe mode turns them off until you explicitly opt back in.
Attorney communication is opt-in, never automatic
The Family Law Center is connected to the LawSensai attorney directory and the ANS Family routing lane. None of that connection runs without an explicit action from the user.
The handoff packet is generated on the user's side. The "send to attorney" button is two clicks (compose the email, confirm the recipient and the scope). No data is sent to any attorney without the user pressing the button. There is no background sync. There is no "we've matched you with a local attorney, click here to start the conversation" email triggered by an algorithm.
This is a design choice with a cost. A more aggressive flow would convert better. But for a population that includes survivors whose addresses, finances, and legal status are themselves sensitive information, "we will only share what you explicitly tell us to share" is the contract that has to hold.
Survivor-tested copy, in English and Spanish
Every string on /family was reviewed against survivor-safety principles from NNEDV's Safety Net Project and adjusted for tone. The headline copy on the marketing page does not use language that could read as triggering on a shared device ("are you leaving your husband?"). The error states are neutral ("we could not load this matter") rather than alarming ("session expired, please log in immediately"). The dashboard does not show notification badges for unread legal documents in the global navigation; that detail only appears once you are inside the matter.
The Spanish locale is not a Google-translated overlay. It was reviewed by native speakers with attention to legal terminology and to the same neutral-tone principles applied to the English copy.
The k-anonymity floor on the public Trust Center
LawSensai publishes a Trust Center at /trust/brain and a Family-specific one at /trust/family. Both surfaces report aggregate counts (decisions made, agents running, audit-log entries written) so the public can audit what the platform is doing at the system level.
Every aggregate in those endpoints is gated by a k-anonymity floor of 5. If a category has fewer than 5 underlying records, the public response returns "fewer than 5" rather than the exact number. This applies across the board, but it matters most for Family. A category like "matters opened this week in state X with claim type Y" could, at small N, be re-identifiable. The k-anonymity floor blocks that.
The floor is enforced at the database query level, not in the UI. A request to the public stats API for a category below the floor returns the redacted bucket, not the raw count, regardless of which client is calling.
Responsible disclosure has a permanent home
If you are a security researcher, a DV advocate, or anyone else who finds something on the Family Law Center that should be reported, lawsens.ai/security/family is the responsible-disclosure surface. It documents how to reach the security team, what is in scope, the expected response time, and the safe-harbor commitment for good-faith research. It is not the marketing page. It is meant for the people who will press on the design.
The bottom line
Survivor safety on the first click is a different design constraint than "add a privacy toggle." It changes what the home page looks like, what the keyboard shortcuts do, what the default for attorney communication is, what the dashboard renders, and what the public stats endpoint will admit. The Family Law Center treats those choices as the foundation, not as a polish pass.
If you or someone you know is navigating a separation while staying safe, lawsens.ai/family is the surface. If you are a researcher or an advocate who wants to test or report on it, lawsens.ai/security/family is open. If you need help right now, the National Domestic Violence Hotline is at 1-800-799-7233, by chat at thehotline.org, or by text START to 88788.
LawSensai's Family Law Center is software, not crisis support, and is not a substitute for the safety planning a trained advocate can provide. Survivors in active danger should reach the Hotline or a local provider first. The product is built to be safe to use alongside that work, not in place of it.


