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

Ready to transform your content creation?

Join thousands of creators who save time and produce better content with Short AI

Get Started - Free Forever
`; } } customElements.define('custom-cta', CustomCta);