    *, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    :root {
      --bg:      #0a0a0a;
      --surface: #111111;
      --border:  #1e1e1e;
      --muted:   #444;
      --sub:     #666;
      --text:    #d4d4d4;
      --accent:  #e2e2e2;
      --green:   #4ade80;
    }

    html, body {
      height: 100%;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      overflow: hidden;
    }

    /* subtle grid background */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding: 0 24px;
      max-width: 640px;
      width: 100%;
    }

    /* top status pill */
    .status {
      display: inline-flex;
      text-decoration: none;
      cursor: pointer;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 6px 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      color: var(--sub);
      letter-spacing: 0.04em;
    }

    .status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 8px var(--green);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.4; }
    }

    /* main heading */
    .heading {
      display: flex;
      align-items: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(1.6rem, 5vw, 2.8rem);
      font-weight: 300;
      color: var(--accent);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .prompt {
      color: var(--green);
      margin-right: 14px;
      font-size: 0.8em;
      user-select: none;
    }

    .typed-text { }

    .cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      background: var(--accent);
      margin-left: 5px;
      vertical-align: middle;
      animation: blink 1s step-start infinite;
    }

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

    /* subtitle */
    .subtitle {
      font-size: 0.9rem;
      color: var(--sub);
      line-height: 1.7;
      max-width: 460px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .subtitle.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* divider */
    .divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      opacity: 0;
      transition: opacity 0.6s ease 0.2s;
    }

    .divider.visible { opacity: 1; }

    /* links row */
    .links {
      display: flex;
      gap: 20px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
    }

    .links.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.2s;
      padding: 4px 0;
      border-bottom: 1px solid transparent;
    }

    .link:hover {
      color: var(--accent);
      border-bottom-color: var(--border);
    }

    .link svg {
      width: 14px; height: 14px;
      fill: currentColor;
      flex-shrink: 0;
    }

    /* footer */
    .footer {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: #2a2a2a;
      letter-spacing: 0.08em;
      z-index: 1;
    }
