// The problem (shared/commingled cloud) · privacy pillars (3 cards) · why. function Problem() { return (
The problem

Most hosting providers can read everything you store with them: your files, your mail, your keys, sitting in plaintext on infrastructure you'll never see, under whatever jurisdiction they answer to.

); } function Solution() { const cards = [ ['Encrypted so even we can\u2019t read it', 'Cloud storage and business email are encrypted with keys we never hold. We can\u2019t read your data, hand readable copies to anyone who demands them, or inject code to surveil what you store.', 1], ['We own the hardware', 'Every workload runs on machines we buy, rack, and operate ourselves. No third-party operator sits between you and your data.', 2], ['Data stays in Canada', 'Hosted in a Tier 3 datacenter in Toronto. PIPEDA, GDPR processor terms, and a clear data-processing agreement: residency you can point to.', 3], ]; return (
How we keep it private

Privacy isn't a setting. It's the architecture.

We own our hardware, run it with in-house engineers, and encrypt your storage and mail so the keys never leave you: privacy that's built into the architecture, not bolted on top.

{cards.map(([title, body, n], i) => )}
); } function SolutionCard({ title, body, n, first }) { const [hover, setHover] = React.useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ padding: 32, borderLeft: first ? 'none' : '1px solid var(--rule-soft)', background: hover ? 'var(--bg-alt)' : 'var(--surface)', transition: 'background 140ms', position: 'relative', }}> 0{n}

{title}

{body}

); } function WhyTensorHost() { const points = [ ['Zero-knowledge storage & mail', 'Encrypted with keys we never hold.'], ['Owned hardware', 'Operated end to end, in-house.'], ['In-house engineers', 'No third-party access to your data.'], ['Canadian data residency', 'Toronto · PIPEDA · GDPR processor.'], ['Flexible payment', 'Card, crypto, bank transfer, even cash by post.'], ['Predictable pricing', 'No spot swings, no surprise egress.'], ]; return (
Why TensorHost

What shared hosting
doesn't give you.

The control of running your own hardware, without buying a rack. Encryption, residency, and a real operator behind it.

{points.map(([k, v]) => (
{k} {v}
))}
); } Object.assign(window, { Problem, Solution, WhyTensorHost });