<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Truth For Free - Coming Soon</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #0a1628;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }
    .container { max-width: 600px; }
    h1 { font-size: 3rem; margin-bottom: 1rem; }
    p { font-size: 1.2rem; color: #aaa; margin-bottom: 2rem; }
    .logo { max-width: 200px; margin-bottom: 1.5rem; }
  </style>
</head>
<body>
  <div class="container">
    <img src="images/newlogo-onblue.jpg" alt="Truth For Free" class="logo">
    <h1>Truth For Free</h1>
    <p>Something new is coming. Check back soon.</p>
  </div>
  <div style="text-align:center;padding:0.5rem 0;">
    <span id="site-counter" style="font-size:0.75em;opacity:0.4;color:#ccc;"></span>
  </div>
<script>
(function(){
  fetch('https://site-counter.davidyeubanks.workers.dev/?site=truthforfree')
    .then(function(r){return r.json();})
    .then(function(d){
      var el=document.getElementById('site-counter');
      if(el) el.textContent='Visits: '+d.hits.toLocaleString()+' · Unique: '+d.unique.toLocaleString();
    }).catch(function(){});
})();
</script>
</body>
</html>
