Why the Best Interfaces Start as Scribbles: Designing for What People Actually See

Periklis Papanikolaou

Hatched by Periklis Papanikolaou

May 21, 2026

9 min read

67%

0

The Hidden Problem: We Trust the Wrong Kind of Precision

What if the most important product bugs are not the ones that break functionality, but the ones that break perception?

A button can technically work, a page can load, a dashboard can compute every number correctly, and yet the experience still feels broken. Why? Because users do not experience interfaces as code, they experience them as movement, timing, and visual stability. The eye catches a shift before the mind has time to explain it. That tiny jump, flicker, or late-loaded element can create a stronger memory than the feature itself.

This is the deeper tension at the heart of modern interface design: we optimize for correctness in systems, but humans judge quality through what they can see. And the gap between those two realities is where trust is won or lost.

That is why two things that seem unrelated at first, sketching interfaces by hand and measuring layout shifts in production, actually belong to the same conversation. One is the act of making structure visible before code exists. The other is the act of making invisible instability visible after code ships. Together they point to a larger principle: good interfaces are not just built, they are seen into being.

From Scribble to System: Why Roughness Can Be an Advantage

There is something revealing about drawing an interface directly inside a notebook or a notebook-like environment. It lowers the prestige of the first draft. Instead of treating a chart, form, or dashboard as a polished artifact, you treat it as a hypothesis about how someone will look at it.

That shift matters because the earliest version of an interface is often where the most important decisions are made. Where should the eye go first? Which information can be grouped? Which thing needs to be obvious before the user even thinks to ask? A quick sketch is not about beauty. It is about sequencing attention.

This is where many teams go wrong. They begin with implementation details, and only later ask whether the layout makes sense as a visual experience. But visual comprehension is not a final coat of paint. It is the architecture. A rough drawing can expose this faster than a spec document because it forces you to confront arrangement, hierarchy, and spacing in a single glance.

Think of a sketch as a kind of design lie detector. In prose, almost any layout sounds reasonable. In a drawing, bad assumptions are instantly embarrassing. The chart is too crowded. The labels compete with the data. The control is too far from the thing it affects. A rough mockup reveals the truth that language can conceal: attention is finite, and interfaces spend it.

The first version of an interface is not a prototype of code. It is a prototype of perception.

That is why direct drawing tools matter. They make it possible to move from idea to visual form without the friction that usually filters out messy thinking. The point is not to create a perfect artifact. The point is to get to the part where the user’s eyes start telling you the truth.


The Real Metric Is Not Stability, It Is Felt Stability

Once an interface is live, the same question returns in a new form: does the page behave like a coherent object, or does it lurch around like a cart with one broken wheel?

Layout shift is technically a rendering problem, but experientially it is a trust problem. A page that changes shape after content arrives creates a subtle but powerful sense of unreliability. Even when the data is correct, the interface feels unprepared. The user is forced to reorient again and again, and each reorientation costs cognitive energy.

This is why visualizing layout shifts is so powerful. Numbers alone can say a shift occurred, but a visual representation shows the drama of the shift. You can see which element moved, how far, and in what sequence the page destabilized. Suddenly the issue is no longer abstract performance trivia. It becomes a story about where the interface failed to honor the user’s gaze.

That framing changes how we think about frontend quality. We often talk about performance as speed, but speed is only part of the story. A page can be fast and still feel jerky. It can be interactive and still feel untrustworthy. The missing metric is not merely time, but continuity of experience.

Imagine reading a sentence where every third word jumps to another line after you start reading. You would not say the sentence is slow. You would say it is unreadable. That is the emotional effect of layout shift. It interrupts the basic promise that what you are looking at will remain where you found it long enough for you to understand it.

The best systems therefore optimize not only for delivery, but for stability of attention. This is a much more human standard. It asks not, “Did the page load?” but, “Could the person keep their place in the world while the page loaded?”

A Shared Mental Model: Interfaces as Choreography, Not Objects

Put the two ideas together and a deeper framework emerges. An interface is not a static object. It is a choreography of expectation.

Before the interface is built, sketching helps you stage that choreography. You decide the order in which meaning appears. After the interface is built, layout shift measurement reveals whether the choreography holds together or collapses into awkward improvisation.

This suggests a useful mental model:

1. Draft the path of attention. Where does the eye land first, second, and third? What is the visual grammar of the page?

2. Preserve the path under real conditions. When fonts load, data arrives, images render, and components hydrate, does the page keep its shape, or does it renegotiate the scene?

3. Compare intent to motion. If the user’s attention goes somewhere different than you intended, that gap is the bug, even if the code is correct.

