/* Gold Apple — 글로벌 푸터 inject (index 기준 .s-closer 통일) * 적용 페이지: /web/* 8개 상세페이지 + 추후 신규 페이지 * 효과: legacy #footer-wrap, #footer-wrap2 강제 숨김 + .s-closer-injected 컴팩트 푸터 노출 * 주의: 기존 footer DOM은 보존 (a11y/SEO link 유지). 시각만 .s-closer로 교체. */ (function(){ function init(){ if (document.querySelector('.s-closer-injected')) return; var footer = document.createElement('footer'); footer.className = 's-closer-injected'; footer.innerHTML = '' + '
' + '
' + '
' + '
·Start · Your Next Step
' + '

Own your Digital Gold,
one quiet tap at a time.

' + '
' + '
' + '

No jargon, no hype. A smart-contract-only bridge between Acorns, USDT, and your everyday portfolio — opened the moment you sign up.

' + 'Start Investing' + '
' + '
' + '
' + '
' + '
Gold Apple
' + '

A goose that lays golden eggs, every single day. Smart trading on TRC-20 — Seoul-built, transparent by contract.

' + '' + '
' + '
' + '

Product

' + '' + '
' + '
' + '

Company

' + '' + '
' + '
' + '

Legal

' + '' + '
' + '
' + '
' + '© 2026 Gold Apple Co., Ltd.
Republic of Korea — All rights reserved.
' + '' + '
' + '
'; /* legacy / variant footer 위치에 삽입 (있으면 그 위에, 없으면 body 끝에) */ var legacy = document.getElementById('footer-wrap2') || document.getElementById('footer-wrap') || document.querySelector('.v2-footer, .v3-footer, .v4-footer, .v5-footer') || document.querySelector('.s-closer-slim'); if (legacy && legacy.parentNode) legacy.parentNode.insertBefore(footer, legacy); else document.body.appendChild(footer); /* 페이지에 .footer-injected 클래스 + legacy 시각 숨김 (CSS hook) */ document.body.classList.add('ga-footer-injected'); } if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', init); else init(); })();