diff --git a/apps/valor-software-site/src/assets/js/intercom-facade.js b/apps/valor-software-site/src/assets/js/intercom-facade.js
index 9c4e6e4a4..09bc4fc60 100644
--- a/apps/valor-software-site/src/assets/js/intercom-facade.js
+++ b/apps/valor-software-site/src/assets/js/intercom-facade.js
@@ -1 +1,213 @@
-!function(){var t=window.intercomSettings;if("undefined"!==t.app_id?t.app_id:""){var e=function(t,e=null,n=null){var o=document.createElement("div");return Object.keys(t).forEach((function(e){o.style[e]=t[e]})),e&&o.setAttribute("id",e),o.innerHTML=n,o},n=function(t){if(!window.Intercom){var e=window,n=e.Intercom;if("function"==typeof n)n("reattach_activator"),n("update",e.intercomSettings);else{var a=document,r=function(){r.c(arguments)};r.q=[],r.c=function(t){r.q.push(t)},e.Intercom=r;var l=function(){var t=a.createElement("script");t.type="text/javascript",t.async=!0,t.src="https://widget.intercom.io/widget/brxsww1a";var e=a.getElementsByTagName("script")[0];e.parentNode.insertBefore(t,e)};e.attachEvent?e.attachEvent("onload",l):e.addEventListener("load",l,!1)}}t&&(o.style.opacity="0",i.style.opacity="1",i.style.transform="rotate(0deg)",window.Intercom("show"));var c=0,s=setInterval((function(){c++,window.Intercom.booted?(null!==document.querySelector("#intercom-facade-btn")&&document.querySelector("#intercom-facade-btn").remove(),clearInterval(s)):c>10&&clearInterval(s)}),1e3);return!0},o=e({display:"flex",WebkitBoxAlign:"center",alignItems:"center",WebkitBoxPack:"center",justifyContent:"center",position:"absolute",top:"0px",bottom:"0px",width:"100%",transform:"rotate(0deg) scale(1)",transition:"transform 0.16s linear 0s, opacity 0.08s linear 0s"},null,'\n\n'),i=e({display:"flex",WebkitBoxAlign:"center",alignItems:"center",WebkitBoxPack:"center",justifyContent:"center",position:"absolute",top:"0px",bottom:"0px",width:"100%",transition:"transform 0.16s linear 0s, opacity 0.08s linear 0s",opacity:"0",transform:"rotate(-30deg)"},null,'\n\n'),a=e({position:"absolute",top:"0px",left:"0px",width:"60px",height:"60px",borderRadius:"50%",cursor:"pointer",transformOrigin:"center",overflowX:"hidden",overflowY:"hidden",WebkitBackfaceVisibility:"hidden",WebkitFontSmoothing:"antialiased"}),r=e({fontFamily:"intercom-font, 'Helvetica Neue', 'Apple Color Emoji', Helvetica, Arial, sans-serif",fontSize:"100%",fontStyle:"normal",letterSpacing:"normal",fontStretch:"normal",fontVariantLigatures:"normal",fontVariantCaps:"normal",fontVariantEastAsian:"normal",fontVariantPosition:"normal",fontWeight:"normal",textAlign:"left",textDecorationLine:"none",textDecorationStyle:"initial",textDecorationColor:"initial",textDecoration:"none",textIndent:"0px",textShadow:"none",textTransform:"none",boxSizing:"content-box",WebkitTextEmphasisStyle:"none",WebkitTextEmphasisColor:"initial",WebkitFontSmoothing:"antialiased",lineHeight:1}),l=e({zIndex:2147483004,position:"fixed",bottom:"20px",display:"block",right:"20px",width:"60px",height:"60px",borderRadius:"50%",boxShadow:"rgba(0, 0, 0, 0.0588235) 0px 1px 6px 0px, rgba(0, 0, 0, 0.156863) 0px 2px 32px 0px",backgroundColor:"#333333"},"intercom-facade-btn");a.append(o),a.append(i),r.append(a),r.addEventListener("click",(function(){n(!0)})),r.addEventListener("mouseenter",(function(){n(!1)})),l.append(r),document.querySelector("body").append(l),void 0!==t.custom_launcher_selector&&document.querySelectorAll(t.custom_launcher_selector).forEach((function(t){t.addEventListener("click",(function(t){t.preventDefault(),n(!0)}))}))}}();
\ No newline at end of file
+document.addEventListener("DOMContentLoaded", function() {
+ var t = window.intercomSettings;
+ if (t !== undefined && t.app_id) {
+ var createDivElement = function(styles, id = null, innerHTML = null) {
+ var div = document.createElement("div");
+ Object.keys(styles).forEach(function(style) {
+ div.style[style] = styles[style];
+ });
+ if (id) {
+ div.setAttribute("id", id);
+ }
+ if (innerHTML) {
+ div.innerHTML = innerHTML;
+ }
+ return div;
+ };
+
+ var initializeIntercom = function(show) {
+ if (!window.Intercom) {
+ var w = window, ic = w.Intercom;
+ if (typeof ic === "function") {
+ ic("reattach_activator");
+ ic("update", w.intercomSettings);
+ } else {
+ var d = document, i = function() {
+ i.c(arguments);
+ };
+ i.q = [];
+ i.c = function(args) {
+ i.q.push(args);
+ };
+ w.Intercom = i;
+ var l = function() {
+ var s = d.createElement("script");
+ s.type = "text/javascript";
+ s.async = true;
+ s.src = "https://widget.intercom.io/widget/brxsww1a";
+ var x = d.getElementsByTagName("script")[0];
+ x.parentNode.insertBefore(s, x);
+ };
+ if (w.attachEvent) {
+ w.attachEvent("onload", l);
+ } else {
+ w.addEventListener("load", l, false);
+ }
+ }
+ }
+ if (show) {
+ if (document.querySelector("#intercom-facade-btn")) {
+ document.querySelector("#intercom-facade-btn").remove();
+ }
+ window.Intercom("show");
+ }
+ var attempt = 0, maxAttempts = 10, interval = 1000;
+ var checkIntercomBooted = setInterval(function() {
+ attempt++;
+ if (window.Intercom.booted) {
+ var facadeBtn = document.querySelector("#intercom-facade-btn");
+ if (facadeBtn) {
+ facadeBtn.remove();
+ }
+ clearInterval(checkIntercomBooted);
+ } else if (attempt >= maxAttempts) {
+ clearInterval(checkIntercomBooted);
+ }
+ }, interval);
+ };
+
+ var o = createDivElement({
+ display: "flex",
+ WebkitBoxAlign: "center",
+ alignItems: "center",
+ WebkitBoxPack: "center",
+ justifyContent: "center",
+ position: "absolute",
+ top: "0px",
+ bottom: "0px",
+ width: "100%",
+ transform: "rotate(0deg) scale(1)",
+ transition: "transform 0.16s linear 0s, opacity 0.08s linear 0s"
+ }, null, `
+
+`);
+
+ var i = createDivElement({
+ display: "flex",
+ WebkitBoxAlign: "center",
+ alignItems: "center",
+ WebkitBoxPack: "center",
+ justifyContent: "center",
+ position: "absolute",
+ top: "0px",
+ bottom: "0px",
+ width: "100%",
+ transition: "transform 0.16s linear 0s, opacity 0.08s linear 0s",
+ opacity: "0",
+ transform: "rotate(-30deg)"
+ }, null, `
+
+`);
+
+ var a = createDivElement({
+ position: "absolute",
+ top: "0px",
+ left: "0px",
+ width: "60px",
+ height: "60px",
+ borderRadius: "50%",
+ cursor: "pointer",
+ transformOrigin: "center",
+ overflowX: "hidden",
+ overflowY: "hidden",
+ WebkitBackfaceVisibility: "hidden",
+ WebkitFontSmoothing: "antialiased"
+ });
+
+ var r = createDivElement({
+ fontFamily: "intercom-font, 'Helvetica Neue', 'Apple Color Emoji', Helvetica, Arial, sans-serif",
+ fontSize: "100%",
+ fontStyle: "normal",
+ letterSpacing: "normal",
+ fontStretch: "normal",
+ fontVariantLigatures: "normal",
+ fontVariantCaps: "normal",
+ fontVariantEastAsian: "normal",
+ fontVariantPosition: "normal",
+ fontWeight: "normal",
+ textAlign: "left",
+ textDecorationLine: "none",
+ textDecorationStyle: "initial",
+ textDecorationColor: "initial",
+ textDecoration: "none",
+ textIndent: "0px",
+ textShadow: "none",
+ textTransform: "none",
+ boxSizing: "content-box",
+ WebkitTextEmphasisStyle: "none",
+ WebkitTextEmphasisColor: "initial",
+ WebkitFontSmoothing: "antialiased",
+ lineHeight: 1
+ });
+
+ var l = createDivElement({
+ zIndex: 2147483004,
+ position: "fixed",
+ bottom: "20px",
+ display: "block",
+ right: "20px",
+ width: "60px",
+ height: "60px",
+ borderRadius: "50%",
+ boxShadow: "rgba(0, 0, 0, 0.0588235) 0px 1px 6px 0px, rgba(0, 0, 0, 0.156863) 0px 2px 32px 0px",
+ backgroundColor: "#333333"
+ }, "intercom-facade-btn");
+
+ if (a && o && i) {
+ a.append(o);
+ a.append(i);
+ } else {
+ console.error('Failed to create elements a, o, or i.');
+ }
+
+ if (r && a) {
+ r.append(a);
+ r.addEventListener("click", function() {
+ initializeIntercom(true);
+ });
+ r.addEventListener("mouseenter", function() {
+ initializeIntercom(false);
+ });
+ } else {
+ console.error('Failed to create elements r or a.');
+ }
+
+ if (l && r) {
+ l.append(r);
+ var body = document.querySelector("body");
+ if (body) {
+ body.append(l);
+ } else {
+ console.error('Failed to append to body. Body element does not exist.');
+ }
+ } else {
+ console.error('Failed to create elements l or r.');
+ }
+
+ if (t.custom_launcher_selector !== undefined) {
+ document.querySelectorAll(t.custom_launcher_selector).forEach(function(element) {
+ element.addEventListener("click", function(event) {
+ event.preventDefault();
+ initializeIntercom(true);
+ });
+ });
+ }
+ }
+});