Conceptual Health is the world's first mathematically unified care platform. Sign up once, and every property — Guardian Orb, Pharmacy, hc.exchange, the chain — knows it's you. Let's start where you fit.
Already have an account? Sign in to Guardian Orb →
>
);
};
// ============================================================================
// STEP 2 — Account basics (email, phone, password)
// ============================================================================
window.SU.Step2Account = function Step2Account({ data, set, isMinor }) {
const eyebrow = isMinor ? "Step 2 of 12 · Guardian basics" : "Step 2 of 12 · Account basics";
const subject = isMinor ? "your account" : "your account";
return (
<>
{eyebrow}
{isMinor ? <>How can we reach you?> : <>How can we reach you?>}
{isMinor
? "First, the parent's contact info. We'll add the dependent in a later step. This account holds custody — you can transfer to your child when they turn 18."
: "We'll send a verification code to confirm. Both email and phone help us recover the account if you lose access to one."}
We salt and hash with Argon2id; we never store the plaintext. You can add a passkey at the end so you don't need a password next time.
>
);
};
// ============================================================================
// STEP 3 — Legal identity (name, DOB, sex/gender, language, state, emergency)
// ============================================================================
window.SU.Step3Identity = function Step3Identity({ data, set, isMinor }) {
const D = window.SU_DATA;
return (
<>
This is the legal record that ties your care plan, insurance, and HEALTHCOIN™ ledger together. It must match your government ID. You'll add medical history in a later step.
>
);
};
// ============================================================================
// STEP 3M — Dependent profile (only in minor flow)
// ============================================================================
window.SU.Step3Minor = function Step3Minor({ data, set }) {
const D = window.SU_DATA;
return (
<>
Step 3 of 12 · About your child
Now, your child.
This profile is what lives at guardian-orb.conceptualhealth.com for your dependent. You manage it until they turn 18, then it transfers to them with consent. Children's accounts cannot trade on hc.exchange.
Per COPPA (children under 13) and HIPAA minor-record rules, parents and legal guardians can access their child's medical record. State law varies on adolescent confidentiality (especially around mental health, reproductive health, and substance use) — Guardian Orb honors your state's rules automatically.
>
);
};
// ============================================================================
// STEP 4 — KYC / Identity verification (Tier 2)
// ============================================================================
window.SU.Step4KYC = function Step4KYC({ data, set, isMinor }) {
const subject = isMinor ? "the guardian" : "you";
return (
<>
Conceptual Healthcare Corporation is a regulated entity. To unlock telehealth in all 50 states, custody-grade record storage, and trading on hc.exchange, we run a Tier-2 identity check through Identity verification. Your data leaves this page encrypted and never touches our servers in the clear.
US driver's license, passport, or state ID. Identity verification will scan, OCR, and check authenticity.
set({ idUploaded: true })}
label="Upload photo of front + back of your ID"
hint="Drag and drop or click · JPG, PNG, HEIC · 10 MB max"
accept="image/*"
/>
3 · Selfie liveness check
A short selfie video proves you match the ID. Three head turns, six seconds. We never train on your face — PCI-validated processor deletes the video after the match.
A utility bill, bank statement, or lease — dated within the last 90 days, showing your name and address. Required for OFAC + state-of-residence telehealth.
Why so much? Conceptual Healthcare Corporation is a HIPAA covered entity AND operates a money-services business (HCR / HEALTHCOIN™). FinCEN, OFAC, and state insurance commissioners all require Tier-2 KYC before we can prescribe across state lines or move HCR to your wallet.
>
);
};