// Valicen — "Coming soon" splash gate.
//
// ┌─────────────────────────────────────────────────────────────┐
// │  TO BRING THE FULL SITE BACK:                                │
// │  open app.jsx and set   COMING_SOON = false                 │
// │  (one line, near the top). Nothing else changes.            │
// └─────────────────────────────────────────────────────────────┘

function ComingSoon() {
  return (
    <main className="splash">
      {/* Calm brand atmosphere: drifting teal aura + a slow monitoring sweep */}
      <div className="splash-bg" aria-hidden="true">
        <div className="splash-aura splash-aura-1"></div>
        <div className="splash-aura splash-aura-2"></div>
        <div className="splash-sweep"></div>
        <div className="splash-grid"></div>
      </div>

      <div className="splash-inner">
        <img className="splash-logo" src="assets/valicen-logo-white-accent.svg" alt="Valicen — Strategic Technology Solutions" />
        <div className="splash-eyebrow">Coming soon</div>
        <h1 className="splash-head">Something different is on the way.</h1>
        <p className="splash-sub">We're putting the finishing touches on our new home. Get ready for solutions built to keep your business protected, efficient, and ready for what's next.</p>
        <a className="splash-cta" href="mailto:hello@valicen.com">
          Get in touch
          <i data-lucide="arrow-right"></i>
        </a>
      </div>

      <footer className="splash-foot">© {new Date().getFullYear()} Valicen LLC</footer>
    </main>);

}