Skip to content
Pillar 2

Technical SEO

Crawling, indexing, Core Web Vitals, Schema Markup and AI crawler management.

Definition

Technical SEO encompasses all server-side optimizations that ensure crawlers and AI systems can efficiently find, crawl, render and index content.

Key Takeaways

  • INP has replaced FID as a Core Web Vital since March 2024
  • JS-heavy websites pay a 9x crawl budget premium
  • AI crawlers do not execute JavaScript
  • Schema Markup increases AI citation rate by 2.8x
  • Edge SEO enables optimizations without developers

Technical SEO: The Enterprise Guide to Performance, Crawling, and AI-Readiness

Technical SEO is the foundation of every successful search engine optimization effort. Without a technically sound website, even the best content and strongest backlinks fail to deliver results. But the requirements have shifted dramatically since 2024: alongside the classic Googlebot, modern websites must now manage AI crawlers from OpenAI, Anthropic, and Perplexity. Privacy regulations like the EU AI Act and the Consent Mode v2 mandate are fundamentally reshaping the technical infrastructure. And new protocols like HTTP/3 and IndexNow are raising the bar on performance and indexing standards.

The scale of this shift can be summed up in a single number: only 48% of all mobile websites pass all three Core Web Vitals — despite five years of optimization pressure. At the same time, AI crawlers in some industries already generate more server load than Googlebot itself. For enterprise teams in DACH, this creates a new requirement matrix: performance, crawl governance, rendering strategy, and schema architecture must be optimized in parallel, without violating GDPR compliance or copyright.

For B2B companies with long sales cycles, technical SEO has taken on a second strategic dimension: it determines whether your expertise gets cited in AI answer systems. A website that ChatGPT, Perplexity, or Google's AI Overviews cannot read — because it requires JavaScript rendering, lacks schema markup, or blocks AI crawlers — loses visibility in exactly the channel where decision-makers increasingly start their research. Without a clear TDM opt-out, there is also legal risk and loss of control over how content gets used for AI training. In 2026, technical SEO sits at the intersection of engineering, marketing, legal, and data.

This guide covers every aspect of modern technical SEO — from Core Web Vitals to crawl management to AI-readiness and enterprise automation. Each section links to a deeper reference article in our Knowledge Base.

Core Web Vitals: Performance as a Ranking Factor

Since Google's Page Experience Update, Core Web Vitals have been official ranking factors. The three metrics measure how users actually experience site performance — not synthetically in a lab, but based on real Chrome user data from the Chrome User Experience Report (CrUX). That makes them the most reliable performance indicator Google publicly communicates:

Largest Contentful Paint (LCP) measures the load time of the largest visible element in the viewport. The threshold is 2.5 seconds. In practice, LCP is the most critical bottleneck of the three metrics: only around 62% of mobile pages reach the green range. The most common causes are uncompressed hero images without loading="eager" and fetchpriority="high", render-blocking CSS and JavaScript, server response times above 600 milliseconds, and missing CDN coverage in the DACH region. A systematic optimization playbook is available in Largest Contentful Paint (LCP): Load Time Optimization.

Interaction to Next Paint (INP) fully replaced First Input Delay (FID) in March 2024. INP measures page responsiveness across the entire session — not just the first interaction. The threshold is 200 milliseconds. Heavy JavaScript bundles over 200 KB, unoptimized third-party scripts (tracking pixels, chat widgets, A/B testing tools), and synchronous DOM manipulations are the most common causes of poor INP. For 2026, Google is rolling out Soft Navigation Tracking, which measures INP correctly for client-side routing in SPAs — particularly relevant for Next.js and React teams. Details in INP Optimization: Measuring and Improving Interactivity.

Cumulative Layout Shift (CLS) quantifies unexpected visual shifts during page load. The threshold is 0.1. Missing width and height attributes on images, dynamically loaded ad banners, consent banners that push content downward, and web fonts without font-display: swap cause layout shifts that frustrate users and cost rankings. CLS is the easiest of the three metrics to fix — and at the same time, the one most commonly broken by marketing scripts added after launch. Full coverage in Cumulative Layout Shift (CLS): Visual Stability.

Crucial for strategic prioritization: the three metrics are interconnected. Optimizing LCP via image preloading can degrade CLS. Improving INP via code-splitting can hurt LCP through additional network requests. For a complete overview and how to prioritize, see Core Web Vitals: LCP, INP, and CLS Explained.

Performance Infrastructure: HTTP/3 and Edge Optimization

