lucidity

the practice of making things clear.

16 × 1.5 = 24
72px / 9 units Lucidity
48px / 6 units Lucidity
32px / 4 units Lucidity
24px / 3 units Lucidity
16px / 2 units Lucidity
12px / 1.5 units Lucidity

Every size is derived from the previous. 16 becomes 24. 24 becomes 32. The relationships are not arbitrary -- they are discovered, the way mathematical constants are discovered rather than invented. Clarity compounds. Each correct proportion makes the next decision easier, until the system designs itself.

Structure = Freedom
0 8 16 24 32 40 48

240px -- The fundamental module. One column of content. Enough for a heading, a short paragraph, a single thought.

480px -- Two modules. The comfortable reading width. Long-form text lives here, where the eye can scan without losing its place.

720px -- Three modules. The full content width. Used for layouts that pair text with diagrams, or for statements that need room to breathe.

8 × 4 = 32
h1 — 48px h2 — 32px h3 — 24px body — 16px code — 14px
const system = {
  unit: 8,
  scale: [12, 16, 24, 32, 48, 72],

  spacing(n) {
    return this.unit * n;
  },

  isAligned(value) {
    return value % this.unit === 0;
  }
};

Code clarity and design clarity are the same discipline applied to different materials. A well-structured function and a well-structured layout share a fundamental quality: you can see what they do without reading the instructions. The structure is the instruction.

Typography = Structure

Clarity is not simplicity. It is the result of eliminating confusion.

Precision

Every decision is measurable. Every measurement is intentional. The difference between 24px and 25px matters -- not because users can see it, but because the system can feel it.

Consistency

Use one font family. One accent color. One spacing system. Constraint is not limitation -- it is the foundation of recognizable pattern. Consistency is how clarity scales.

Visibility

Show the structure. Let the grid be seen. The best systems are not hidden -- they are transparent, teaching their logic to anyone who looks closely enough.