diff --git a/ar-aging-app/frontend/src/pages/Login.tsx b/ar-aging-app/frontend/src/pages/Login.tsx
index 184266d..3274c3b 100644
--- a/ar-aging-app/frontend/src/pages/Login.tsx
+++ b/ar-aging-app/frontend/src/pages/Login.tsx
@@ -1,5 +1,5 @@
import { FormEvent, useState } from "react";
-import { BadgeCheck, Eye, EyeOff, Landmark, Lock, LogIn, ShieldCheck, User } from "lucide-react";
+import { BookOpenCheck, Eye, EyeOff, FileSpreadsheet, Globe, Landmark, Lock, LogIn, Scale, ShieldCheck, User } from "lucide-react";
import { Spinner } from "../components/ui";
import { useAuth } from "../auth";
@@ -65,8 +65,16 @@ export default function Login() {
{[
- { Icon: ShieldCheck, text: "Processed on the company server — financial data never leaves" },
- { Icon: BadgeCheck, text: "Six month-end controls gate every published figure" },
+ { Icon: FileSpreadsheet,
+ text: "Parses the month's Amazon transaction files — 13 marketplaces, millions of rows" },
+ { Icon: Scale,
+ text: "Classifies every settlement paid vs receivable and computes the closing position" },
+ { Icon: BookOpenCheck,
+ text: "AR roll-forward and month-end journal entry, reconciled to the cent" },
+ { Icon: Globe,
+ text: "Each marketplace converted at confirmed month-end ECB rates (local → USD)" },
+ { Icon: ShieldCheck,
+ text: "Six month-end controls and a SHA-256 audit trail gate every published figure" },
].map(({ Icon, text }) => (
-