Optimizing Core Web Vitals requires more than frontend code changes. The underlying infrastructure is a decisive factor in achievable performance.

HTTP/3 with the QUIC protocol eliminates the head-of-line blocking problem of HTTP/2, enables 0-RTT connections for returning users, and substantially improves performance on mobile networks with packet loss. For DACH websites with a large share of mobile users and fluctuating network quality in rural Austria and Switzerland, migrating to HTTP/3 is a measurable performance win — typically 100 to 300 milliseconds lower Time-to-First-Byte on repeat visits. Cloudflare, Fastly, and all major CDNs now support HTTP/3 by default; on self-managed Nginx or Apache installations, the configuration is still not universal. Technical details and migration steps in HTTP/3 and Performance Infrastructure for SEO.

Edge SEO takes this one step further: instead of implementing SEO changes in the backend or CMS, they are deployed directly at the CDN layer — via Cloudflare Workers, Vercel Edge Functions, or similar technologies. This enables fast A/B testing at the title-tag level, dynamic rendering for different bots, automatic hreflang injection, security headers without deployments, and performance optimizations without release cycles. Edge SEO is a game-changer especially for enterprise websites with complex legacy CMS, where a simple meta-tag fix would otherwise mean three weeks of release planning. The catch: edge logic creates a second source of truth beside the CMS — without clean versioning and documentation, technical debt accumulates in the edge layer. More in Edge SEO: CDN-Level Optimization with Cloudflare Workers.

Crawl Management: Googlebot, AI Bots, and Multi-Bot Governance

Managing crawlers used to be simple: configure robots.txt, submit an XML sitemap, done. Those days are over. In 2026, dozens of AI crawlers hit the web alongside Googlebot — GPTBot (OpenAI), ClaudeBot (Anthropic), PerplexityBot, Google-Extended, Applebot-Extended, Bytespider (TikTok), and many more. Each has its own crawl patterns, rate limits, and — most importantly — legal implications. On top of that, scrapers deliberately hide behind residential proxies and refuse to identify themselves as bots.

robots.txt remains the central control mechanism, but the requirements have grown more complex. The EU AI Act and the TDM Directive (Text and Data Mining) introduce new legal obligations: anyone wanting to prevent AI training on their content must signal this in a machine-readable way. A simple Disallow: / no longer suffices — specific TDM opt-out mechanisms are required, such as the tdm-reservation header, noai/noimageai meta tags, and explicit User-agent blocks for the relevant AI crawlers. Skipping this step means losing the legal standing to object to AI training on your content later. Full legal landscape and technical implementation in robots.txt and AI: EU Legal Landscape and TDM Opt-Out.

Crawl budget — the number of pages Google crawls within a given time window — is further strained by AI bots. When GPTBot and ClaudeBot together generate more requests than Googlebot itself, you need a multi-bot governance strategy: differentiated rate limiting per bot, server-side bot detection based on verified IP ranges, proactive monitoring via log-file analysis, and a clear decision matrix for which bots to allow, throttle, or block. The economic consequences are real: blocking AI bots means losing visibility in AI Overviews and ChatGPT answers — allowing them unrestricted access means paying infrastructure costs for content monetized elsewhere. Our article Crawl Budget 2026: Multi-Bot Governance for AI Crawlers provides the concrete architecture.

On the other side is proactive indexing: IndexNow is a protocol that enables instant indexing at Bing, Yandex, and other search engines — 3.5 billion URLs daily, without waiting for the next crawl. Google does not officially support IndexNow yet, but the integration is worth it for non-Google search engines (relevant in B2B DACH contexts including Copilot integration) and as a future-proof investment. More in IndexNow: 3.5 Billion URLs Daily — Without Google.

XML sitemaps remain essential despite IndexNow — especially for large websites with thousands of pages. Proper segmentation into separate sitemaps per content type (products, articles, categories), clean prioritization, and honest lastmod maintenance determine how efficiently Google finds and re-crawls the most important pages. Incorrect lastmod values — for example from automatic CMS triggers on meta-data changes without actual content updates — cause Google to ignore the signal entirely. Best practices in XML Sitemaps: Best Practices for Large Websites.

The broader topic of AI crawler management — from risk assessment to compliance to operational implementation — is covered in AI Crawler Management: Compliance Crisis and Enterprise Strategy.

URL Architecture: Redirects, Canonicals, and Hreflang

A clean URL architecture is the foundation for efficient crawling and unambiguous indexing. Three technical concepts are central here:

301 redirects permanently forward old or changed URLs to new target URLs. Implemented correctly, they transfer the full SEO value (link equity) of the old URL to the new one. Common mistakes include redirect chains (A→B→C instead of A→C, which burns crawl budget), redirect loops that Google abandons after a few attempts, missing redirects after website relaunches, and — particularly insidious — 302 redirects that should actually be 301s. Systematic guide in 301 Redirects: Using Redirects Correctly.

Canonical tags solve the duplicate content problem: when the same or very similar content is reachable under multiple URLs — through filter parameters, pagination, session tracking, or UTM parameters — the canonical tag tells Google the preferred version. Misconfigured canonicals are one of the most common causes of severe indexing problems: a blanket rel="canonical" pointing to the homepage can remove thousands of pages from the index. Equally important is the self-referential canonical on every indexable page — not just on duplicates. Details in Canonical Tags: Avoiding Duplicate Content.

Hreflang tags are essential for multilingual websites in DACH. They signal Google which language version of a page is intended for which market — de-DE, de-AT, de-CH, and en. Complexity scales exponentially with each additional language because every page must link back to every other (return-tag requirement). According to Ahrefs, around 67% of multilingual sites have hreflang errors. Particularly critical: AI platforms sometimes ignore hreflang entirely — ChatGPT reads the English version and translates the answer into German, even when a German version exists. DACH challenges and AI implications in Hreflang for DACH: AI Platforms Ignore Language Signals.

JavaScript SEO: Rendering, Indexing, and the AI Crawler Gap

Modern websites are increasingly built with JavaScript frameworks — React, Next.js, Vue, Angular, SvelteKit. This introduces specific SEO challenges because search engines must execute JavaScript to see page content.

Google operates a capable rendering service (Web Rendering Service, WRS) that can crawl and index JavaScript-based pages. But: rendering happens in a second, delayed step and is significantly more resource-intensive than classic HTML parsing. Pages using Server-Side Rendering (SSR) or Static Site Generation (SSG) are indexed faster and more reliably than pure Client-Side Rendered (CSR) applications. Fundamentals and optimization strategies in JavaScript SEO: Rendering and Indexing.