This model is especially useful because it bridges design and engineering without collapsing one into the other. Designers often think in spatial terms. Engineers often think in system terms. But the user lives in a temporal world, where space changes over time. The real experience of an interface is the movement of meaning.

That is why sketching and shift visualization are complementary disciplines. One makes the intended motion legible before implementation. The other makes unintended motion legible after implementation. Together they turn a vague aesthetic concern into a concrete engineering target.

Every interface has a script. The question is whether the script is written before the performance or discovered as the stage falls apart.

The Most Useful Question to Ask: What Must Never Move?

Once you see interfaces as choreography, one question becomes extremely valuable: what must never move?

This is not merely a CSS question. It is a product question. Some parts of a page can be fluid without harm. Others are anchors. If they move, the user loses context. A loading state might be acceptable in one place and disastrous in another. A chart updating in a side panel may be fine. The main headline shifting downward after content arrives may not be.

Here are a few concrete examples:

  • In a news article, the title and opening paragraph should be anchored, because they frame comprehension.
  • In a checkout flow, the total price and primary action should remain stable, because trust depends on knowing what is being confirmed.
  • In a dashboard, axis labels and legend positions should stay fixed, because moving labels can make a graph feel broken even when the data is accurate.
  • In a notebook or exploratory analysis environment, rough drawings can help you discover layout issues before they become visual habits.

The deeper point is that not all motion is bad. Motion can guide attention, show causality, and signal responsiveness. But motion must be intentional. Unintentional movement is noise. It forces the user to spend effort just to reestablish orientation.

This is where many teams can improve immediately. They think of layout shift as a technical metric to reduce, but the more important practice is to classify interface elements by their relationship to attention. Ask which elements are anchors, which are followers, and which are allowed to be fluid. Anchors should be protected aggressively. Followers can adapt. Fluid elements can animate, but only if they do not destabilize the scene.

That simple classification can prevent a surprising amount of user frustration.


Key Takeaways

  1. Treat the first draft as a perception test, not an art project. Draw the interface early to expose hierarchy, spacing, and attention flow before implementation hardens bad assumptions.

  2. Measure what users feel, not just what the browser reports. Layout shifts matter because they interrupt orientation and damage trust, even when functionality remains correct.

  3. Design for anchors. Identify which elements must stay still, such as titles, totals, actions, and labels, then protect them from late movement.

  4. Separate intentional motion from accidental motion. Animations and transitions can guide attention, but unexpected reflow creates cognitive friction.

  5. Use visual debugging as a communication tool. Showing how an interface moves often reveals more than a table of metrics, especially when designers and engineers are trying to align.


Why This Matters More as Interfaces Become Smarter

As interfaces become more dynamic, they also become easier to get wrong. Data arrives later. Components hydrate asynchronously. Personalized content changes layout. AI generated responses may vary in length. A modern page is not a fixed picture, it is a negotiated outcome among many delayed pieces.

That makes the old assumption, that an interface can be judged by final appearance alone, increasingly obsolete. We need to evaluate how the interface gets to its final state. Does it preserve the user’s place? Does it reveal structure before content fills in? Does it keep important elements anchored while the rest adapts? These are not cosmetic questions. They are questions about cognition.

The beauty of sketching and the rigor of layout shift analysis meet here. Sketching forces clarity about structure before complexity enters. Shift analysis forces honesty about structure under real complexity. One is how you prevent chaos. The other is how you detect it.

A mature product team learns to move fluidly between these modes. In early exploration, rough drawings are enough to expose the shape of the experience. In production, visual diagnostics show whether the real system respects that shape. The same mental habit underlies both: do not confuse the thing as intended with the thing as experienced.

The best interfaces are not the ones with the most features or the slickest polish. They are the ones that make meaning arrive in a way the human nervous system can comfortably follow.

Conclusion: Design for the Eye That Has Not Yet Finished Understanding

The deepest lesson connecting these ideas is simple but easy to ignore: users do not just read interfaces, they inhabit them.

That means your job is not only to make things look good at rest. It is to make them remain legible while they change. It is to give the eye a stable place to stand while the system does its work. A sketch can reveal whether the scene makes sense. A layout shift visualization can reveal whether the scene stays sensible. Together they remind us that the real unit of design is not the component, the chart, or the page. It is the user’s continuing sense of orientation.

If you want better products, do not ask only whether the interface works. Ask whether it holds still long enough to be understood.

That question changes everything.

Sources

← Back to Library

Hatch New Ideas with Glasp AI 🐣

Glasp AI allows you to hatch new ideas based on your curated content. Let's curate and create with Glasp AI :)

Start Hatching 🐣
Why the Best Interfaces Start as Scribbles: Designing for What People Actually See | Glasp