Neural Data Privacy for Consumer Neurotech: A Compliance Guide
What counts as protected neural data under the Colorado and California brain-data amendments, and the data-handling architecture that keeps a BCI or wearable-EEG product compliant from first prototype.
Key Takeaways
- Colorado (HB 24-1058, effective August 2024) and California (SB 1223, effective January 2025) both amended their consumer privacy acts to classify neural data as sensitive personal data, requiring opt-in consent, purpose limits, and deletion rights.
- Protected neural data is broader than raw EEG. It covers any information generated by the nervous system — brain, spinal cord, and peripheral nerves — including derived features, model inferences, and the mental states a device predicts, not just the voltage traces.
- The compliant default is on-device or edge processing: extract features locally, transmit only what the product genuinely needs, and never let raw neural streams touch a third-party model endpoint without an opt-in and a data-processing agreement.
- A defensible architecture separates raw signal, derived features, and identity into different stores with different retention clocks — raw data purged in days, features pseudonymized, identity isolated behind strict access controls.
- A NeuroRights Foundation review of 30 consumer neurotech companies found 29 retained effectively unlimited rights to access users' neural data — the current market baseline is exactly what the new laws are written to end.
- Retrofitting neural-data compliance after launch is a rebuild, not a patch. Building consent, minimization, and store separation into a $50k-150k MVP costs far less than re-architecting a shipped product under regulatory pressure.
Under Colorado's HB 24-1058 (effective August 2024) and California's SB 1223 (effective January 2025), neural data is now legally "sensitive" personal data – and the definition is far broader than raw EEG. Both states protect any information generated by measuring activity of the central or peripheral nervous system, which reaches the derived features, model inferences, and predicted mental states your product computes, not just the voltage traces off the electrodes. For a BCI or wearable-EEG product that means opt-in consent, purpose limitation, and deletion rights are no longer optional, and the cheapest way to meet them is to design for them before the first prototype ships.
The market this regulates is one that has largely ignored the problem. According to the NeuroRights Foundation, 2024, of 30 consumer neurotechnology companies reviewed, 29 retained effectively unlimited rights to access users' neural data with no meaningful limits on that access. That baseline – brain data collected under vague terms and freely shared – is exactly what the new state laws are written to end, and it is the standard your product will be measured against.
What exactly counts as protected neural data?
The most common and most expensive misconception is that only the raw signal is regulated. Both statutes define neural data by its source, the nervous system, not its format – so the protection travels with the information as you process it. Here is how the scope maps onto a typical neurotech data pipeline:
| Data stage | Example | Protected? |
|---|---|---|
| Raw signal | Multi-channel EEG voltage time series | Yes – core neural data |
| Derived features | Band power, ERPs, connectivity metrics | Yes – generated from nervous-system activity |
| Model inferences | Predicted focus, drowsiness, intent, mood | Yes – inferred mental state |
| Device metadata | Session length, firmware version | Not neural, but may still be personal data |
| Account identity | Name, email, device serial linkage | Personal data; sensitive when joined to neural data |
The practical takeaway: the moment your model turns a signal into "this user is stressed" or "this user intends to move left," that inference is regulated neural data too. You cannot launder brain data into a lower-sensitivity tier by processing it. This is also why the raw-signal handling choices in our guide to processing raw EEG data for real-time BCI are inseparable from your compliance posture – where you run the pipeline determines how much regulated data ever leaves the device.
Why don't HIPAA and FDA rules already cover this?
Because most consumer neurotech deliberately sits in the gap between them. HIPAA only binds covered entities – providers, plans, clearinghouses – so a meditation headband sold direct to consumers is not covered no matter how intimate the data. FDA medical-device regulation applies to products making clinical claims, which wellness devices carefully avoid. The result was that the single most sensitive category of personal data – a direct readout of nervous-system activity – was among the least regulated at the federal level.
Colorado and California closed that gap not by inventing a new medical-device regime but by adding neural data to the "sensitive" tier of their existing general consumer-privacy laws. That is a meaningful design decision: it means the obligations look like GDPR-style data protection – consent, minimization, access and deletion rights, purpose limitation – rather than clinical safety rules. If your team has shipped under GDPR or built a HIPAA-compliant health app, the muscle memory transfers directly; the difference is the data category is now brain activity.
What does a compliant data-handling architecture look like?
The organizing principle is data minimization enforced by physical architecture, not policy promises. A regulator, and a breach, will both test where the data actually lives – so the design should make the compliant path the only path. Four choices carry most of the weight.
1. Process at the edge by default. Run filtering, feature extraction, and inference on-device or on a local gateway wherever the hardware allows, and transmit only the minimized output your product genuinely needs. If a focus-training app needs a single attention score per second, it should never stream 256 Hz multi-channel raw EEG to the cloud. On-device processing shrinks the regulated surface, cuts breach exposure, and usually improves latency for a real-time loop – the same trade-off we lay out in on-device vs cloud AI, with the privacy stakes turned up.
2. Separate the stores. Raw signal, derived features, and account identity should live in different stores with different access controls and different retention clocks – never in one joined table keyed by user ID. Raw signal, if retained at all, gets a short life measured in days; features are pseudonymized and keyed to a rotating token; the identity map that re-links a token to a person sits behind the strictest access controls in the system. This separation is what makes a deletion request tractable and a breach survivable.
3. Make consent granular and opt-in. Sensitive data requires affirmative opt-in, and bundling "use my brain data to run the device" with "use my brain data to train shared models" is precisely the vague, all-or-nothing pattern the laws target. Give users separate toggles for core function, product improvement, and any third-party sharing, and make refusal of the optional ones cost them nothing. Log consent state as data you can query, because you will need to prove it.
4. Gate every third party. No raw neural stream reaches a foundation-model API or analytics vendor without an opt-in and a data-processing agreement that binds that party to your retention and deletion rules. The default answer to "can we just pipe this to a cloud model" is no; the exception requires a contract and a logged consent, and it should still send features rather than raw signal wherever possible.
How much does building this in cost – and what does retrofitting cost?
Building consent flows, store separation, and edge processing into a product from the start is a design decision, not an infrastructure tax, so it fits inside a normal build budget: roughly $15k-50k for a single privacy-critical feature such as a consent-and-deletion service, and $50k-150k for a focused neurotech MVP shipped in a 30-45 day window with the architecture above baked in. The recurring cost of governance, audits, and data-lifecycle maintenance lands in the usual 20-40% of build cost per year.
Retrofitting is where the money goes. A product that already streams raw neural data into a single shared cloud store cannot be made compliant with a settings toggle – you have to re-architect the pipeline, untangle joined data, rebuild consent, and prove deletion across systems that were never designed to forget. That work routinely costs as much as the original build and freezes the roadmap while it happens, all under the deadline pressure of a law already in force. The same dynamic that governs any pilot that fails to reach production applies here: decisions deferred to "later" become the most expensive line items in the project.
Where should a neurotech team start?
Start by drawing the data-flow diagram before you write pipeline code: map every stage from electrode to inference, mark which stages are protected neural data (most of them), and decide for each transfer whether it can happen on-device instead. Then set retention clocks per store, wire granular opt-in consent, and confirm you can honor a deletion request end to end. Treat Colorado and California as the floor, not the ceiling – they are the template other states are already copying, so building to the strictest interpretation now is the cheapest way to stay compliant as the map fills in.
This is the kind of architecture that is hard to bolt on and straightforward to design in, which is why it belongs in the scoping conversation, not the security review. If you are building a BCI or wearable-EEG product and want a data architecture that treats neural data as the sensitive category it now legally is, see our services – we scope privacy-by-design neurotech builds so the compliant path and the shipped product are the same thing.
Frequently Asked Questions
What counts as protected neural data under the Colorado and California laws?
Both states define neural data as information generated by the measurement of activity of an individual's central or peripheral nervous system — the brain, spinal cord, and the nerves that branch through the body. Critically, it is not limited to raw EEG voltages. The definition reaches derived features, signal-processing outputs, model inferences, and the mental or cognitive states a device predicts from those signals. If your product measures nervous-system activity and turns it into anything, the outputs are covered too. Colorado's HB 24-1058 folds neural data into the 'sensitive data' category of the Colorado Privacy Act, and California's SB 1223 adds it to 'sensitive personal information' under the CCPA, both of which trigger opt-in consent, purpose limitation, and deletion rights.
Is a wearable EEG headband or meditation device regulated as a medical device?
Usually not, and that is exactly the gap the state laws close. Most consumer wearable-EEG products — focus trainers, meditation headbands, sleep bands — are marketed as wellness devices and fall outside FDA medical-device regulation and outside HIPAA, because HIPAA only applies to covered entities like providers and health plans. That left the neural data they collect almost entirely unregulated at the federal level. Colorado and California's amendments deliberately regulate the data itself under general consumer-privacy law, so a wellness headband that never touches a doctor is still bound by opt-in consent and deletion obligations for the brain data it gathers.
Can I send raw EEG data to a cloud AI model for processing?
Only with explicit opt-in consent and a data-processing agreement with that provider, and even then it is rarely the right design. Neural data is sensitive data, so any transfer to a third party — including a foundation-model API — needs a lawful basis, a defined purpose, and a contract that binds the processor to your retention and deletion rules. The stronger pattern is to process raw signal on-device or at the edge, extract only the features your product actually needs, and send those minimized outputs rather than the raw stream. That shrinks the regulated surface, cuts breach exposure, and often improves latency for a real-time BCI.
How long can I retain neural data, and do users have a right to delete it?
Both laws grant deletion rights, so you must be able to find and erase an individual's neural data on request across every store it lives in. There is no fixed statutory retention cap, but purpose limitation means you can only keep it as long as the stated purpose requires — indefinite retention 'in case it's useful' is not a lawful purpose. A defensible policy purges raw signal within days, keeps only pseudonymized derived features for as long as the product function needs them, and documents the clock for each tier. If you cannot delete a user's raw and derived neural data on demand, you are not compliant regardless of retention length.
What does a compliant neural-data architecture actually cost to build?
Building consent flows, store separation, and data minimization into a neurotech product from the start typically fits inside a normal MVP budget — roughly $50,000 to $150,000 for a focused build over 30 to 45 days — because you are making design choices, not bolting on infrastructure. The expensive path is retrofitting: re-architecting a shipped product that streamed raw neural data to a shared cloud store can cost as much as the original build and stall your roadmap for months. Ongoing compliance and data-governance maintenance runs in the usual 20-40% of build cost per year. Privacy-by-design is the cheap option here, not the premium one.
Do these state laws apply to my company if I'm not based in Colorado or California?
Very likely yes. Both acts are extraterritorial: they apply based on where your users are, not where your company sits, and both cover businesses that process the personal data of residents of that state above certain thresholds. A neurotech startup incorporated anywhere that sells a headband to a Colorado or California resident is in scope for that resident's neural data. Because these two states are the template other states are copying — Montana has since followed — the practical planning assumption is that neural-data protection is becoming a national baseline, and building to the strictest standard now avoids a patchwork retrofit later.
Free Tools
Tell us what you're building — book a free scoping call.
Pick a time that works and walk us through your project — 30 minutes, straight to the point. You leave with a concrete plan, timeline, and cost. No sales pitch — if we're not the right fit, we'll say so.
Keep Reading
Get new playbooks by email
Occasional, no-fluff field notes on building production AI — new guides and tools, straight to your inbox. Unsubscribe anytime.