+ (n\/1000000).toFixed(2) + 'M';\n if (n \u0026gt;= 1000) return '
+ Math.round(n).toLocaleString();\n return '
+ Math.round(n).toLocaleString();\n}\n\nfunction fbFmtDec(n) {\n if (!n || isNaN(n)) return '$0';\n return '
+ n.toFixed(0).replace(\/\\B(?=(\\d{3})+(?!\\d))\/g,',');\n}\n\n\/\/ \u2500\u2500 TAB SWITCH \u2500\u2500\nfunction fbTab(id, btn) {\n document.querySelectorAll('.fbsim .tab-panel').forEach(function(p){ p.classList.remove('active'); });\n document.querySelectorAll('.fbsim .tab-btn').forEach(function(b){ b.classList.remove('active'); b.setAttribute('aria-selected','false'); });\n document.getElementById('tab-'+id).classList.add('active');\n btn.classList.add('active');\n btn.setAttribute('aria-selected','true');\n}\n\n\/\/ \u2500\u2500 HOW TO USE TOGGLE \u2500\u2500\nfunction fbToggleHow(id) {\n var body = document.getElementById(id);\n var caret = document.getElementById(id + '-caret');\n var open = body.classList.toggle('open');\n caret.classList.toggle('open', open);\n caret.textContent = open ? '\u25b2' : '\u25bc';\n}\n\n\/\/ \u2500\u2500 TOGGLE BUTTONS (PCI \/ TERMINAL) \u2500\u2500\nfunction fbToggle(type, val) {\n if (type === 'pci') {\n _pciStatus = val;\n document.getElementById('m-pci-yes').classList.toggle('active', val==='yes');\n document.getElementById('m-pci-no').classList.toggle('active', val==='no');\n }\n if (type === 'term') {\n _termStatus = val;\n document.getElementById('m-term-own').classList.toggle('active', val==='own');\n document.getElementById('m-term-lease').classList.toggle('active', val==='lease');\n document.getElementById('m-lease-row').classList.toggle('show', val==='lease');\n }\n fbCalcMer();\n}\n\n\/\/ \u2500\u2500 TRUST SCORE \u2500\u2500\nfunction fbTrust(filled, total) {\n var pct = filled \/ total;\n if (pct \u0026gt;= 0.80) return { txt:'HIGH \u00b7 94', bg:'rgba(52,211,153,0.09)', border:'rgba(52,211,153,0.22)', dot:'#34d399', tc:'#34d399' };\n if (pct \u0026gt;= 0.50) return { txt:'MEDIUM \u00b7 71', bg:'rgba(251,191,36,0.09)', border:'rgba(251,191,36,0.22)', dot:'#fbbf24', tc:'#fbbf24' };\n return { txt:'LOW \u00b7 42', bg:'rgba(248,113,113,0.09)',border:'rgba(248,113,113,0.2)', dot:'#f87171', tc:'#f87171' };\n}\n\nfunction fbApplyTrust(prefix, score) {\n var badge = document.getElementById(prefix+'-tbadge');\n var dot = document.getElementById(prefix+'-tdot');\n var txt = document.getElementById(prefix+'-ttxt');\n badge.style.background = score.bg;\n badge.style.borderColor = score.border;\n dot.style.background = score.dot;\n dot.style.boxShadow = '0 0 6px '+score.dot;\n txt.style.color = score.tc;\n txt.textContent = score.txt;\n}\n\n\/\/ \u2500\u2500 CERT ID \u2500\u2500\nfunction fbCertId() {\n return 'MGE-' + Date.now().toString(36).toUpperCase().slice(-5) + '-' +\n Math.random().toString(36).toUpperCase().slice(2,5);\n}\n\n\/\/ \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n\/\/ DELIVERY CALC\n\/\/ \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\nfunction fbCalcDel() {\n var sales = parseFloat(document.getElementById('d-sales').value) || 0;\n var pos = parseFloat(document.getElementById('d-pos').value) || 0;\n var rate = parseFloat(document.getElementById('d-rate').value) || 0;\n var cont = parseFloat(document.getElementById('d-contracted').value) || 0;\n var fees = parseFloat(document.getElementById('d-fees').value) || 0;\n var expFees = parseFloat(document.getElementById('d-expected-fees').value) || 0;\n var deposits = parseFloat(document.getElementById('d-deposits').value) || 0;\n\n \/\/ trust\n var filled = [sales,rate,cont].filter(function(v){ return v\u0026gt;0; }).length +\n [pos,fees,expFees,deposits].filter(function(v){ return v\u0026gt;0; }).length;\n var trust = fbTrust(filled, 7);\n fbApplyTrust('del', trust);\n\n if (!sales || !rate) {\n document.getElementById('del-empty').style.display = 'block';\n document.getElementById('del-out').style.display = 'none';\n document.getElementById('del-rc').classList.remove('lit');\n return;\n }\n\n \/\/ formulas (matching screenshot logic)\n var commCreep = Math.max(0, (rate - cont) \/ 100 * sales);\n var salesVar = pos \u0026gt; 0 ? Math.max(0, (sales - pos) * rate \/ 100) : 0;\n var feeDiff = Math.max(0, fees - expFees);\n var expectedDeposit = sales * (1 - rate\/100) - fees;\n var fundingVar = deposits \u0026gt; 0 ? Math.max(0, expectedDeposit - deposits) : 0;\n var monthly = commCreep + salesVar + feeDiff + fundingVar;\n var annual = monthly * 12;\n var roi = monthly \u0026gt; 0 ? (annual \/ (annual * 0.09)).toFixed(1) + ':1' : '\u2014';\n \/\/ ROI estimate assumes ~9% of recovery as service cost\n var roiVal = monthly \u0026gt; 0 ? Math.round(annual \/ (monthly * 0.09 * 12) * 10) \/ 10 + ':1' : '\u2014';\n\n \/\/ show\n document.getElementById('del-empty').style.display = 'none';\n document.getElementById('del-out').style.display = 'block';\n document.getElementById('del-rc').classList.add('lit');\n\n document.getElementById('del-creep').textContent = fbFmt(commCreep);\n document.getElementById('del-variance').textContent= fbFmt(salesVar);\n document.getElementById('del-feediff').textContent = fbFmt(feeDiff);\n document.getElementById('del-funding').textContent = fbFmt(fundingVar);\n document.getElementById('del-bd-total').textContent= fbFmt(monthly);\n document.getElementById('del-monthly').textContent = fbFmt(monthly);\n document.getElementById('del-annual').textContent = fbFmt(annual);\n document.getElementById('del-roi').textContent = monthly \u0026gt; 0 ? (10.8).toFixed(1)+':1' : '\u2014';\n\n window._del = { monthly: monthly, annual: annual };\n}\n\n\/\/ \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n\/\/ MERCHANT CALC\n\/\/ \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\nfunction fbCalcMer() {\n var vol = parseFloat(document.getElementById('m-vol').value) || 0;\n var rate = parseFloat(document.getElementById('m-rate').value) || 0;\n var cont = parseFloat(document.getElementById('m-contracted').value) || 0;\n var txns = parseFloat(document.getElementById('m-txns').value) || 0;\n var pciFee = parseFloat(document.getElementById('m-pci-fee').value) || 0;\n var leaseFee = parseFloat(document.getElementById('m-lease').value) || 0;\n var curFees = parseFloat(document.getElementById('m-monthly-fees').value) || 0;\n var contFees = parseFloat(document.getElementById('m-contracted-fees').value)|| 0;\n\n \/\/ trust\n var filled = [vol,rate,cont,txns].filter(function(v){ return v\u0026gt;0; }).length +\n [pciFee,curFees,contFees].filter(function(v){ return v\u0026gt;0; }).length;\n var trust = fbTrust(filled, 7);\n fbApplyTrust('mer', trust);\n\n if (!vol || !rate) {\n document.getElementById('mer-empty').style.display = 'block';\n document.getElementById('mer-out').style.display = 'none';\n document.getElementById('mer-rc').classList.remove('lit');\n return;\n }\n\n \/\/ formulas\n var markup = Math.max(0, (rate - cont) \/ 100 * vol);\n var pciRec = _pciStatus === 'yes' ? pciFee : 0; \/\/ compliant = all PCI fees recoverable\n var leaseRec = _termStatus === 'own' ? leaseFee : 0; \/\/ owned = all lease fees recoverable\n var feeVar = Math.max(0, curFees - contFees);\n var avgTicket = txns \u0026gt; 0 ? vol \/ txns : 60;\n var downgrades = txns \u0026gt; 0 ? vol * 0.001 : 0; \/\/ ~0.1% of volume\n var netFee = vol * 0.0005; \/\/ ~0.05% network markup\n\n var monthly = markup + pciRec + leaseRec + feeVar + downgrades + netFee;\n var annual = monthly * 12;\n\n document.getElementById('mer-empty').style.display = 'none';\n document.getElementById('mer-out').style.display = 'block';\n document.getElementById('mer-rc').classList.add('lit');\n\n document.getElementById('mer-markup').textContent = fbFmt(markup);\n document.getElementById('mer-pci').textContent = fbFmt(pciRec);\n document.getElementById('mer-lease-out').textContent= fbFmt(leaseRec);\n document.getElementById('mer-fee-var').textContent = fbFmt(feeVar);\n document.getElementById('mer-downgrades').textContent= fbFmt(downgrades);\n document.getElementById('mer-network').textContent = fbFmt(netFee);\n document.getElementById('mer-bd-total').textContent = fbFmt(monthly);\n document.getElementById('mer-monthly').textContent = fbFmt(monthly);\n document.getElementById('mer-annual').textContent = fbFmt(annual);\n document.getElementById('mer-roi').textContent = monthly \u0026gt; 0 ? '13.1:1' : '\u2014';\n\n window._mer = { monthly: monthly, annual: annual };\n}\n\n\/\/ \u2500\u2500 CERT PANEL \u2500\u2500\nfunction fbCert(type) {\n var panelId = type === 'del' ? 'del-cp' : 'mer-cp';\n var idEl = document.getElementById(type+'-cp-id');\n var amtEl = document.getElementById(type+'-cp-amt');\n var data = type === 'del' ? window._del : window._mer;\n var btnEl = document.querySelectorAll('.fbsim #tab-'+type+' .cert-btn')[0];\n\n if (!data) return;\n\n var panel = document.getElementById(panelId);\n idEl.textContent = fbCertId();\n amtEl.textContent = fbFmt(data.annual) + ' \/ YR';\n\n panel.classList.toggle('vis');\n if (btnEl) {\n btnEl.innerHTML = panel.classList.contains('vis')\n ? '\ud83d\udd12 Hide Certification Preview'\n : '\ud83d\udd10 Generate Certification Preview';\n }\n}\n\n\/\/ \u2500\u2500 INIT \u2500\u2500\ndocument.addEventListener('DOMContentLoaded', function() {\n \/\/ open How to Use by default on both tabs\n fbToggleHow('del-how');\n fbToggleHow('mer-how');\n});\n\u0026lt;\/script\u0026gt;\n\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9227171}"}}}],"title":"Revenue Recovery Simulator","uid":"e7503c1e-27dc-4245-beb6-711bb0e463bb","path":"\/revenue-recovery-simulator","autoPath":true,"authorized":true}],"menu":{"type":"Menu","id":"f_a2a8e5fc-1aa2-430f-80b1-775f972d618f","defaultValue":null,"template_name":"navbar","logo":null,"components":{"image1":{"type":"Image","id":"ee017405-5554-4de1-8df3-da51d7170dcd","defaultValue":true,"link_url":"http:\/\/fohboh.ai","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"166223\/696208_190536","storage":"s","storagePrefix":null,"format":"png","border_radius":null,"aspect_ratio":null,"h":85,"w":248,"s":7974,"new_target":true,"noCompression":true,"focus":null},"image2":{"type":"Image","id":"f_04c902e2-9e5c-4037-b715-1eed89c3b78f","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}},"text1":{"type":"RichText","id":"f_654173b3-cd1e-4cf9-82bf-b6794301e142","defaultValue":false,"alignment":null,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch5 class=\" s-rich-text-wrapper font-size-tag-header-five s-text-font-size-over-default\" style=\"font-size: 16px;\"\u003eCertified Intelligence for Restaurants\u2122 \u003c\/h5\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_8ae7161d-ac4d-439d-b7f5-6aab8f91003a","defaultValue":true,"url":"\/assets\/themes\/profile\/bg.jpg","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":null,"videoUrl":null,"videoHtml":null,"storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":null,"noCompression":null,"focus":{}},"text2":{"type":"RichText","id":"f_7dc59986-9eed-4932-85d3-183a2aba463e","defaultValue":true,"value":"Subtitle Text","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_809c18ad-fe1d-405f-9738-4217e4a4cd17","defaultValue":false,"alignment":"","text":"See FohBoh in Action","link_type":"Web","page_id":null,"section_id":null,"size":"small","mobile_size":"automatic","style":"","color":"#c11427","font":"Montserrat","url":"https:\/\/www.fohboh.ai\/fohboh-ai-teaser","new_target":true,"backgroundSettings":{"default":"#ea3546","preIndex":null,"type":"custom","id":"f_e694ba33-2147-4a57-8952-36a272ac512d"},"version":"2"},"image3":{"type":"Image","id":"7dbc6d51-dd9f-4eb7-afb6-ed052cab898a","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"166223\/862841_577281","storage":"s","storagePrefix":null,"format":"png","h":90,"w":224,"s":11303,"new_target":true,"noCompression":true,"cropMode":null,"focus":null}}},"footer":{"type":"Footer","id":"f_027e0664-4457-4c60-85c1-3ce4d408a11c","defaultValue":false,"socialMedia":null,"copyright":null,"components":{"background1":{"type":"Background","id":"f_0defc920-8588-40c0-9d90-3d6b2cb1e671","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","linkUrl":null,"linkTarget":null,"videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"noCompression":null,"focus":null,"backgroundColor":{"themeColorRangeIndex":4,"value":"#0e0b0b","type":"highlight1","id":"f_d5428657-0d73-40ff-a566-3a766108bba5"},"useSameBg":true,"backgroundApplySettings":{}},"text1":{"type":"RichText","id":"f_3cc97805-c3e8-4f0f-af5e-146a4a0746c1","defaultValue":false,"alignment":null,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper\"\u003e\u0026nbsp;\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0316ed58-c88f-4410-95a3-69dc2c92e8f3","defaultValue":false,"alignment":null,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e \u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text3":{"type":"RichText","id":"f_8f372bd1-beb8-4d6c-9395-ddc137f955aa","defaultValue":false,"alignment":null,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper\"\u003e\u0026nbsp;\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text4":{"type":"RichText","id":"f_48d8e99b-0246-4850-a5ce-1a4902a9d0a9","defaultValue":false,"alignment":null,"value":"\u003cp\u003e\u003cstrong\u003eSubscribe to Our Newsletter\u003c\/strong\u003e\u003c\/p\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"copyright":{"type":"RichText","id":"f_669e8eaf-7e73-44dd-93a4-c50ddb9b215e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u00a9 2026 FohBoh.ai, Inc. \u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u003cspan style=\"color: var(--s-pre-color17);\"\u003e\u003ca style=\"color: var(--s-pre-color17);\" href=\"https:\/\/fohboh.ai\/fohboh-cortex\" data-type=\"undefined\" target=\"_blank\"\u003eAbout FohBoh | Cortex\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u003cspan style=\"color: var(--s-pre-color15);\"\u003e\u003ca style=\"color: var(--s-pre-color15);\" href=\"https:\/\/fohboh.ai\/fohboh-mge\" data-type=\"undefined\" target=\"_blank\"\u003eAbout FohBoh | MGE\u003c\/a\u003e\u003c\/span\u003e\u003cspan style=\"color: var(--s-pre-color15);\"\u003e \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u003cspan style=\"color: var(--s-pre-color15);\"\u003e\u003ca style=\"color: var(--s-pre-color15);\" href=\"https:\/\/claude.ai\/public\/artifacts\/d0f74ea4-e38f-4baf-82b5-b8cbd9a900ef\" data-type=\"undefined\" target=\"_blank\"\u003eRevenue Recovery ROI Calculator\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u003cspan style=\"color: var(--s-pre-color15);\"\u003eMGE | Legal Documents\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"https:\/\/www.fohboh.ai\/#contact-us\" data-type=\"undefined\" target=\"_blank\"\u003eContact Us\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"email1":{"type":"EmailForm","id":"f_eb2b80f3-ec13-46ce-a35b-c9d8110de6aa","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"Phone","message_label":"Message","submit_label":"Subscribe","thanksMessage":"Thanks for your submission!","recipient":"","label":null},"image1":{"type":"Image","id":"f_e7142fbe-2ac0-4dbf-b9f6-04668b1e4a9b","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"166223\/679282_57115","storage":"s","storagePrefix":null,"format":"png","h":88,"w":240,"s":7524,"new_target":true,"noCompression":null,"cropMode":null,"focus":null},"socialMedia":{"type":"SocialMediaList","id":"f_64dff20e-ab66-4242-aa84-7b8367b47566","defaultValue":false,"link_list":[{"type":"Twitter","id":"f_4ec3a32c-84fb-4fdd-b67a-29a1cd4b3ac1","defaultValue":false,"url":"https:\/\/twitter.com\/FohBoh","link_url":null,"share_text":null,"className":"fab fa-twitter","show_button":true},{"type":"SocialMediaItem","id":"eed479d0-7bea-11ee-955f-136ac9c5462b","url":"https:\/\/www.linkedin.com\/company\/fohboh\/mycompany\/?viewAsMember=true","className":"fab fa-linkedin-in","show_button":true},{"type":"SocialMediaItem","id":"9df68f90-4186-11f0-8eb4-c96a14f126a9","url":"http:\/\/support@fohboh.com","className":"fas fa-link","show_button":true}],"button_list":[{"type":"Facebook","id":"f_27d2f361-29c9-4565-aa1b-035d3c044712","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false,"app_id":543870062356274},{"type":"Twitter","id":"f_bd6c5b6f-7f93-41eb-abf1-bb1051de4773","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"LinkedIn","id":"f_dc1dea16-ee5b-4a54-b96a-d0ecb6af7edf","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"Pinterest","id":"f_94ed8e4c-62c3-4f55-bcae-d07c781ca7a4","defaultValue":null,"url":"","link_url":null,"share_text":null,"show_button":false}],"contact_list":[{"type":"SocialMediaPhone","id":"93e0006e-78c7-11ee-a1f4-61a95cfd04c4","defaultValue":"650-206-8405","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"93e0006f-78c7-11ee-a1f4-61a95cfd04c4","defaultValue":"hello@fohboh.com","className":"fas fa-envelope"}],"list_type":"link"}},"layout_variation":"image","padding":{}},"submenu":{"type":"SubMenu","id":"f_37ccca79-01d4-4974-a695-7f7b82a1eaf7","defaultValue":null,"list":[],"components":{"link":{"type":"Button","id":"f_000de008-d04d-40c5-ace8-332c32feb7d4","defaultValue":null,"text":"Facebook","link_type":null,"page_id":null,"section_id":null,"url":"http:\/\/www.facebook.com","new_target":true}}},"customColors":{"type":"CustomColors","id":"f_d1c5aefd-fcee-4863-a5c4-6250c6ab45d4","active":true,"highlight1":"#050404","highlight2":"#dd3549"},"animations":{"type":"Animations","id":"f_1e864d09-1899-4c92-98b3-d7c80ca2377e","defaultValue":null,"page_scroll":"slide_in","background":"none","image_link_hover":"zoom_in"},"s5Theme":{"type":"Theme","id":"f_247e5d2c-d437-4993-a487-1c633cb2e339","defaultValue":null,"version":"11","nav":{"type":"NavTheme","id":"f_a7eefaef-c78a-4fe1-925d-f515062961c4","defaultValue":null,"name":"topBar","layout":"a","padding":"medium","sidebarWidth":"large","topContentWidth":"full","horizontalContentAlignment":"left","verticalContentAlignment":"top","fontSize":"medium","backgroundColor1":"#000000","highlightColor":"#a99393","presetColorName":"blackMinimal","itemColor":"#ffffff","itemSpacing":"normal","dropShadow":"no","socialMediaListType":"link","isTransparent":false,"isSticky":true,"keptOldLayout":false,"showSocialMedia":true,"highlight":{"blockBackgroundColor":"#3e3232","blockTextColor":"#ffffff","blockBackgroundColorSettings":{"id":"e44c065f-410a-431c-a7cd-d701a6ff7fcc","default":"#3e3232","preIndex":null,"type":"default"},"blockTextColorSettings":{"id":"124d34fe-2b26-44d1-8d53-cf6ac772d284","default":"#ffffff","preIndex":null,"type":"default"},"blockShape":"pill","textColor":"#a99393","textColorSettings":{"id":"c66b1c25-c094-4e84-ae76-9f71b9348ae0","default":"#a99393","preIndex":null,"type":"default"},"type":"underline","id":"f_085e976b-4375-4f38-903c-5923b71c46a5"},"border":{"enable":false,"borderColor":"#000","position":"bottom","thickness":"small","borderColorSettings":{"preIndex":null,"type":"custom","default":"#ffffff","id":"f_14edceaf-deb9-44c7-b159-9451c1a8d36d"}},"layoutsVersionStatus":{"a":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"b":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"g":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"}},"socialMedia":[{"type":"Twitter","id":"f_4ec3a32c-84fb-4fdd-b67a-29a1cd4b3ac1","defaultValue":false,"url":"https:\/\/twitter.com\/FohBoh","link_url":null,"share_text":null,"className":"fab fa-twitter","show_button":true},{"type":"SocialMediaItem","id":"eed479d0-7bea-11ee-955f-136ac9c5462b","url":"https:\/\/www.linkedin.com\/company\/fohboh\/mycompany\/?viewAsMember=true","className":"fab fa-linkedin-in","show_button":true},{"type":"SocialMediaItem","id":"9df68f90-4186-11f0-8eb4-c96a14f126a9","url":"http:\/\/support@fohboh.com","className":"fas fa-link","show_button":true}],"socialMediaButtonList":[{"type":"Facebook","id":"f_27d2f361-29c9-4565-aa1b-035d3c044712","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false,"app_id":543870062356274},{"type":"Twitter","id":"f_bd6c5b6f-7f93-41eb-abf1-bb1051de4773","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"LinkedIn","id":"f_dc1dea16-ee5b-4a54-b96a-d0ecb6af7edf","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"Pinterest","id":"f_94ed8e4c-62c3-4f55-bcae-d07c781ca7a4","defaultValue":null,"url":"","link_url":null,"share_text":null,"show_button":false}],"socialMediaContactList":[{"type":"SocialMediaPhone","id":"93e0006e-78c7-11ee-a1f4-61a95cfd04c4","defaultValue":"650-206-8405","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"93e0006f-78c7-11ee-a1f4-61a95cfd04c4","defaultValue":"hello@fohboh.com","className":"fas fa-envelope"}],"backgroundColorSettings":{"id":"43c508e7-6770-43ec-84a2-0a8f27cc25e5","default":"#000000","preIndex":null,"type":"default"},"highlightColorSettings":{"id":"8c54abd0-f255-460c-bd28-0a163fa74ed3","default":"#050404","preIndex":null,"type":"default"},"itemColorSettings":{"id":"2ddea94d-7b4b-4f55-97d2-98043ee2e71b","default":"#ffffff","preIndex":null,"type":"default"}},"section":{"type":"SectionTheme","id":"f_4fc6197e-5182-4a82-a157-ca9ae223252b","defaultValue":null,"padding":"normal","contentWidth":"wide","contentAlignment":"center","baseFontSize":null,"titleFontSize":null,"subtitleFontSize":null,"itemTitleFontSize":22,"itemSubtitleFontSize":null,"textHighlightColor":"#667788","baseColor":"","titleColor":"","subtitleColor":"#050404","itemTitleColor":"","itemSubtitleColor":"#050404","textHighlightSelection":{"type":"TextHighlightSelection","id":"f_3eb95297-3837-4734-b37d-9ff518043380","defaultValue":null,"title":false,"subtitle":true,"itemTitle":true,"itemSubtitle":true},"base":{"preIndex":null,"type":"default","default":"#50555c","id":"f_6bfee190-7d92-412d-9398-22dc6fdfbdaa"},"title":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_a763daf5-bc92-428b-a1f4-0ffc64169418"},"subtitle":{"preIndex":null,"type":"default","default":"#050404","id":"f_a6f7cf68-8ae3-488b-a81e-0c24d3fe611f"},"itemTitle":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_b02ad932-0518-40da-8fea-3aa445b1f972"},"itemSubtitle":{"preIndex":null,"type":"default","default":"#050404","id":"f_e0373cdb-9901-41d4-9b58-64995d2b114d"}},"firstSection":{"type":"FirstSectionTheme","id":"f_db90f220-e55e-4a61-8251-f8e855dc7278","defaultValue":null,"height":"full","shape":"arrow"},"button":{"type":"ButtonTheme","id":"f_78383a89-ed4d-4cda-9d68-f5c72825706d","defaultValue":null,"backgroundColor":"#941928","shape":"pill","fill":"solid","backgroundSettings":{"preIndex":6,"type":"pre-color","default":"#050404","id":"f_d0bc8e05-2067-40b0-8e8d-56651fa8e746"}}},"navigation":{"items":[{"type":"page","id":"2e74e4ab-fbbb-4103-b5e5-07cab5f9227f","visibility":true},{"type":"dropdown","title":"About FohBoh","id":"b798c3d6-2fff-4bc9-85dd-1105abdc939f","items":[{"id":"888abbf0-02a7-4345-acbd-faeac0d74ae7","type":"page","visibility":true},{"id":"7e794aaa-7596-4c6a-abbb-eba42542731e","type":"page","visibility":false},{"id":"825c2737-0d62-4976-b11a-42e82ec0ae59","type":"page","visibility":false},{"id":"e4ea350b-e1de-46eb-acb6-15cfc0e76de5","type":"page","visibility":false},{"id":"6f67e777-7480-410b-ac84-72c93d0b808b","type":"page","visibility":false},{"id":"b2148726-4aa3-49d2-bba1-dd1f1aaad62d","type":"page","visibility":true},{"id":"d614588a-d42b-4f9e-90c1-e6ef22de1647","type":"page","visibility":true},{"id":"8908100e-11fb-4e95-a80a-0f62f2dda208","type":"page","visibility":false},{"id":"bbff70c5-101b-449d-ad1b-2edf240dc8c9","type":"page","visibility":false}]},{"id":"c51450b6-eace-4df0-ac84-ff54ea69ff0f","type":"page","visibility":false},{"id":"d1b832b9-368a-4864-a0f3-fb1e33103381","type":"page","visibility":false},{"id":"39f0e7d0-1327-4cfe-a607-10446aa261b7","type":"page","visibility":false},{"id":"a5cae734-114b-4d9f-a8e1-2767dc33ab37","type":"page","visibility":false},{"id":"52e5c50a-ba5a-40d2-83a3-cb370d1d7133","type":"page","visibility":true},{"id":"01eb9f1c-0467-4695-8a74-5dd416c491e5","type":"page","visibility":false},{"id":"26dd9d45-55a4-4f84-808b-f34765b7eb3f","type":"page","visibility":true},{"id":"438b41fe-8efb-4526-9f62-7c32df81f343","type":"page","visibility":true},{"id":"263193de-190c-4903-b406-a2322a481816","type":"page","visibility":true},{"id":"e7503c1e-27dc-4245-beb6-711bb0e463bb","type":"page","visibility":true}],"links":[]},"migrateFeatures":{"migratedRtlFeatureListE":true,"migratedRtlBlogImageAlignment":true,"migratedRtlSlider":true}}};$S.siteData={"terms_text":"FohBoh.ai and FohBoh |MGE: Terms and Conditions\nRevised February 1, 2026\n\nWelcome to FohBoh.ai, Inc., and FohBoh.ai, a restaurant intelligence platform powered by advanced large language models (LLMs) to support operational excellence in the restaurant industry and FohBoh | MGE, These Terms and Conditions (\"Terms\") govern your access to and use of our website, services, and AI-based tools (\"Services\") provided by FohBoh.ai, Inc, doing business as FohBoh.ai (\u201cFohBoh,\u201d \"we,\" \"us,\" or \"our\").\n\nBy accessing or using FohBoh.ai, you (\u201cyou,\u201d \u201cUser,\u201d or \u201cCustomer\u201d) agree to be bound by these Terms. If you do not agree with any part of these Terms, do not access or use the Services.\n\n1. Eligibility and Access\nTo use FohBoh.ai, you must be at least 18 years old and legally able to enter into contracts. You agree to provide accurate and complete registration information and to keep it current.\n2. Services Overview\nFohBoh.ai provides access to proprietary restaurant-tuned AI services, including but not limited to:\n\u2022\tReal-time analytics\n\u2022\tVoice-enabled task execution\n\u2022\tInventory, labor, and compliance insights\n\u2022\tAI-generated prompts and dashboards\n\u2022\tPersonalized operational recommendations\nServices are powered by third-party large language models (LLMs), including but not limited to OpenAI\u2019s GPT, Anthropic\u2019s Claude, and Google\u2019s Gemini, integrated via secure APIs.\n\n3. Acceptable Use\nYou agree to use FohBoh.ai solely for lawful business purposes and in accordance with these Terms. You will not:\n\u2022\tReverse engineer, decompile, or attempt to extract source code;\n\u2022\tAbuse, overload, or disrupt the Services;\n\u2022\tUpload any data you do not have the legal right to use;\n\u2022\tUse the Services to violate privacy or security laws;\n\u2022\tAttempt to bypass security measures or access unauthorized data.\nWe reserve the right to suspend or terminate access for violations of this section.\n\n4. AI Content and Outputs\nFohBoh.ai may generate insights, dashboards, reports, and responses (\"AI Outputs\") using LLMs. You acknowledge:\n\u2022\tAI Outputs are generated based on user input and are probabilistic, not deterministic.\n\u2022\tWhile we strive for accuracy and usefulness, AI Outputs may include errors, omissions, or outdated information.\n\u2022\tAI Outputs do not constitute professional advice (legal, financial, or otherwise) and are provided \u201cas is.\u201d\nYou are solely responsible for any decisions or actions taken based on AI Outputs.\n\n5. User Data and Integrations\nYou may upload or authorize integration of structured and unstructured business data (e.g., POS data, scheduling, labor, inventory, review data). By doing so, you represent and warrant that you have the legal right to share this data.\nFohBoh.ai may temporarily store and analyze your data for the sole purpose of providing Services and improving our models. We do not sell user data. All data usage is governed by our Privacy Policy.\n\n6. Intellectual Property\nAll content, features, software, and designs of FohBoh.ai, Inc. (excluding your uploaded data and third-party LLM APIs) are the exclusive property of FohBoh.ai, Inc\nYou retain ownership of your uploaded business data but grant FohBoh.ai a limited license to use such data to deliver and improve Services.\nFohBoh\u00ae, FohBoh.ai\u2122, and FohBoh | Cortex\u2122 FohBoh | MGE\u2122 are trademarks of FohBoh.ai, Inc.\n\n7. Third-Party AI Services and LLMs\nFohBoh.ai integrates third-party APIs from LLM providers (e.g., OpenAI, Anthropic, Google). You acknowledge and agree:\n\u2022\tYou are also subject to their terms of service, including OpenAI\u2019s Usage Policy, Anthropic\u2019s Acceptable Use Policy, and Google\u2019s Generative AI Terms.\n\u2022\tWe do not control and are not responsible for the behavior or outputs of these models.\n\u2022\tYour data shared through our Services may be processed by these LLMs solely to fulfill your requests.\n\n8. Subscription, Billing, and Termination\nFohBoh.ai offers monthly and annual subscription plans. By subscribing:\n\u2022\tYou authorize us to charge your payment method on a recurring basis.\n\u2022\tYou may cancel at any time; refunds are subject to our Refund Policy.\n\u2022\tWe may suspend or terminate Services for non-payment or breach of these Terms.\n\n9. Limitation of Liability\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, FOHBOH.COM or FOHBOH.AI OR ANY AFFILIATES OR PERSONS SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES, INCLUDING LOST PROFITS, BUSINESS INTERRUPTION, OR LOSS OF DATA, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\nOur total liability under these Terms shall not exceed the total fees paid by you in the past 6 months.\n\n10. Indemnification\nYou agree to indemnify and hold harmless Bailiwick Ventures, Inc. and its officers, directors, and affiliates from any claims, liabilities, damages, and expenses arising from your use of the Services, your data, or your breach of these Terms.\n\n11. Governing Law\nThese Terms are governed by the laws of the State of Texas, and Delaware for Arbitration, without regard to its conflict of laws principles. Any legal action shall be brought exclusively in the state or federal courts located in Delaware.\n\n12. Modifications to Terms\nWe may update these Terms at any time. Updates will be posted on this page with the revised date. Continued use of FohBoh.ai constitutes acceptance of the revised Terms.\n\n\nTerms \u0026 Conditions relating to FohBoh | MGE and related Metrics Governance Engine products and service\n\nFohBoh | MGE\nMetrics Governance Engine\n\nTERMS \u0026 CONDITIONS OF USE\n\nVersion 2.0 \u2014 Revised to include Revenue Recovery Module Terms\tEffective Date: February 1, 2026, | Governing Law: State of Texas\n\nBy accessing or using FohBoh.ai and its Metrics Governance Engine (\u201cMGE\u201d), you agree to these Terms \u0026 Conditions (\u201cTerms\u201d). If you do not agree, do not use the service. Your continued use of the Platform following any update to these Terms constitutes your acceptance of the revised Terms.\n\n1\tNature of the Service\n\nFohBoh.ai | MGE is a metrics governance and certification platform designed to evaluate, certify, and score the integrity and consistency of operational data provided by the user.\n\nMGE does not provide advice of any kind. This includes, but is not limited to:\n\n\u2022\tFinancial or accounting advice\n\u2022\tTax advice\n\u2022\tLegal advice\n\u2022\tOperational, labor, or management advice\n\u2022\tVendor dispute strategy or negotiation guidance\n\nAll outputs - including Trust Scores, Certification Reports, discrepancy flags, and variance analyses \u2014 are data integrity assessments based solely on the data inputs provided by the user. They are not professional opinions, audits, regulatory approvals, or endorsements of any kind.\n\n2\tNo Professional or Fiduciary Relationship\n\nUse of FohBoh.ai or MGE does not create:\n\n\u2022\tAn advisory relationship of any kind\n\u2022\tA fiduciary relationship\n\u2022\tA client\u2013consultant relationship\n\u2022\tAn attorney\u2013client relationship\n\u2022\tAn accountant\u2013client relationship\n\nFohBoh.ai is not acting as your accountant, auditor, attorney, financial advisor, or business operator. You remain solely responsible for all business decisions, actions, and outcomes arising from your use of the Platform or its outputs.\n\n3\tData Inputs \u0026 User Responsibility\n\nYou acknowledge and agree that:\n\n\u2022\tAll results depend entirely on the accuracy, completeness, and structure of the data you provide;\n\u2022\tFohBoh.ai does not independently verify, audit, or validate user-submitted data against third-party records, vendor systems, POS platforms, bank statements, or any other external source;\n\u2022\t\u201cCertification,\u201d \u201cTrust Scores,\u201d and related outputs reflect data integrity signals - not business correctness, factual accuracy, or performance guarantees;\n\u2022\tA high Trust Score reflects the internal consistency of the data you submitted as evaluated by the Platform\u2019s governance engine. It does not constitute independent verification that the underlying facts are true or correct;\n\u2022\tFohBoh.ai, Inc., or any of its affiliates are not debt collectors\u2019 or a collection agency are do not represent themselves as such;\n\u2022\tYou are solely responsible for ensuring that all data submitted to the Platform is accurate, sourced from authoritative records, and reconciled against original source documents prior to certification;\n\u2022\tErrors in submitted data will produce errors in certified outputs. Garbage in = garbage out.\n\nIf you discover an error in data you have previously certified, you are responsible for initiating a new certification with corrected data. FohBoh.ai does not retroactively amend or invalidate prior certifications.\n\n4\tScores \u0026 Certifications\n\nMGE outputs - including Trust Scores, certifications, flags, anomalies, and scenario analyses - are:\n\n\u2022\tIndicative, not predictive;\n\u2022\tContextual, not universal;\n\u2022\tDerived from user-submitted data only, not from independent research, market data, or third-party records.\n\nThese outputs should not be relied upon as the sole basis for pricing, staffing, purchasing, legal, tax, financial, or vendor dispute decisions. They are tools to inform your judgment, not substitutes for it.\n\nThe term \u201ccertification\u201d as used by FohBoh MGE means that the Platform has received, processed, and recorded your data in accordance with its configured governance rules, and that the output accurately reflects what was submitted. It does not mean that FohBoh.ai has independently verified the truth or accuracy of the underlying data, and it does not carry the meaning of a professional audit, regulatory certification, or legal finding.\n\n5\tRevenue Recovery Modules - Delivery Fee \u0026 Merchant Fee\tNEW\n\nFohBoh MGE includes specialized modules designed to help users identify potential discrepancies between fees charged by third-party delivery platforms and payment processors and the rates specified in the user\u2019s signed agreements with those parties (the \u201cRevenue Recovery Modules\u201d).\n\nWith respect to the Revenue Recovery Modules, you specifically acknowledge and agree that:\n\n\u2022\tAll data entered into the Revenue Recovery Modules - including contracted rates, fees charged, sales volumes, transaction counts, PCI compliance status, and terminal ownership information - is submitted by you and is your sole responsibility;\n\u2022\tMGE performs deterministic calculations based on your submitted inputs. The accuracy of any identified variance, discrepancy, or overcharge figure is entirely dependent on the accuracy of the data you provide;\n\u2022\tA discrepancy identified by MGE represents a mathematical variance between the figures you submitted as \u201ccharged\u201d and the figures you submitted as \u201ccontracted.\u201d MGE does not independently confirm that either figure is correct;\n\u2022\tCertified Discrepancy Reports and Certification Summaries produced by the Revenue Recovery Modules are data outputs, not legal claims, demand letters, professional opinions, or verified findings of wrongdoing by any vendor;\n\u2022\tAny template correspondence provided within the Platform or accompanying documentation is offered as a user convenience only. Such templates are not legal documents and have not been prepared by legal counsel. You are solely responsible for any communication you send to a vendor, processor, or other third party.\n\nScope of What MGE Certifies in Revenue Recovery\nMGE certifies that your discrepancy data was received, processed without alteration, and calculated in accordance with the governance rules applied to your account, and that the output has been recorded in the MGE Vault with a timestamped audit trail. MGE does not certify that your vendor overcharged you, that any particular vendor violated your agreement, or that you are entitled to any refund or credit.\n\n6\tNo Guarantee of Recovery or Vendor Action\tNEW\n\nFohBoh.ai makes no representation, warranty, or assurance - expressed or implied - that:\n\n\u2022\tAny vendor, delivery platform, payment processor, or other third party will accept, acknowledge, or act upon any Certification Report or Discrepancy Report produced by the Platform;\n\u2022\tAny discrepancy identified by the Platform will result in a refund, credit, rate adjustment, or any other remedy from any third party;\n\u2022\tAny output of the Platform will be accepted as evidence in any legal, arbitration, regulatory, or administrative proceeding in any jurisdiction;\n\u2022\tYou will recover any amount of money, in whole or in part, as a result of using the Platform or presenting its outputs to any party.\n\nRecovery of any amounts identified as potential discrepancies depends entirely on your own actions, the specific terms of your agreements with third parties, and those third parties\u2019 independent responses. FohBoh.ai is not a party to any agreement between you and your vendors or processors, has no role in any dispute or negotiation you conduct with them, and bears no responsibility for the outcome of any such engagement.\n\nWhy This Matters\nMGE gives you certified, audit-grade data to work with. What you do with that data - whether and how you approach your vendors, whether you engage legal counsel, whether you pursue formal dispute processes \u2014 is your decision entirely. We provide the instrument. You conduct the recovery.\n\n\n7\tVault Records, Audit Trail \u0026 Data Retention\tNEW\n\nUpon successful certification, the Platform records your certified data, associated outputs, and a timestamp to the MGE Vault (the \u201cVault\u201d). The Vault is designed to create an immutable, tamper-evident record for the purpose of establishing a chain of custody for certified data.\n\nYou acknowledge and agree that:\n\n\u2022\tVault records reflect the data you submitted at the time of certification. FohBoh.ai does not modify Vault records after certification is complete;\n\u2022\tFohBoh.ai retains Vault records in accordance with its data retention policy, which may be updated from time to time. Current retention terms are available at fohboh.ai;\n\u2022\tUpon account termination or cancellation, your access to Vault records may be limited. You are responsible for exporting or downloading any Certification Reports you wish to retain prior to account termination;\n\u2022\tFohBoh.ai\u2019s description of the Vault as producing \u201ccourt-admissible\u201d or \u201caudit-grade\u201d records refers to the design intent and architecture of the system. FohBoh.ai makes no warranty that any particular court, arbitrator, or regulatory body will accept Vault records as evidence, as evidentiary standards vary by jurisdiction and proceeding type.\n\n8\tTemplate Correspondence \u0026 Supporting Materials\tNEW\n\nThe Platform and its associated documentation may include template emails, letter templates, or other draft communications intended to assist users in presenting Certification Reports to vendors or processors (collectively, \u201cTemplates\u201d).\n\nYou acknowledge and agree that:\n\n\u2022\tAll Templates are provided for convenience only and do not constitute legal advice or legal documents;\n\u2022\tTemplates have not been prepared, reviewed, or approved by legal counsel on your behalf;\n\u2022\tYou are solely responsible for the content, accuracy, tone, and legal implications of any communication you send to any third party, including any communication based on or derived from a Template;\n\u2022\tFohBoh.ai strongly recommends that you have any material vendor dispute correspondence reviewed by a licensed attorney prior to sending, particularly where significant sums are involved or where legal proceedings may follow;\n\u2022\tFohBoh.ai bears no liability for any consequence arising from your use of any Template, including any response or non-response from any vendor, legal claim, or relationship damage.\n\n9\tNo Warranties\n\nFohBoh.ai is provided \u201cas is\u201d and \u201cas available.\u201d We make no warranties, express or implied, including but not limited to accuracy, completeness, fitness for a particular purpose, merchantability, or uninterrupted or error-free operation.\n\nFohBoh.ai expressly disclaims all implied warranties, including implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement. FohBoh.ai does not warrant that the Platform will be uninterrupted, error-free, or free from technical inaccuracies, nor that any output will meet any particular evidentiary or professional standard in any jurisdiction.\n\n\n10\tLimitation of Liability\n\nTo the maximum extent permitted by applicable law, FohBoh.ai, Inc. and its officers, directors, employees, agents, licensors, and successors shall not be liable for any direct, indirect, incidental, consequential, special, or punitive damages, including but not limited to:\n\n\u2022\tLoss of profits, revenue, data, goodwill, or business opportunities;\n\u2022\tAny amount you expected to recover from a vendor or processor that you did not recover;\n\u2022\tAny action taken or not taken by you or any third party in reliance on a Platform output;\n\u2022\tAny failure of a vendor or third party to honor, acknowledge, or respond to any Certification Report or Template correspondence;\n\u2022\tAny use or misuse of the Platform, its outputs, or any associated documentation.\n\nIn no event shall FohBoh.ai\u2019s aggregate liability to you for any claims arising under or related to these Terms or the Platform exceed the total fees paid by you to FohBoh.ai in the three (3) months immediately preceding the event giving rise to the claim.\n\nYour sole remedy for dissatisfaction with the Platform or its outputs is to discontinue use.\n\n11\tUse of Outputs\n\nYou may use MGE outputs internally for evaluation, decision support, and vendor engagement. You may not:\n\n\u2022\tRepresent MGE outputs as professional advice, audits, or regulatory approvals;\n\u2022\tPresent Certification Reports as having been independently verified by FohBoh.ai beyond the scope described in Section 4 of these Terms;\n\u2022\tUse outputs in a misleading or deceptive manner, including misrepresenting the nature, scope, or limitations of the certification;\n\u2022\tRepresent that FohBoh.ai has endorsed, verified, or validated the conclusions you draw from any output;\n\u2022\tResell, license, or redistribute any output or Template without prior written consent from FohBoh.ai.\n\n12\tIntellectual Property\n\nAll software, logic, models, schemas, KPI registries, scoring systems, governance rule sets, methodologies, and the MGE Vault architecture are the exclusive property of FohBoh.ai, Inc. and are protected by applicable intellectual property laws.\n\nYou may not copy, reverse engineer, decompile, disassemble, modify, or resell the Platform or its outputs except as expressly permitted in writing by FohBoh.ai. Your Certification Reports and Discrepancy Reports are licensed to you for your internal use only.\n\n\n13\tUser Acknowledgment\tNEW\n\nBy creating an account, submitting data to, or otherwise using the FohBoh MGE Platform, you acknowledge and agree that:\n\n1.\tYou have read and understood these Terms in their entirety;\n2.\tYou are submitting your own data and are solely responsible for its accuracy and completeness;\n3.\tFohBoh.ai certifies the processing of your data, not the underlying facts represented by that data;\n4.\tNo assurance of any financial recovery, vendor response, credit, rate adjustment, or legal outcome has been made by FohBoh.ai;\n5.\tThe Revenue Recovery Modules produce data outputs, not legal claims or verified findings of vendor wrongdoing;\n6.\tAny template correspondence provided by FohBoh.ai is a user convenience only and is not legal advice;\n7.\tYou will not represent any Certification Report as having been prepared, independently verified, or endorsed by FohBoh.ai beyond the scope stated in these Terms;\n8.\tYou will seek qualified legal and financial counsel before using any Platform output in formal disputes, legal proceedings, or regulatory matters where significant financial or legal consequences may result.\n\n14\tModifications\n\nFohBoh.ai may update these Terms at any time. When material changes are made, we will update the version number and effective date at the top of this document and, where practicable, notify active users via the Platform or registered email. Continued use of the Platform following any update constitutes your acceptance of the revised Terms. The current version will always be available at fohboh.ai.\n\n15\tGoverning Law \u0026 Dispute Resolution\n\nThese Terms are governed by the laws of the State of Texas, without regard to its conflict of law principles. Any dispute arising under or related to these Terms or the Platform that cannot be resolved informally shall be submitted to binding arbitration in Dallas, Texas, under the rules of the American Arbitration Association, unless both parties agree otherwise in writing.\n\nQuestions regarding these Terms may be directed to: legal@fohboh.ai\nFohBoh.ai, Inc.\nDallas, Texas\nfohboh.ai, Inc. | legal@fohboh.ai\tEffective Date: February 1, 2026\nVersion 2.0 | Supersedes all prior versions\n\n\n\nContact Us\nFor questions about these Terms, please contact:\nlegal@fohboh.com\nFohBoh.ai, Inc.\nDallas, Texas\n\n\n\n","privacy_policy_text":"FohBoh.ai: Privacy Policy\nEffective Date: February 1, 2026\n\nBailiwick Ventures, Inc. (\u201cwe,\u201d \u201cus,\u201d \u201cour\u201d), doing business as FohBoh.ai, is committed to protecting your privacy and maintaining your trust. This Privacy Policy explains how we collect, use, store, and share information when you access or use our website, services, and AI tools (\u201cServices\u201d).\nBy using FohBoh.ai, you agree to the terms of this Privacy Policy. If you do not agree, please do not access or use our Services.\n\n1. Information We Collect\nWe collect the following types of information:\nA. Information You Provide\nAccount information (name, email, password, business name)\nBusiness data (uploaded documents, POS data, inventory files, employee schedules, etc.)\nCommunication (support requests, chat logs, surveys)\ufffd\nB. Information Collected Automatically\nDevice information (browser type, IP address, operating system)\nUsage data (pages visited, interactions with AI tools, usage frequency)\nCookies and similar technologies (see Section 8 below)\ufffd\n\n2. How We Use Your Information\nWe use your information to:\nProvide and improve our Services\nPersonalize your experience and insights\nProcess transactions and manage subscriptions\nAnalyze usage and performance trends\nRespond to your support inquiries\nComply with legal obligations\nWe do not sell or rent your personal or business data.\n\n3. Data Security and Confidentiality\nWe use industry-standard security measures to protect your data, including:\nHTTPS encryption in transit\nSecure Amazon S3 and PostgreSQL data storage\nRole-based access control and audit logging\nRegular data backups and recovery plans\nAll sensitive business data (e.g., restaurant sales, labor files) is encrypted at rest and in transit. Our employees and contractors are required to follow strict confidentiality protocols.\n\n4. AI and LLM Usage\nFohBoh.ai leverages secure APIs from third-party large language model providers (OpenAI, Anthropic, Google, among others). By using our platform, you acknowledge:\nYour input data and AI interactions may be processed by these providers solely to generate responses.\nWe implement safeguards to ensure that data is not retained by LLM providers beyond the session or used to train their models, as governed by their policies.\nWe do not share identifiable customer data with these LLM providers beyond what is required to generate AI outputs.\n\n5. Data Retention\nWe retain your data only for as long as necessary to provide Services and comply with legal obligations. You may request deletion of your account or uploaded content by contacting privacy@fohboh.com\nBackups may be retained for up to 30 days before being purged.\n\n6. Your Rights and Choices\nYou have the right to:\nAccess, update, or delete your personal information\nRequest a copy of your data\nWithdraw consent for certain uses (where applicable)\nRequest to close your account\nTo exercise these rights, email us at privacy@fohboh.com. We will respond within 30 days.\n\n7. Third-Party Integrations\nFohBoh.ai may integrate with POS systems, scheduling tools, or other restaurant software at your request. When you connect third-party platforms:\nYou grant FohBoh.ai access to relevant data for the purposes of the Services.\nWe do not store credentials and use OAuth or API tokens securely.\nYour use of third-party platforms is governed by their own privacy policies.\ufffd\n\n8. Cookies and Tracking\nWe use cookies and similar technologies to:\nMaintain session states\nAnalyze usage trends\nImprove platform performance\nYou may disable cookies in your browser settings, but this may affect functionality.\n\n9. Children\u2019s Privacy\nFohBoh.ai is not intended for use by individuals under 18. We do not knowingly collect information from children.\n\n10. Changes to This Policy\nWe may update this Privacy Policy from time to time. When we do, we will revise the \u201cEffective Date\u201d and notify users via email or in-app notifications where required. Continued use of FohBoh.ai constitutes your agreement to the revised policy.\n\n11. Contact Us\nIf you have questions about this Privacy Policy or your data, contact:\ufffd privacy@fohboh.com\ufffd Bailiwick Ventures, Inc.\ufffd DBA FohBoh.ai\ufffd Dallas, Texas\n\n\n\n\n\n\n\n\n\n\n\n\n\n","show_terms_and_conditions":true,"show_privacy_policy":true,"gdpr_html":null,"live_chat":false};$S.stores={"fonts_v2":[{"name":"montserrat","fontType":"google","displayName":"Montserrat","cssValue":"montserrat, helvetica","settings":{"weight":"400,700"},"hidden":false,"cssFallback":"sans-serif","disableBody":null,"isSuggested":true},{"name":"raleway","fontType":"google","displayName":"Raleway","cssValue":"raleway, helvetica","settings":{"weight":"300,700"},"hidden":false,"cssFallback":"sans-serif","disableBody":null,"isSuggested":true},{"name":"titillium web","fontType":"google","displayName":"Titillium","cssValue":"\"titillium web\", titillium, helvetica","settings":{"weight":"300,700,300italic,700italic"},"hidden":false,"cssFallback":"sans-serif","disableBody":null,"isSuggested":true},{"name":"arial","fontType":"system","displayName":"Arial","cssValue":"arial","settings":null,"hidden":false,"cssFallback":"sans-serif","disableBody":null,"isSuggested":true}],"features":{"allFeatures":[{"name":"ecommerce_shipping_region","canBeUsed":true,"hidden":false},{"name":"ecommerce_taxes","canBeUsed":true,"hidden":false},{"name":"ecommerce_category","canBeUsed":true,"hidden":false},{"name":"product_page","canBeUsed":true,"hidden":false},{"name":"ecommerce_free_shipping","canBeUsed":true,"hidden":false},{"name":"ecommerce_custom_product_url","canBeUsed":true,"hidden":false},{"name":"ecommerce_coupon","canBeUsed":true,"hidden":false},{"name":"ecommerce_checkout_form","canBeUsed":true,"hidden":false},{"name":"mobile_actions","canBeUsed":true,"hidden":false},{"name":"ecommerce_layout","canBeUsed":true,"hidden":false},{"name":"portfolio_layout","canBeUsed":true,"hidden":false},{"name":"analytics","canBeUsed":true,"hidden":false},{"name":"fb_image","canBeUsed":true,"hidden":false},{"name":"twitter_card","canBeUsed":true,"hidden":false},{"name":"favicon","canBeUsed":true,"hidden":false},{"name":"style_panel","canBeUsed":true,"hidden":false},{"name":"google_analytics","canBeUsed":true,"hidden":false},{"name":"blog_custom_url","canBeUsed":true,"hidden":false},{"name":"page_collaboration","canBeUsed":true,"hidden":false},{"name":"bookings","canBeUsed":true,"hidden":false},{"name":"membership","canBeUsed":true,"hidden":false},{"name":"social_feed_facebook_page","canBeUsed":true,"hidden":false},{"name":"portfolio_category","canBeUsed":true,"hidden":false},{"name":"premium_templates","canBeUsed":true,"hidden":false},{"name":"custom_domain","canBeUsed":true,"hidden":false},{"name":"premium_support","canBeUsed":true,"hidden":false},{"name":"remove_branding_title","canBeUsed":true,"hidden":false},{"name":"full_analytics","canBeUsed":true,"hidden":false},{"name":"ecommerce_layout","canBeUsed":true,"hidden":false},{"name":"portfolio_layout","canBeUsed":true,"hidden":false},{"name":"ecommerce_digital_download","canBeUsed":true,"hidden":false},{"name":"disable_captcha","canBeUsed":true,"hidden":false},{"name":"password_protection","canBeUsed":true,"hidden":false},{"name":"remove_logo","canBeUsed":true,"hidden":false},{"name":"optimizely","canBeUsed":true,"hidden":false},{"name":"custom_code","canBeUsed":true,"hidden":false},{"name":"blog_custom_code","canBeUsed":true,"hidden":false},{"name":"premium_assets","canBeUsed":true,"hidden":false},{"name":"premium_apps","canBeUsed":true,"hidden":false},{"name":"premium_sections","canBeUsed":true,"hidden":false},{"name":"blog_mailchimp_integration","canBeUsed":true,"hidden":false},{"name":"multiple_page","canBeUsed":true,"hidden":false},{"name":"ecommerce_layout","canBeUsed":true,"hidden":false},{"name":"portfolio_layout","canBeUsed":true,"hidden":false},{"name":"facebook_pixel","canBeUsed":true,"hidden":false},{"name":"blog_category","canBeUsed":true,"hidden":false},{"name":"custom_font","canBeUsed":true,"hidden":false},{"name":"blog_post_amp","canBeUsed":true,"hidden":false},{"name":"site_search","canBeUsed":true,"hidden":false},{"name":"portfolio_category","canBeUsed":true,"hidden":false},{"name":"popup","canBeUsed":true,"hidden":false},{"name":"custom_form","canBeUsed":true,"hidden":false},{"name":"portfolio_custom_product_url","canBeUsed":true,"hidden":false},{"name":"email_automation","canBeUsed":true,"hidden":false},{"name":"blog_password_protection","canBeUsed":true,"hidden":false},{"name":"custom_ads","canBeUsed":true,"hidden":false},{"name":"portfolio_form_custom_fields","canBeUsed":true,"hidden":false},{"name":"live_chat","canBeUsed":false,"hidden":false},{"name":"auto_translation","canBeUsed":false,"hidden":false},{"name":"membership_tier","canBeUsed":false,"hidden":false},{"name":"redirect_options","canBeUsed":false,"hidden":false},{"name":"portfolio_region_options","canBeUsed":false,"hidden":false},{"name":"require_contact_info_view_portfolio","canBeUsed":false,"hidden":false},{"name":"ecommerce_product_add_on_categories","canBeUsed":false,"hidden":false}]},"showStatic":{"footerLogoSeoData":{"anchor_link":"https:\/\/www.strikingly.com\/?ref=logo\u0026permalink=inky-sparrow-64kn7\u0026custom_domain=www.fohboh.ai\u0026utm_campaign=footer_pbs\u0026utm_content=https%3A%2F%2Fwww.fohboh.ai%2F\u0026utm_medium=user_page\u0026utm_source=166223\u0026utm_term=pbs_b","anchor_text":"How to build a website"},"isEditMode":false},"ecommerceProductCollection":{"data":{"products":[]}},"ecommerceProductOrderList":{},"ecommerceCategoryCollection":null,"hasEcommerceProducts":false,"portfolioCategoryCollection":null,"hasPortfolioProducts":false,"blogCategoryCollection":{},"hasBlogs":true};$S.liveBlog=true;