diff --git a/apps/website/e2e/website.spec.ts b/apps/website/e2e/website.spec.ts
index 71a6932dd..b0f79690a 100644
--- a/apps/website/e2e/website.spec.ts
+++ b/apps/website/e2e/website.spec.ts
@@ -12,9 +12,9 @@ test('landing page renders architecture section', async ({ page }) => {
await expect(page.getByText('Architecture').first()).toBeVisible();
});
-test('landing page renders fair comparison section', async ({ page }) => {
+test('landing page renders libraries section', async ({ page }) => {
await page.goto('/');
- await expect(page.getByText('What Angular Agent Framework adds').first()).toBeVisible();
+ await expect(page.getByText('Three libraries. One architecture.').first()).toBeVisible();
});
test('pricing page shows 4 plan cards', async ({ page }) => {
diff --git a/apps/website/src/app/page.tsx b/apps/website/src/app/page.tsx
index f7eaac84a..4fdd64df7 100644
--- a/apps/website/src/app/page.tsx
+++ b/apps/website/src/app/page.tsx
@@ -8,7 +8,6 @@ import { StatsStrip } from '../components/landing/StatsStrip';
import { ProblemSection } from '../components/landing/ProblemSection';
import { LibrariesSection } from '../components/landing/LibrariesSection';
import { ChatFeaturesSection } from '../components/landing/ChatFeaturesSection';
-import { FairComparisonSection } from '../components/landing/FairComparisonSection';
import { WhitePaperSection } from '../components/landing/WhitePaperSection';
import { HomePilotCTA } from '../components/landing/HomePilotCTA';
import { tokens } from '../../lib/design-tokens';
@@ -41,8 +40,6 @@ export default async function HomePage() {
{/* 7. Depth — capability showcases */}