Public docs markdown

Runtime Boundaries

A public explanation of how the website, docs, console, and canonical backend relate to each other.

# Runtime Boundaries

Parametrig separates its public and operator-facing surfaces intentionally.

## Public Website

`parametrig.com` is the marketing and company surface.

It explains what Parametrig is. It is not the canonical business-logic host.

## Public Docs

`docs.parametrig.com` is the curated documentation surface.

It should explain public product, API, and platform concepts without exposing
private planning material.

## Console

`console.parametrig.com` is the operator workspace.

It is a browser-facing client over the canonical backend. It is not the final
source of truth for auth, RBAC, or business state.

## Canonical Backend

`api.parametrig.com` is the canonical backend.

It is the source of truth for public API routes, human auth, admin behavior,
and the current control-plane model.

## Boundary Rule

When in doubt:

- the website explains
- the docs clarify
- the console operates
- the backend decides

## Illustrative Shape

```text
public website -> company and product posture
public docs    -> curated contract and platform explanation
console        -> operator-facing browser client
api backend    -> canonical runtime authority
```