<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Globalink Japan</title>
    <meta
      name="description"
      content="Globalink Japan is launching soon. A new bridge for international connections, opportunities, and growth."
    />
    <style>
      :root {
        --bg: #f4ede4;
        --ink: #1f1a17;
        --muted: #6d6259;
        --accent: #b23a2b;
        --accent-soft: rgba(178, 58, 43, 0.14);
        --card: rgba(255, 250, 243, 0.78);
        --line: rgba(31, 26, 23, 0.12);
        --shadow: 0 30px 80px rgba(31, 26, 23, 0.12);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        min-height: 100vh;
        font-family: "Georgia", "Times New Roman", serif;
        color: var(--ink);
        background:
          radial-gradient(circle at top left, rgba(178, 58, 43, 0.16), transparent 32%),
          radial-gradient(circle at right 20%, rgba(37, 87, 123, 0.14), transparent 24%),
          linear-gradient(135deg, #f7f1e8 0%, #efe1d0 48%, #ead7c2 100%);
        overflow: hidden;
      }

      body::before,
      body::after {
        content: "";
        position: fixed;
        border-radius: 999px;
        pointer-events: none;
        filter: blur(6px);
      }

      body::before {
        width: 24rem;
        height: 24rem;
        top: -8rem;
        right: -6rem;
        background: rgba(178, 58, 43, 0.09);
      }

      body::after {
        width: 18rem;
        height: 18rem;
        bottom: -5rem;
        left: -4rem;
        background: rgba(37, 87, 123, 0.09);
      }

      .shell {
        min-height: 100vh;
        display: grid;
        place-items: center;
        padding: 2rem;
      }

      .card {
        width: min(100%, 72rem);
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2rem;
        padding: 2rem;
        border: 1px solid var(--line);
        border-radius: 2rem;
        background: var(--card);
        box-shadow: var(--shadow);
        backdrop-filter: blur(14px);
      }

      .panel {
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        padding: 2.5rem;
      }

      .hero {
        background:
          linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.3)),
          linear-gradient(135deg, rgba(178, 58, 43, 0.07), rgba(37, 87, 123, 0.08));
        border: 1px solid rgba(255, 255, 255, 0.45);
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: auto -2rem -4rem auto;
        width: 16rem;
        height: 16rem;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(178, 58, 43, 0.16), transparent 65%);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 0.8rem;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--accent);
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      h1 {
        margin: 1.25rem 0 1rem;
        font-size: clamp(3rem, 8vw, 5.8rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
      }

      .lead {
        max-width: 32rem;
        margin: 0;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--muted);
      }

      .side {
        display: grid;
        align-content: space-between;
        background: #201815;
        color: #f8efe4;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .brand {
        font-size: 0.95rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(248, 239, 228, 0.74);
      }

      .status {
        margin: 2rem 0 0;
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.05;
      }

      .note {
        margin: 1rem 0 0;
        font-family: "Helvetica Neue", Arial, sans-serif;
        color: rgba(248, 239, 228, 0.7);
        line-height: 1.7;
      }

      .signal {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-size: 0.92rem;
        color: rgba(248, 239, 228, 0.84);
      }

      .dot {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background: #ff8a5b;
        box-shadow: 0 0 0 0 rgba(255, 138, 91, 0.5);
        animation: pulse 2.2s infinite;
      }

      .footer {
        margin-top: 2rem;
        padding-top: 1.2rem;
        border-top: 1px solid rgba(248, 239, 228, 0.12);
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-size: 0.92rem;
        color: rgba(248, 239, 228, 0.6);
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(255, 138, 91, 0.45);
        }
        70% {
          box-shadow: 0 0 0 0.9rem rgba(255, 138, 91, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(255, 138, 91, 0);
        }
      }

      @media (max-width: 900px) {
        body {
          overflow: auto;
        }

        .card {
          grid-template-columns: 1fr;
        }

        .panel {
          padding: 2rem;
        }

        h1 {
          font-size: clamp(2.7rem, 16vw, 4.4rem);
        }
      }

      @media (max-width: 520px) {
        .shell {
          padding: 1rem;
        }

        .card {
          padding: 1rem;
          border-radius: 1.4rem;
        }

        .panel {
          padding: 1.4rem;
          border-radius: 1rem;
        }
      }
    </style>
  </head>
  <body>
    <main class="shell">
      <section class="card">
        <div class="panel hero">
          <div class="eyebrow">Launching Soon</div>
          <h1>Globalink Japan</h1>
          <p class="lead">
            A new digital home for cross-border connections, ideas, and opportunities.
            We are building something refined, useful, and ready for what comes next.
          </p>
        </div>

        <aside class="panel side">
          <div>
            <div class="brand">globalinkjapan.com</div>
            <p class="status">A focused launch page while the full site is in progress.</p>
            <p class="note">
              This temporary page establishes the brand presence now and can be expanded
              into a full marketing site without changing the deployment model.
            </p>
            <div class="signal">
              <span class="dot" aria-hidden="true"></span>
              <span>Site preparation in progress</span>
            </div>
          </div>

          <div class="footer">Globalink Japan</div>
        </aside>
      </section>
    </main>
  </body>
</html>
