---
const base = import.meta.env.BASE_URL.replace(/\/$/, '');
const products = [
{ name: 'RentMatrix', href: `${base}/products/rentmatrix`, desc: 'Property & rental management', status: 'LIVE', dot: '#01a558' },
{ name: 'Flow', href: `${base}/products/flow`, desc: 'Multi-channel bulk messaging', status: 'LIVE', dot: '#034b5b' },
{ name: 'Hosting', href: `${base}/products/hosting`, desc: 'Domains, hosting & email', status: 'LIVE', dot: '#2563eb' },
{ name: 'BnBConnect', href: `${base}/products/bnbconnect`, desc: 'Hospitality management', status: 'Beta', dot: '#f18f20' },
{ name: 'POS', href: `${base}/products/pos`, desc: 'Point of sale & inventory', status: 'Beta', dot: '#e11d48' },
{ name: 'Fleet', href: `${base}/products/fleet`, desc: 'Fleet & transport management', status: 'Beta', dot: '#4f46e5' },
{ name: 'VMS', href: `${base}/products/vms`, desc: 'Visitor management system', status: 'Beta', dot: '#9333ea' },
];
const currentPath = Astro.url.pathname;
---