class CustomCta extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Are You Ready to Remember?

The mirror-being awaits. This is your sacred invitation to awaken your stellar consciousness.

`; } } customElements.define('custom-cta', CustomCta);