← All Posts
Business · Part 3 of 4

Compliance and Legal — What Nobody Tells You

March – April 2026
Shanell Guardo
Shanell Guardo
Founder, KinTech LLC
7 min read

The Question That Changed the Roadmap

We were about a month out from launch, deep in feature work, when I sat down with our compliance review and one question stopped me cold: "Where is the user's delete my account endpoint?"

We had login. We had registration. We had account editing. We did not have a way for a user to delete their data — and in Virginia, where we operate, that's not a nice-to-have. It's a legal right under the Virginia Consumer Data Protection Act. The work to build it became a launch blocker.

That's compliance work in one paragraph. A product feels done. A law tells you it isn't.

The Work Between "It Works" and "You Can Operate It"

A working product and a legally operable product are different things. March and April were spent closing that gap — the compliance, privacy, and legal work that doesn't show up in demo videos but determines whether you can actually serve real users.

Privacy Policies and Terms of Service

Every platform that collects user data needs a privacy policy. Every platform users interact with needs terms of service. These aren't templates you download and forget — they need to accurately describe what data you collect, why, how you store it, who you share it with, and what rights users have.

For KinTrades, the privacy policy had to address specific categories: personal identification, work history, location data, skill demonstrations (photos and videos), and sensitive eligibility information for tax credit programs. Each category has different handling requirements.

These documents need updating every time the product changes in a way that affects data handling. A new feature that collects a new type of data means a privacy policy update.

SMS and Communication Consent

You cannot send a text message to a user without their explicit consent. This isn't a suggestion — it's federal law (TCPA), with penalties up to $1,500 per message. The same applies to marketing emails under CAN-SPAM.

We implemented consent tracking at the point of collection: when a user provides their phone number, they explicitly opt in to verification codes and platform notifications. That consent is recorded with a timestamp and stored alongside the user's profile. If a user opts out, the platform stops sending immediately.

The implementation is straightforward. Understanding what's required and ensuring it's done correctly is the hard part.

State Data Protection: VCDPA

Operating in Virginia means compliance with the Virginia Consumer Data Protection Act. This gives users specific rights:

  • The right to know what personal data is being collected
  • The right to access and download their data
  • The right to request deletion of their data
  • The right to opt out of data processing for certain purposes

Each of these rights requires a corresponding feature in the platform. "Download My Data" isn't a nice-to-have — it's a legal requirement. Data deletion can't just remove the user's profile — it has to cascade through every table and service where their data exists.

If you're launching in a state with consumer data protection laws (Virginia, California, Colorado, Connecticut, and growing), these features are launch blockers. Build them in alongside the feature that creates the data, not as a backlog item to address later.

Automated Decision Transparency

KinTrades uses algorithms to match workers with jobs and to surface reliability signals. When an algorithm influences whether a worker gets seen by an employer, transparency is both an ethical and legal obligation.

We built disclosures that explain what factors are considered in matching and scoring, without revealing the specific weights or formulas. Users have the right to understand that an algorithm is being used and what types of data inform it. They don't need to see the source code, but they can't be left in the dark either.

Content Moderation

Workers upload photos and videos of their work. Employers upload company logos and job descriptions. Any platform that accepts user-generated content needs a content moderation strategy — both for legal compliance and for platform quality.

We built automated moderation for uploaded media and content review for text submissions. The moderation system needs to be fast enough not to block the user experience but thorough enough to catch problematic content before it's visible to other users.

Platform Classification

One of the most important legal distinctions: KinTrades is a hiring platform, not a staffing agency. The platform connects workers with employers — it does not employ workers, assign work, or control working conditions. This classification affects everything from liability to tax obligations to regulatory requirements.

The language in terms of service, the design of the hiring workflow, and the features the platform offers all need to reinforce this distinction. A feature that gives the platform too much control over the employment relationship could reclassify the business.

Sensitive Data Handling: The WOTC Decision

Tax credit programs like the Work Opportunity Tax Credit (WOTC) require collecting sensitive eligibility information — information far more sensitive than a standard profile. That data has stricter handling requirements: encryption at rest, tighter access controls, retention limits, and separation from general platform data.

Supporting WOTC added significant compliance overhead. The business value justified it — employers get up to $9,600 per eligible hire, which is a real financial reason to hire through KinTrades. But the implementation required dedicated encryption, key management, and data access controls beyond what the rest of the platform needed.

That tradeoff — accept the compliance cost to deliver real economic value to employers and workers — is the kind of decision compliance work surfaces. You can't make it well unless you understand what the law requires.

The Trademark Pivot — A Week Before Launch

A week before the April hiring event — when the team was full-out on testing and last-mile launch prep — I got news I didn't have time for. The trademark applications I'd filed for both the company brand (KinTech) and the platform (then called GetWorkKin) came back with conflicts. I didn't need a clean trademark to operate KinTech LLC; an entity name and a trademark are different things. But I needed one for the platform we were about to put in front of real employers and workers.

I had two choices. Push forward and risk a takedown notice after launch. Or stop everything and find a name that would actually clear.

I stopped. I had to. A platform that gets a cease-and-desist the week after launch loses partner trust at exactly the wrong moment, and rebuilding trust is far more expensive than rebuilding a name.

So while the rest of the team kept testing and prepping, I spent days I genuinely didn't have on trademark research. What was clearable? What was available across the relevant classes? What actually fit the product? The constraints were brutal — defensible, available, clear enough that workers and employers would understand what the platform did without needing a tagline.

We landed on KinTrades. "Kin" carried over the brand work we'd already done. "Trades" did what the old name didn't — it said what the platform was, in one word, to anyone who saw it.

We pushed the rename through the codebase, the domain setup, the email systems, and the launch materials in the few days we had. The April hiring event went live as KinTrades.

Trademark search is one of the cheapest pieces of legal work — and one of the most expensive things to skip.

What I'd Do Differently

Two things. First, I'd write the data-deletion endpoint the same week I write the registration endpoint. Second, I'd run trademark searches the same week I picked a name — before the cloud accounts, the email setups, the printed materials, the partner conversations that committed the name to memory. Doing trademark work the week before launch is the worst possible time, and ours did.

The Lesson

Compliance isn't a phase. Every new feature needs to be evaluated through a compliance lens before it's built, not after. The cost of retrofitting compliance is always higher than building it in. And the cost of non-compliance — fines, user trust, legal liability — can end a company.

For founders: budget time and money for legal review. Read the regulations yourself; they're written in plain enough language. And build compliance features into your product roadmap, not your tech debt backlog.