The situation becomes dramatically more acute with AI crawlers: GPTBot, ClaudeBot, PerplexityBot, and virtually all other AI bots typically do not execute JavaScript — they process only the initial HTML. Content available only via client-side rendering simply does not exist for these bots. This creates a visibility gap between Google (which renders JavaScript) and AI search systems (which don't). For companies that want to appear in AI Overviews, ChatGPT answers, and Perplexity sources, SSR or SSG is not optional — it is mandatory. Technical details of this gap in JavaScript Rendering and AI Crawlers: The Visibility Gap.

For teams working with Next.js 15 — one of the most popular React frameworks in enterprise — specific architectural decisions massively influence SEO: the separation between Server Components and Client Components, Partial Pre-Rendering (PPR) for hybrid pages, streaming SSR for fast Time-to-First-Byte, and correct meta-tag implementation via generateMetadata in the App Router. Teams that fail to handle these cleanly unintentionally produce client-only components containing critical SEO content — invisible to AI crawlers. Next.js 15 SEO Architecture: SSR, PPR, and Server Components provides the blueprints.

Structured Data: The Bridge Between Website and AI Understanding

Structured data — machine-readable information in JSON-LD format — helps search engines and AI systems understand the content of a website. Schema.org markup enables rich results in the SERPs (star ratings, FAQs, product prices, event data, breadcrumbs) and provides AI systems with the structured facts they need for accurate answers.

Structured data is no longer just a "nice-to-have" for rich snippets. It is becoming the AI understanding layer: when AI systems crawl a website, they interpret schema markup as a reliable, structured data source — unlike unstructured HTML prose, which must be inferred by NLP models. Organizations with clean, complete schema markup are demonstrably cited more frequently and more accurately in AI-generated answers. Industry analyses show up to three times higher citation rates for pages with complete Article, Organization, and FAQ markup compared to markup-free pages. Evidence and implementation strategy in Structured Data as AI Understanding Layer: Confirmed and Measurable.

For enterprise B2B companies, the question becomes one of prioritization: which schema types deliver the highest ROI? Organization and LocalBusiness form the identity foundation. Service describes the concrete offering. FAQ directly feeds answer boxes and AI citations. HowTo, BreadcrumbList, and Article cover the content layer. Person markup for authors strengthens E-E-A-T signals. Implementation is resource-intensive — especially when schema is not managed centrally through the CMS but maintained manually per template. A prioritization matrix and implementation guide in Schema Markup Implementation: Priorities for Enterprise B2B.

Schema as a bridge to AI citation: Google's Passage Ranking allows individual paragraphs of a long page to rank as standalone answers. Combined with GEO optimization (Generative Engine Optimization), this creates a content structure optimized for both classic SERPs and AI citations: clear question-answer paragraphs, self-contained citable chunks, semantic HTML, and schema markup that explicitly links statements to sources and authors. The optimal structure is described in Passage Ranking and GEO: Optimal Content Structure for AI Citation.

AI Content and Regulatory Requirements

The use of AI in content creation and its regulation by search engines and lawmakers is one of the most dynamic fields in technical SEO.

Google and AI content: Google's official position is clear — AI-generated content is permitted as long as it is helpful to users and not primarily created to manipulate rankings. In practice: volume without quality gets penalized through the Helpful Content System and site-wide spam signals, but AI-assisted content with genuine added value, editorial review, and clear author attribution is welcome. At the same time, the EU AI Act introduces new transparency obligations: certain AI-generated content must be labeled as such, particularly synthetic images, audio, and video. For pure text content the situation remains more nuanced, but the direction is clear. Full analysis in AI Content and Google: Enforcement and the EU AI Act.

Privacy and consent: Consent Mode v2 and the Privacy Sandbox are fundamentally reshaping the technical implementation of analytics and tracking. Consent Mode v2 has been mandatory for Google advertisers in the EU since March 2024 — but the impact extends far beyond ads. Missing consent signals cause Google Analytics data to be incomplete, undermining the foundation for data-driven SEO decisions. Conversion Modeling only partially compensates. What remains after 2025 in Consent Mode v2 and Privacy Sandbox: What Remains After 2025.

DACH-Specific Requirements

Technical SEO in DACH has particularities that international best practices often gloss over. Desktop traffic still accounts for a substantially higher share in many B2B industries in Germany, Austria, and Switzerland than in the US or UK — in some cases over 60% among enterprise decision-makers researching at their workplace. This shifts CWV prioritization: mobile-first remains Google's crawling default, but real usage patterns must be reflected in parallel tracking.

GDPR imposes stricter requirements on tracking, cookie consent, and data processing than any other region worldwide. A poorly implemented consent banner is not just a legal risk — it destroys CLS via late-appearing overlays, delays analytics loading by several seconds, and compromises the entire attribution chain. Many Austrian enterprise websites additionally operate under scrutiny from the data protection authority, which has taken a critical view of Google Analytics — elevating server-side tracking and alternatives like Matomo or Plausible in DACH compliance strategies. Multilingualism (DE/AT/CH with regional differences in vocabulary, pricing, and payment methods, plus EN, plus French and Italian in Switzerland) substantially increases hreflang and canonical complexity. Typical failures: de tags without regional specification, causing Austria and Switzerland to cannibalize each other, or missing x-default tags. Full treatment in DACH Technical SEO: Desktop Dominance and Data Protection Requirements.

Technical SEO Automation

With 24 topic areas in this pillar alone, one thing becomes obvious: running technical SEO manually is no longer scalable beyond a certain website size. Automation is the key — and it determines whether technical SEO is experienced as a continuous process or as recurring project chaos.

Monitoring Core Web Vitals via the PageSpeed Insights and CrUX APIs, automated redirect checks through scheduled crawls using Screaming Frog or Sitebulb in headless mode, schema validation via the Schema.org validator and Google's Rich Results Test, crawl-budget monitoring based on log files landing in a data warehouse like BigQuery or ClickHouse, sitemap generation directly from the CMS with automatic lastmod maintenance, bot-traffic analysis distinguishing verified from spoofed Googlebot requests, and integration into alerting systems like Slack or Microsoft Teams — all of this can be systematized with workflow tools like n8n. Bing even offers automated SEO recommendations via its AI Report, which can be consumed via API and piped into ticket workflows (Jira, Linear, Plane). The effect: instead of technical SEO being a quarterly one-off audit, you get continuous monitoring with defined response paths for detected regressions and clear ownership per metric.

How to automate technical SEO processes end-to-end — including concrete n8n workflows and Bing AI Report integration — is described in Technical SEO Automation: Bing AI Report and n8n Workflows.

Summary: Technical SEO as Strategic Infrastructure

Technical SEO is not just a checklist of optimizations — it is the strategic infrastructure on which all other SEO measures rest. The core themes group into five pillars:

  • Performance — Core Web Vitals as ranking factors, HTTP/3 as an infrastructure upgrade, edge optimization for enterprise speed without deployment cycles
  • Crawl management — Multi-bot governance for Googlebot and AI crawlers, robots.txt with TDM compliance under the EU AI Act, IndexNow for instant indexing
  • URL architecture — Clean 301 redirects without chains, correct self-referential canonicals, international hreflang without return-tag gaps
  • Rendering and JavaScript — SSR or SSG as a requirement for AI visibility, Next.js 15 architecture with deliberate Server/Client Component separation
  • Structured data and AI-readiness — Schema as a machine-readable understanding layer, Passage Ranking for AI citation, privacy and AI Act compliance

Each linked reference article goes deep on a specific topic with concrete implementation guidance, code examples, and enterprise architecture blueprints. Start where the largest technical debt sits — in most cases that means Core Web Vitals (particularly LCP), missing or broken schema markup, and JavaScript rendering without SSR. These three fronts will largely determine in 2026 whether a website remains visible in both classic SERPs and AI Overviews.

All Articles in this Topic

24 Articles
2.1

Core Web Vitals: LCP, INP and CLS Explained

Core Web Vitals are three metrics defined by Google to measure the user experience of a website: Largest Contentful Paint (LCP) for loading speed, Interaction to Next Paint (INP) for interactivity, and Cumulative Layout Shift (CLS) for visual stability.

Intermediate·8 min
2.2

LCP Optimization: The Hardest Core Web Vital

Largest Contentful Paint (LCP) measures the time until the largest visible content block is fully rendered. With only 62 percent mobile pass rate, LCP is the hardest Core Web Vital and the primary bottleneck.

Intermediate·7 min
2.3

INP Optimization: Measuring and Improving Interactivity

Interaction to Next Paint (INP) measures responsiveness to user interactions across the entire page visit. The threshold is ≤200ms. Less than 25 percent of websites keep task duration below the recommended 50ms threshold.

Advanced·7 min
2.4

CLS Optimization: Ensuring Visual Stability

Cumulative Layout Shift (CLS) measures visual stability — how much elements unexpectedly shift during loading. CLS has the highest mobile pass rate at 81 percent among the three CWV.

Intermediate·6 min
2.5

JavaScript Rendering and AI Crawlers: The Visibility Divide

AI crawlers like GPTBot, ClaudeBot and PerplexityBot cannot execute JavaScript. Vercel's analysis of over 500 million GPTBot fetches found zero evidence of JavaScript execution. Client-rendered content is invisible to approximately 70 percent of AI crawlers — server-side rendering is a visibility prerequisite, not a performance choice.

Advanced·9 min
2.6

Next.js 15 SEO Architecture: SSR, PPR and Server Components

Next.js 15 App Router with React Server Components and experimental Partial Prerendering (PPR) provides the optimal SEO architecture for AI visibility: server-rendered components ship zero client JavaScript, PPR delivers a static shell from CDN while dynamic content streams as HTML.

Advanced·8 min
2.7

Crawl Budget 2026: Multi-Bot Governance for AI Crawlers

Crawl budget has become a multi-stakeholder bot management challenge in 2026. ChatGPT-User makes 3.6x more requests than Googlebot (133,000+ per site in 55 days). AI crawlers access long-tail content with 70-100% unique access ratio, disrupting CDN caching for human traffic.

Advanced·8 min
2.8

AI Crawler Management: Compliance Crisis and Enterprise Strategy

On December 9, 2025, OpenAI quietly removed ChatGPT-User from robots.txt compliance documentation. 12.9 percent of AI bot requests now ignore robots.txt (up from 3.3% in Q4 2024). Perplexity was delisted as a verified bot by Cloudflare after documented user-agent spoofing.

Advanced·9 min
2.9

Structured Data as AI Comprehension Layer: Confirmed and Measurable

Structured data has evolved from a rich-results tool into an AI comprehension layer in 2025-2026. Google, Microsoft and ChatGPT confirm the use for generative features. Microsoft's NLWeb initiative makes every schema-annotated website automatically an MCP server for AI agents.

Advanced·9 min
2.10

Schema Markup Implementation: Priorities for Enterprise B2B

Schema markup implementation for Enterprise B2B follows a clear priority order: Organization (with sameAs to Wikipedia/Wikidata), Person (for expertise), Article (with authorship chains), Service, FAQPage and BreadcrumbList. @id properties create globally unique entity identifiers, sameAs confirms references.

Intermediate·7 min
2.11

IndexNow: 3.5 Billion URLs Daily — Without Google

IndexNow is a push protocol for instant URL indexing on Bing, Yandex, Naver, Seznam and Yep. 3.5 billion URLs are submitted daily, IndexNow is responsible for 22 percent of all clicked Bing URLs. Google does not support IndexNow as of April 2026.

Intermediate·6 min
2.12

HTTP/3 and Performance Infrastructure for SEO

HTTP/3 adoption reached 38.8 percent of websites (April 2026). It is not a direct ranking factor, but the QUIC protocol delivers measurable Core Web Vitals improvements through 1-RTT connection establishment (instead of 2-3 RTTs for TCP+TLS), elimination of head-of-line blocking, and connection migration.

Intermediate·5 min
2.13

Canonical Tags: Avoiding Duplicate Content

A Canonical Tag (link rel=canonical) is an HTML element in the head section of a webpage that signals to search engines the preferred URL version when the same or similar content is accessible under multiple URLs.

Intermediate·6 min
2.14

301 Redirects: Using Redirects Correctly

A 301 redirect is a permanent server-side redirect that sends browsers and search engines from an old URL to a new URL while transferring most of the ranking power (Link Equity).

Intermediate·6 min
2.15

robots.txt and AI: EU Legal Situation and TDM Opt-out

The Hamburg Higher Regional Court ruled on December 10, 2025, that natural language opt-outs in terms of use are insufficient — opt-outs must be machine-readable (robots.txt, TDM Reservation Protocol, ai.txt). A US court (Ziff Davis v. OpenAI) compared robots.txt to a "No Trespassing" sign without legal enforceability.

Advanced·8 min
2.16

Hreflang for DACH: AI Platforms Ignore Language Signals

Hreflang signals "no longer function as hard constraints" in AI-mediated retrieval. Glenn Gabe's tests (December 2025) across ChatGPT, Perplexity, Gemini, Copilot and Claude found that AI platforms frequently deliver wrong language versions. 67 percent of domains have at least one hreflang issue.

Intermediate·8 min
2.17

XML Sitemaps: Best Practices for Large Websites

XML Sitemaps are machine-readable lists of all indexable URLs. In Next.js 15, the sitemap.ts file convention replaces third-party plugins and enables dynamic generation from CMS data.

Beginner·5 min
2.18

JavaScript SEO: Rendering and Indexing

JavaScript SEO encompasses all measures that ensure search engines and AI crawlers can correctly render, index, and use JavaScript-based web content as a source.

Advanced·7 min
2.19

Edge SEO: CDN-Level Optimization with Cloudflare Workers

Edge SEO uses CDN-level compute (Cloudflare Workers, Vercel Edge Middleware) for SEO optimizations executed before routing and rendering: canonical rewriting, dynamic JSON-LD injection, redirect management at scale, and AI crawler management — all without touching CMS code.

Advanced·6 min
2.20

AI Content and Google: Enforcement and EU AI Act

Google has been issuing aggressive manual actions for "scaled content abuse" since approximately June 3, 2025, completely deindexing affected sites. EU AI Act Article 50 requires transparency labeling for AI-generated public-interest text from August 2026 — with penalties up to €35 million or 7% of global annual turnover.

Advanced·8 min
2.21

Consent Mode v2 and Privacy Sandbox: What Remains After 2025

Google deprecated all 10 Privacy Sandbox APIs on October 17, 2025 — third-party cookies remain in Chrome. Consent Mode v2 is mandatory for all Google Ads services in the EEA/UK since March 2024.

Advanced·7 min
2.22

Passage Ranking and GEO: Optimal Content Structure for AI Citation

Passage ranking describes Google's ability to evaluate individual passages independently for AI features. The optimal passage length for AI Overview citation is 134-167 words. The answer island concept — semantically self-contained units understandable without context — is the dominant framework.

Intermediate·7 min
2.23

DACH Technical SEO: Desktop Dominance and Privacy Requirements

The DACH market has distinct technical SEO constraints: Germany's mobile web traffic share is approximately 42 percent (far below the 60-64% global average), Google holds 90.24 percent market share, and the TTDSG requires explicit consent before activating non-essential tracking — including Google Tag Manager.

Intermediate·8 min
2.24

Technical SEO Automation: Bing AI Report and n8n Workflows

Bing Webmaster Tools AI Performance Report (February 2026) is the first tool showing how content is cited in AI-generated answers. It reveals "grounding queries" — the actual search phrases AI systems use to find and cite content.

Intermediate·7 min
Technical SEO | Knowledge Base | Blck Alpaca