<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Hypersampling — Kou Jiaxin</title>
  <meta name="description" content="Dream artist, death theorist, algorithm hacker and pretty old school. Exploring the Second Renaissance.">

  <!-- Preload fonts -->
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600&display=swap" rel="stylesheet">

  <style>
    /* Critical CSS for instant render */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background-color: #f5f2eb;
      color: #1a1a1a;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Page load animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    #app {
      animation: fadeIn 0.8s ease-out;
    }

    /* Loading state */
    .loading {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f5f2eb;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .loading.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loading-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: #8b7355;
      letter-spacing: 0.1em;
    }
  </style>
  <script type="module" crossorigin src="/assets/main-CKmlqu5r.js"></script>
  <link rel="stylesheet" crossorigin href="/assets/main-Cp8lCo8T.css">
</head>
<body>
  <div class="loading" id="loading">
    <span class="loading-text">Loading...</span>
  </div>
  <div id="app"></div>
  <script>
    // Hide loading screen when app is ready
    window.addEventListener('load', () => {
      setTimeout(() => {
        document.getElementById('loading').classList.add('hidden');
      }, 300);
    });
  </script>
</body>
</html>
