fetch('https://api.ghost-desk.app/api/status')
.then(res => res.json())
.then(data => {
// 1. Version & Download
document.getElementById('download-btn').href = data.downloadUrl;
document.getElementById('download-btn').innerText = `Download v${data.appVersion}`;
// 2. Geo Pricing
const isIndia = data.country === 'IN';
Object.entries(data.pricing).forEach(([plan, price]) => {
const el = document.getElementById('price-' + plan);
if (el) el.innerText = isIndia ? price.inr : price.usd;
});
});