<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotkeys Holding LLC</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #09090b;
    --surface: #111114;
    --border: rgba(255,255,255,0.07);
    --text-primary: #f0ede8;
    --text-secondary: rgba(240,237,232,0.45);
    --accent: #3d7fff;
    --accent-dim: rgba(61,127,255,0.10);
  }

  html, body {
    height: 100%;
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
  }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 0;
  }

  /* Dot grid */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
  }

  .glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(61,127,255,0.065) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── Header ── */
  header {
    position: relative;
    z-index: 10;
    padding: 1.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }

  .logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(61,127,255,0.55);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  .status-badge {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(61,127,255,0.22);
    padding: 5px 13px;
    border-radius: 100px;
    white-space: nowrap;
  }

  /* ── Main ── */
  main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 5rem 3rem;
  }

  .content {
    max-width: 580px;
    width: 100%;
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.05s forwards;
  }

  .eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: 0.55;
    flex-shrink: 0;
  }

  h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 1.1rem;
  }

  .subheadline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(240,237,232,0.42);
    line-height: 1.55;
  }

  .rule {
    width: 36px;
    height: 1px;
    background: var(--accent);
    opacity: 0.45;
    margin: 1.85rem 0;
  }

  .body-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 300;
  }

  .body-text + .body-text {
    margin-top: 1rem;
  }

  .cta-row {
    margin-top: 2.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
    border: 1px solid rgba(61,127,255,0.38);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }

  .btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  .btn:hover .btn-arrow {
    transform: translate(2px, -2px);
  }

  .btn-arrow {
    transition: transform 0.18s ease;
  }

  /* ── Footer ── */
  footer {
    position: relative;
    z-index: 10;
    padding: 1.4rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
  }

  .footer-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
    flex-shrink: 0;
  }

  .footer-right {
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(240,237,232,0.2);
  }

  /* ── Responsive ── */
  @media (max-width: 640px) {
    header, footer { padding: 1.4rem 1.25rem; }
    main { padding: 3rem 1.25rem; }
    footer { flex-direction: column; align-items: flex-start; }
    h1 { font-size: 2.4rem; }
  }
</style>
</head>
<body>

<div class="glow"></div>

<header>
  <div class="logo-mark">
    <div class="logo-icon">
      <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <rect x="1" y="1" width="5" height="5" rx="1" fill="#3d7fff" opacity="0.95"/>
        <rect x="8" y="1" width="5" height="5" rx="1" fill="#3d7fff" opacity="0.55"/>
        <rect x="1" y="8" width="5" height="5" rx="1" fill="#3d7fff" opacity="0.55"/>
        <rect x="8" y="8" width="5" height="5" rx="1" fill="#3d7fff" opacity="0.22"/>
      </svg>
    </div>
    <span class="logo-text">Hotkeys Holding</span>
  </div>
  <span class="status-badge">Site Updating</span>
</header>

<main>
  <div class="content">
    <div class="eyebrow">Intelligent Infrastructure</div>

    <h1>Hotkeys<br>Holding LLC</h1>

    <p class="subheadline">Empowering Human Potential<br>Through Intelligent Systems</p>

    <div class="rule"></div>

    <p class="body-text">We build AI-powered automation and workflow infrastructure for organizations operating in healthcare, government, education, and regulated service environments.</p>
    <p class="body-text">Our site is currently undergoing updates to reflect our expanding scope and capabilities.</p>

    <div class="cta-row">
      <a class="btn" href="mailto:aparker@keyskillset.com" aria-label="Contact Hotkeys Holding">
        Get in Touch
        <svg class="btn-arrow" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true">
          <path d="M2 10L10 2M10 2H4M10 2V8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </a>
    </div>
  </div>
</main>

<footer>
  <div class="footer-left">
    <span>Women-Owned Small Business</span>
    <span class="footer-sep"></span>
    <span>hotkeysholding.com</span>
  </div>
  <span class="footer-right">© 2025 Hotkeys Holding LLC</span>
</footer>

</body>
</html>
