Practical Lens 40: Important company facts should not be buried

If key pages about who you are, what you do, or why you are credible are too hard to reach, AI may treat them as secondary information.

What this lens means

AI systems do not only read individual pages. They also infer importance from site structure. If company identity, services, proof, leadership or reference pages are buried deep in the website, crawlers may not treat them as core evidence.

Key terms

Primary evidence
Core company pages and facts that crawlers can discover quickly and use to understand the business.
Crawl depth
The number of internal clicks needed to reach a page from the homepage or another core entry point.
Evidence hierarchy
The way navigation, internal links and page placement signal which company facts are central rather than secondary.

Why this happens

  • Important pages are several clicks away from the homepage or main navigation.
  • About, services, references or leadership pages are linked only from low-visibility areas.
  • Internal links give stronger priority to campaign pages than to identity pages.
  • The sitemap lists the page, but the live navigation does not support it as important.

What this usually indicates

  • Low evidence priority: important company facts exist, but appear structurally secondary.
  • Weak entity understanding: AI sees what the company promotes, but not enough about who the company is.
  • Fragmented proof: references, certifications or case studies are present but hard for crawlers to connect.
  • Deep crawl path: the page requires several clicks or indirect links before it is discovered.

What to verify (evidence-only)

  • Check whether identity pages are reachable from the homepage or main navigation.
  • Count click depth from the homepage to About, Services, References, Certifications and Contact pages.
  • Compare sitemap URLs with internal navigation and footer links.
  • Confirm that important company facts are linked from multiple relevant pages.
  • Review whether crawlers can discover identity pages without relying on search or JavaScript-only menus.

Terminal check example

Replace example.com with the audited domain. The goal is to inspect whether important identity pages are directly linked from core pages.

curl -s https://example.com/ | grep -iE "about|services|references|case|certification|contact"
curl -s https://example.com/sitemap.xml | grep -iE "about|services|references|case|certification|contact"
curl -s https://example.com/about | grep -iE "services|references|certification|contact" 

PowerShell check example

Use this on Windows to inspect whether identity pages are visible from the homepage and sitemap.

$home = Invoke-RestMethod -Uri "https://example.com/"
$home | Select-String -Pattern "about|services|references|case|certification|contact"

$sitemap = Invoke-RestMethod -Uri "https://example.com/sitemap.xml"
$sitemap | Select-String -Pattern "about|services|references|case|certification|contact" 

Frequently Asked Questions

Why does page depth matter for AI visibility?

Because pages that are hard to reach through internal links may be treated as less central evidence.

Is a sitemap enough to prove that a page is important?

No. A sitemap helps discovery, but internal linking and navigation show whether the page is structurally important.

What is the fastest check?

Start from the homepage and verify that About, Services, References and Contact pages are reachable through clear internal links.