<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="robots" content="noindex">
  <meta name="theme-color" content="#1B2540">
  <title>Apaxir</title>
  <link rel="icon" type="image/svg+xml" href="/favicon.svg">
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=block">
  <style>
    :root {
      color-scheme: dark;

      /* brand tokens — see brand-kit.html */
      --navy-950: #1B2540;
      --navy-700: #2E4067;
      --cyan-400: #22E1F0;
      --off-white: #F4F6F8;

      --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      min-height: 100svh;
      display: grid;
      place-items: center;
      padding: 2rem;
      background: var(--navy-950);
      color: var(--off-white);
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ---------- background ---------- */

    .bg {
      position: fixed;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .bg::before,
    .bg::after {
      content: "";
      position: absolute;
      inset: 0;
    }

    /* cyan wash off the top — the one accent, kept low */
    .bg::before {
      background: radial-gradient(60rem 38rem at 50% 2%, rgba(34, 225, 240, 0.13), transparent 68%);
      animation: breathe 9s ease-in-out infinite;
      will-change: opacity;
    }

    /* navy lift off the bottom, so the ground isn't flat */
    .bg::after {
      background: radial-gradient(72rem 44rem at 50% 118%, rgba(46, 64, 103, 0.5), transparent 70%);
    }

    /* the mark's hexagon, watermarked in hairlines */
    .bg-hex {
      position: absolute;
      top: 50%;
      left: 50%;
      width: min(118vmin, 62rem);
      transform: translate(-50%, -50%);
      color: var(--navy-700);
      opacity: 0.6;
    }

    .bg-hex path { vector-effect: non-scaling-stroke; }

    @keyframes breathe {
      0%, 100% { opacity: 0.7; }
      50%      { opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
      .bg::before { animation: none; }
    }

    /* ---------- wordmark ---------- */

    main {
      position: relative;
      z-index: 1;
    }

    h1 { margin: 0; }

    /* inlined, not <img> — the wordmark is live Poppins text and an
       isolated SVG document can't reach the page's webfont */
    .wordmark {
      display: block;
      width: clamp(13rem, 48vw, 27rem);
      height: auto;
    }
  </style>
</head>
<body>

<div class="bg" aria-hidden="true">
  <svg class="bg-hex" viewBox="0 0 200 200" fill="none" stroke="currentColor" stroke-linejoin="round">
    <path d="M188 100 L144 23.79 L56 23.79 L12 100 L56 176.21 L144 176.21 Z" stroke-width="1.6"/>
    <path d="M172.2 100 L136.1 37.4 L63.9 37.4 L27.8 100 L63.9 162.6 L136.1 162.6 Z" stroke-width="1"/>
    <path d="M152.8 100 L126.4 54.27 L73.6 54.27 L47.2 100 L73.6 145.73 L126.4 145.73 Z" stroke-width="1"/>
    <path d="M188 100 L152.8 100 M144 23.79 L126.4 54.27 M56 23.79 L73.6 54.27 M12 100 L47.2 100 M56 176.21 L73.6 145.73 M144 176.21 L126.4 145.73" stroke-width="1" stroke-linecap="round"/>
  </svg>
</div>

<main>
  <h1>
    <svg class="wordmark" viewBox="0 0 300 160" role="img" aria-label="Apaxir">
      <text x="0" y="122" font-family="Poppins, sans-serif" font-size="98px" font-weight="600" letter-spacing="-4" fill="#F4F6F8">apaxir</text>
    </svg>
  </h1>
</main>

<script src="https://cdn.apaxir.com/widget.js"></script>
<apaxir-chatbot bot-id="3fb19d43-d3b3-4d47-ac77-90906ef940f2" lang="en"></apaxir-chatbot>
</body>
</html>
