> ## Documentation Index
> Fetch the complete documentation index at: https://hyperframes.heygen.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AI Chat Reveal

> A question is typed on a rising keyboard, sent, and answered by an AI that streams its reply word by word on a measured token rhythm - thinking dot, uneven bursts, bulleted list - before the app cuts to a branded closing card

export const VariablesExplorer = ({previewSrc, compositionId, compositionSrc, variables, children}) => {
  const SHIKI = {
    punct: {
      color: "rgb(31, 35, 40)",
      "--shiki-dark": "#808080"
    },
    tag: {
      color: "rgb(17, 99, 41)",
      "--shiki-dark": "#569CD6"
    },
    attr: {
      color: "rgb(5, 80, 174)",
      "--shiki-dark": "#9CDCFE"
    },
    equals: {
      color: "rgb(31, 35, 40)",
      "--shiki-dark": "#D4D4D4"
    },
    value: {
      color: "rgb(10, 48, 105)",
      "--shiki-dark": "#CE9178"
    }
  };
  const CSS = `
.hf-ve {
  --ve-fg: #18181b;
  --ve-muted: #71717a;
  --ve-line: #e4e4e7;
  --ve-surface: #ffffff;
  --ve-sunken: #fafafa;
  --ve-hover: #f4f4f5;
  --ve-on-bg: #18181b;
  --ve-on-fg: #ffffff;
  --ve-ring: rgba(24, 24, 27, 0.14);
  --ve-danger: #b42318;
}
:where(html.dark) .hf-ve {
  --ve-fg: #f4f4f5;
  --ve-muted: #a1a1aa;
  --ve-line: #27272a;
  --ve-surface: #18181b;
  --ve-sunken: #131316;
  --ve-hover: #27272a;
  --ve-on-bg: #f4f4f5;
  --ve-on-fg: #18181b;
  --ve-ring: rgba(244, 244, 245, 0.2);
  --ve-danger: #ff9d95;
}

.hf-ve-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--ve-line);
  border-radius: 9999px;
  background: var(--ve-sunken);
}
.hf-ve-tab {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ve-muted);
  background: transparent;
}
.hf-ve-tab[data-on="true"] {
  color: var(--ve-fg);
  background: var(--ve-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.hf-ve-tab:hover:not([data-on="true"]) { color: var(--ve-fg); }

/* Not a grid. A grid row is as tall as its tallest cell, so a five-line snippet
   sat in the preview's 16:9 box with 300px of dead area under it. The inactive
   pane is taken out of flow instead — and stretches left/right rather than to
   inset 0, so the iframe keeps its own height. An iframe resized on every tab
   switch reflows the composition running inside it. */
.hf-ve-frame { position: relative; }
.hf-ve-cell { min-width: 0; }
.hf-ve-cell[data-on="false"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  pointer-events: none;
}
.hf-ve-preview {
  overflow: hidden;
  border: 1px solid var(--ve-line);
  border-radius: 12px;
}
/* CodeBlock carries the page margins (mt-5 mb-8) that separate it from prose,
   which is dead space inside a tab. Element plus two classes out-specifies a
   Tailwind utility without !important. */
.hf-ve-cell > div.code-block { margin: 0; }
/* The snippet wraps; the source does not.
   A value the reader has to read in full should not hide half of itself off the
   right edge, so the snippet pane wraps — what \`\`\`html wrap does for a fence.
   The width reset is the half that matters: the block's own <code> is sized to
   max-content, and content that never meets an edge never wraps.
   Source is left to scroll sideways like every other code block on the site.
   Wrapping it breaks its indentation, and a comment paragraph re-flowed to a
   narrow column reads worse than one the reader can scroll. */
.hf-ve-snippet .shiki,
.hf-ve-snippet .shiki code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
/* A composition source runs to several hundred lines, and an un-capped tab
   pushes the Customize panel off the screen. The cap goes on the scroll box
   rather than the block, so the filename and its copy button stay put; and it
   is a max-height, so a short source still hugs its own content and the dead
   area under it stays gone. */
.hf-ve-cell .code-block pre {
  max-height: 460px;
  overflow: auto;
}
/* Four classes deep because the rule being answered is three
   (\`html:not(.dark) .codeblock-light pre.shiki code\`), and a shorter selector
   silently loses to it. */
.hf-ve .hf-ve-snippet .code-block pre.shiki code {
  width: auto;
  min-width: 0;
}

.hf-ve-panel {
  margin-top: 12px;
  border: 1px solid var(--ve-line);
  border-radius: 12px;
}
.hf-ve-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid var(--ve-line);
}
.hf-ve-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ve-muted);
}
.hf-ve-grid {
  display: grid;
  gap: 16px 28px;
  padding: 16px;
}
@media (min-width: 640px) {
  .hf-ve-grid { grid-template-columns: 1fr 1fr; }
}
.hf-ve-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.hf-ve-label { font-size: 14px; font-weight: 500; color: var(--ve-fg); }
.hf-ve-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--ve-muted);
}
.hf-ve-desc {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ve-muted);
}

.hf-ve-btn {
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ve-muted);
  background: transparent;
}
.hf-ve-btn:hover:not(:disabled) { color: var(--ve-fg); background: var(--ve-hover); }
.hf-ve-btn:disabled { opacity: 0.4; cursor: default; }

.hf-ve-field {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--ve-line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ve-fg);
  background: var(--ve-surface);
}
.hf-ve-field::placeholder { color: var(--ve-muted); }
.hf-ve-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }

/* Focus, once, for every control here. A ring outside the border rather than a
   border colour alone: the border already carries the resting state, so
   recolouring it is a change a reader can miss. Nothing shifts, because the
   ring is a shadow. :focus-visible, so a pointer click does not light it up. */
.hf-ve-field:focus-visible,
.hf-ve-seg-btn:focus-visible,
.hf-ve-tab:focus-visible,
.hf-ve-btn:focus-visible,
.hf-ve-switch:focus-visible,
.hf-ve-swatch:focus-visible {
  outline: none;
  border-color: var(--ve-on-bg);
  box-shadow: 0 0 0 3px var(--ve-ring);
}
/* A range is a track, and ringing the track rings a pill the width of the
   panel. The thumb is the part that has focus, so the thumb is what says so. */
.hf-ve-range:focus-visible { outline: none; }
.hf-ve-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--ve-ring); }
.hf-ve-range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px var(--ve-ring); }
/* Safari still fires :focus for a click on a button, so the pair is kept. */
.hf-ve-field:focus { outline: none; border-color: var(--ve-on-bg); }

/* The enum branch above sends anything past four options here. No shipped item
   does today (every enum in the registry has two to four), so this is styled to
   the point of not looking foreign and no further — the chevron is one neutral
   grey rather than a per-theme pair, because a data URI cannot read a token. */
.hf-ve-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2389898f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.hf-ve-seg {
  display: flex;
  padding: 2px;
  border: 1px solid var(--ve-line);
  border-radius: 8px;
}
.hf-ve-seg-btn {
  flex: 1;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ve-muted);
  background: transparent;
}
.hf-ve-seg-btn:hover:not([data-on="true"]) { color: var(--ve-fg); background: var(--ve-hover); }
.hf-ve-seg-btn[data-on="true"] { color: var(--ve-on-fg); background: var(--ve-on-bg); }

/* A range, rebuilt. \`accent-color\` alone leaves the platform's hairline track,
   which reads as an unstyled browser part next to everything else here. Each
   engine names its parts differently and shares none of them, so the same
   track and thumb are written twice; a selector either engine cannot parse
   drops the whole rule, which is why they are never grouped. */
.hf-ve-range {
  width: 100%;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
}
/* --ve-fill is set per render: painting progress on a native track means a
   two-stop gradient, and only the component knows where the value sits. */
.hf-ve-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    var(--ve-on-bg) var(--ve-fill, 0%),
    var(--ve-line) var(--ve-fill, 0%)
  );
}
.hf-ve-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 2px solid var(--ve-on-bg);
  border-radius: 9999px;
  background: var(--ve-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}
.hf-ve-range::-moz-range-track { height: 6px; border-radius: 9999px; background: var(--ve-line); }
.hf-ve-range::-moz-range-progress { height: 6px; border-radius: 9999px; background: var(--ve-on-bg); }
.hf-ve-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ve-on-bg);
  border-radius: 9999px;
  background: var(--ve-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}
/* Hover reads on the part being aimed at rather than on the whole strip: a
   track that darkens under the pointer says "click me and the thumb comes
   here", which is what a native range actually does. */
.hf-ve-range:hover::-webkit-slider-thumb { border-color: var(--ve-fg); }
.hf-ve-range:hover::-moz-range-thumb { border-color: var(--ve-fg); }

/* The number control, and the three things it used to leave unsaid.
 *
 * It could not say where the range ends, so a reader dragging \`stroke_width\`
 * had no idea whether 12 was nearly nothing or nearly everything: the ends now
 * carry min and max.
 *
 * It could not say where the author left the knob, which is the one reference
 * point a panel built around deviating from the author's choice needs: a mark
 * on the track is the default, and a double click puts the value back on it.
 *
 * And it printed the value in the label row, a fixed distance from a thumb that
 * moves, so reading a drag meant looking in two places at once. The value rides
 * the thumb instead.
 *
 * Still a real <input type="range">. Every custom slider on the web reimplements
 * keyboard stepping, touch, and the screen-reader contract, and most of them do
 * one of the three badly; none of what is added here needed the element
 * replaced. Nothing moves that a finger is not moving: the value tracks the
 * pointer because it is the pointer's own readout, and the only transition is
 * the colour one every other control here shares. */
.hf-ve-slider {
  display: grid;
  gap: 1px;
}
.hf-ve-ruler {
  position: relative;
  height: 17px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  line-height: 17px;
  color: var(--ve-muted);
}
.hf-ve-bound {
  position: absolute;
  top: 0;
}
.hf-ve-bound[data-end="min"] { left: 0; }
.hf-ve-bound[data-end="max"] { right: 0; }
/* An end steps aside rather than being overprinted by the value arriving on
   top of it. Visibility, not opacity: there is no fade here, the label is
   either the thing being read or it is out of the way. */
.hf-ve-ruler[data-near="min"] .hf-ve-bound[data-end="min"],
.hf-ve-ruler[data-near="max"] .hf-ve-bound[data-end="max"] {
  visibility: hidden;
}
/* translateX is centring, not motion: the readout is as wide as its own digits
   and has to hang half of that either side of the thumb. */
.hf-ve-readout {
  position: absolute;
  top: 0;
  left: calc(var(--ve-fill, 0%) + var(--ve-fill-nudge, 0px));
  transform: translateX(-50%);
  color: var(--ve-fg);
  font-weight: 600;
  white-space: nowrap;
}
.hf-ve-track {
  position: relative;
  display: block;
}
.hf-ve-range { display: block; }
.hf-ve-default {
  position: absolute;
  top: 5px;
  left: calc(var(--ve-default, 50%) + var(--ve-default-nudge, 0px));
  width: 2px;
  height: 10px;
  margin-left: -1px;
  border-radius: 1px;
  background: var(--ve-muted);
  pointer-events: none;
}

/* A switch, for the boolean type. It used to fall through to the text input at
   the end of control(), which asked the reader to type the word "true". */
.hf-ve-switch {
  display: inline-flex;
  align-items: center;
  width: 40px;
  height: 24px;
  padding: 2px;
  border: 1px solid var(--ve-line);
  border-radius: 9999px;
  background: var(--ve-sunken);
  cursor: pointer;
}
.hf-ve-switch[data-on="true"] { border-color: var(--ve-on-bg); background: var(--ve-on-bg); }
.hf-ve-switch-dot {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: var(--ve-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.hf-ve-switch[data-on="true"] .hf-ve-switch-dot {
  background: var(--ve-on-fg);
  transform: translateX(16px);
}

/* The SVG import control: the same text field, with a way to fill it.
 *
 * The whole block is the drop target, not just the field, so a file let go over
 * the button lands too. It says so by taking the same border colour a focused
 * field takes, which is the one feedback channel this panel has left.
 *
 * A bare <input type="file"> is unlabelled, unstyleable and reads as "No file
 * chosen" next to controls that carry their own value, so the real input is
 * taken out of the layout and the tab order and a button in front of it is what
 * a reader sees and what a keyboard reaches. Hidden with size and opacity
 * rather than display:none, because an input that is not rendered at all is one
 * some browsers decline to open a picker for. */
.hf-ve-drop {
  display: grid;
  gap: 8px;
}
.hf-ve-drop[data-over="true"] .hf-ve-dropzone {
  border-color: var(--ve-on-bg);
  border-style: solid;
}

/* The import is the action almost everyone wants: a reader arrives with a
   shape, not with path data. A dashed target reads as "put a file here" on
   sight, where a button beneath a field of coordinates read as an afterthought
   to the coordinates. */
.hf-ve-dropzone {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px 12px;
  border: 1px dashed var(--ve-line);
  border-radius: 10px;
  background: var(--ve-surface);
  text-align: center;
}
.hf-ve-dropzone .hf-ve-btn {
  padding: 7px 16px;
  font-size: 13px;
  color: var(--ve-fg);
  border-color: var(--ve-line);
  background: var(--ve-bg);
}
.hf-ve-dropzone .hf-ve-btn:hover:not(:disabled) { background: var(--ve-hover); }

/* Path data stays reachable, but a reader has to ask for it. A native details
   element rather than our own toggle, so it opens with the keyboard and is
   announced as expandable without any wiring. */
.hf-ve-advanced > summary {
  font-size: 12px;
  color: var(--ve-muted);
  cursor: pointer;
  list-style: none;
  padding: 2px 0;
}
.hf-ve-advanced > summary::-webkit-details-marker { display: none; }
.hf-ve-advanced > summary::before { content: "▸ "; }
.hf-ve-advanced[open] > summary::before { content: "▾ "; }
.hf-ve-advanced > summary:hover { color: var(--ve-fg); }
.hf-ve-advanced .hf-ve-field { margin-top: 6px; }
.hf-ve-file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.hf-ve-note {
  margin: 0;
  min-width: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ve-muted);
}
.hf-ve-note[data-tone="error"] { color: var(--ve-danger); }
.hf-ve-note[data-tone="ok"] { color: var(--ve-fg); }

.hf-ve-swatch {
  width: 40px;
  height: 32px;
  flex-shrink: 0;
  padding: 2px;
  border: 1px solid var(--ve-line);
  border-radius: 8px;
  background: var(--ve-surface);
  cursor: pointer;
}

/* Nothing here moves.
 *
 * A press-down scale on every button and field, a scale-in on the tab panes, a
 * springing switch knob and a growing slider thumb were all flourish: the
 * control had already told you what it did by changing colour, and the motion
 * was a second, slower answer to a question already settled. What is left is
 * one colour transition, short enough to read as immediate and long enough not
 * to flicker. A control here may change colour; it does not move.
 *
 * Which is also why there is no prefers-reduced-motion block any more. There is
 * no motion left to reduce. */
.hf-ve-tint {
  transition:
    background-color 100ms ease,
    border-color 100ms ease,
    color 100ms ease;
}
`;
  const isSvgPathData = value => typeof value === "string" && (/^\s*[Mm]\s*-?[\d.]/).test(value);
  const parsePathData = d => {
    const source = String(d);
    const arity = {
      M: 2,
      L: 2,
      H: 1,
      V: 1,
      C: 6,
      S: 4,
      Q: 4,
      T: 2,
      A: 7,
      Z: 0
    };
    const commands = [];
    let at = 0;
    let code = "";
    const separator = () => {
      while (at < source.length && (/[\s,]/).test(source[at])) at += 1;
    };
    const digits = () => {
      while (at < source.length && source[at] >= "0" && source[at] <= "9") at += 1;
    };
    const number = () => {
      separator();
      const start = at;
      if (source[at] === "+" || source[at] === "-") at += 1;
      digits();
      if (source[at] === ".") {
        at += 1;
        digits();
      }
      if (source[at] === "e" || source[at] === "E") {
        at += 1;
        if (source[at] === "+" || source[at] === "-") at += 1;
        digits();
      }
      const text = source.slice(start, at);
      const value = Number(text);
      if (text === "" || !Number.isFinite(value)) {
        throw new Error(`expected a number at character ${start + 1}`);
      }
      return value;
    };
    const flag = () => {
      separator();
      const character = source[at];
      if (character !== "0" && character !== "1") {
        throw new Error(`expected an arc flag at character ${at + 1}`);
      }
      at += 1;
      return Number(character);
    };
    separator();
    while (at < source.length) {
      const character = source[at];
      if ((/[a-zA-Z]/).test(character)) {
        if (arity[character.toUpperCase()] === undefined) {
          throw new Error(`unknown command "${character}"`);
        }
        code = character;
        at += 1;
      } else if (code === "") {
        throw new Error("path data must open with a command");
      } else if (code === "M" || code === "m") {
        code = code === "M" ? "L" : "l";
      } else if (code === "Z" || code === "z") {
        throw new Error(`expected a command at character ${at + 1}`);
      }
      const letter = code.toUpperCase();
      const args = [];
      if (letter === "A") {
        args.push(number(), number(), number(), flag(), flag(), number(), number());
      } else {
        for (let taken = 0; taken < arity[letter]; taken += 1) args.push(number());
      }
      commands.push({
        code,
        args
      });
      separator();
    }
    if (commands.length === 0) throw new Error("path data is empty");
    return commands;
  };
  const normalisePathData = commands => {
    const out = [];
    let x = 0;
    let y = 0;
    let startX = 0;
    let startY = 0;
    let cubicControl = null;
    let quadraticControl = null;
    for (const {code, args} of commands) {
      const letter = code.toUpperCase();
      const relative = code !== letter;
      const dx = relative ? x : 0;
      const dy = relative ? y : 0;
      const pairs = values => {
        const mapped = [];
        for (let index = 0; index + 1 < values.length; index += 2) {
          mapped.push(values[index] + dx, values[index + 1] + dy);
        }
        return mapped;
      };
      let nextCubic = null;
      let nextQuadratic = null;
      if (letter === "M") {
        const [px, py] = pairs(args);
        out.push({
          code: "M",
          args: [px, py]
        });
        x = px;
        y = py;
        startX = px;
        startY = py;
      } else if (letter === "L") {
        const [px, py] = pairs(args);
        out.push({
          code: "L",
          args: [px, py]
        });
        x = px;
        y = py;
      } else if (letter === "H") {
        x = args[0] + dx;
        out.push({
          code: "L",
          args: [x, y]
        });
      } else if (letter === "V") {
        y = args[0] + dy;
        out.push({
          code: "L",
          args: [x, y]
        });
      } else if (letter === "C") {
        const points = pairs(args);
        out.push({
          code: "C",
          args: points
        });
        nextCubic = [points[2], points[3]];
        x = points[4];
        y = points[5];
      } else if (letter === "S") {
        const points = pairs(args);
        const first = cubicControl ? [2 * x - cubicControl[0], 2 * y - cubicControl[1]] : [x, y];
        out.push({
          code: "C",
          args: [...first, ...points]
        });
        nextCubic = [points[0], points[1]];
        x = points[2];
        y = points[3];
      } else if (letter === "Q") {
        const points = pairs(args);
        out.push({
          code: "Q",
          args: points
        });
        nextQuadratic = [points[0], points[1]];
        x = points[2];
        y = points[3];
      } else if (letter === "T") {
        const points = pairs(args);
        const control = quadraticControl ? [2 * x - quadraticControl[0], 2 * y - quadraticControl[1]] : [x, y];
        out.push({
          code: "Q",
          args: [...control, ...points]
        });
        nextQuadratic = control;
        x = points[0];
        y = points[1];
      } else if (letter === "A") {
        const endX = args[5] + dx;
        const endY = args[6] + dy;
        out.push(...arcToCubics(x, y, args[0], args[1], args[2], args[3], args[4], endX, endY));
        x = endX;
        y = endY;
      } else if (letter === "Z") {
        out.push({
          code: "Z",
          args: []
        });
        x = startX;
        y = startY;
      }
      cubicControl = nextCubic;
      quadraticControl = nextQuadratic;
    }
    return out;
  };
  const arcToCubics = (x1, y1, rx, ry, rotation, largeArc, sweep, x2, y2) => {
    if (x1 === x2 && y1 === y2) return [];
    let radiusX = Math.abs(rx);
    let radiusY = Math.abs(ry);
    if (radiusX === 0 || radiusY === 0) return [{
      code: "L",
      args: [x2, y2]
    }];
    const phi = rotation * Math.PI / 180;
    const cosPhi = Math.cos(phi);
    const sinPhi = Math.sin(phi);
    const midX = (x1 - x2) / 2;
    const midY = (y1 - y2) / 2;
    const primeX = cosPhi * midX + sinPhi * midY;
    const primeY = -sinPhi * midX + cosPhi * midY;
    const oversize = primeX * primeX / (radiusX * radiusX) + primeY * primeY / (radiusY * radiusY);
    if (oversize > 1) {
      const grow = Math.sqrt(oversize);
      radiusX *= grow;
      radiusY *= grow;
    }
    const denominator = radiusX * radiusX * primeY * primeY + radiusY * radiusY * primeX * primeX;
    const numerator = radiusX * radiusX * radiusY * radiusY - radiusX * radiusX * primeY * primeY - radiusY * radiusY * primeX * primeX;
    const factor = (largeArc === sweep ? -1 : 1) * Math.sqrt(Math.max(0, numerator) / denominator);
    const centrePrimeX = factor * radiusX * primeY / radiusY;
    const centrePrimeY = -factor * radiusY * primeX / radiusX;
    const centreX = cosPhi * centrePrimeX - sinPhi * centrePrimeY + (x1 + x2) / 2;
    const centreY = sinPhi * centrePrimeX + cosPhi * centrePrimeY + (y1 + y2) / 2;
    const angle = (ux, uy, vx, vy) => {
      const length = Math.hypot(ux, uy) * Math.hypot(vx, vy);
      const cosine = length === 0 ? 1 : Math.min(1, Math.max(-1, (ux * vx + uy * vy) / length));
      return (ux * vy - uy * vx < 0 ? -1 : 1) * Math.acos(cosine);
    };
    const fromX = (primeX - centrePrimeX) / radiusX;
    const fromY = (primeY - centrePrimeY) / radiusY;
    const toX = (-primeX - centrePrimeX) / radiusX;
    const toY = (-primeY - centrePrimeY) / radiusY;
    const start = angle(1, 0, fromX, fromY);
    let sweptAngle = angle(fromX, fromY, toX, toY);
    if (!sweep && sweptAngle > 0) sweptAngle -= 2 * Math.PI;
    if (sweep && sweptAngle < 0) sweptAngle += 2 * Math.PI;
    const steps = Math.max(1, Math.ceil(Math.abs(sweptAngle) / (Math.PI / 2)));
    const step = sweptAngle / steps;
    const handle = 4 / 3 * Math.tan(step / 4);
    const at = t => [centreX + radiusX * Math.cos(t) * cosPhi - radiusY * Math.sin(t) * sinPhi, centreY + radiusX * Math.cos(t) * sinPhi + radiusY * Math.sin(t) * cosPhi];
    const slope = t => [-radiusX * Math.sin(t) * cosPhi - radiusY * Math.cos(t) * sinPhi, -radiusX * Math.sin(t) * sinPhi + radiusY * Math.cos(t) * cosPhi];
    const out = [];
    for (let index = 0; index < steps; index += 1) {
      const from = start + index * step;
      const to = from + step;
      const [ax, ay] = at(from);
      const [bx, by] = at(to);
      const [aSlopeX, aSlopeY] = slope(from);
      const [bSlopeX, bSlopeY] = slope(to);
      out.push({
        code: "C",
        args: [ax + handle * aSlopeX, ay + handle * aSlopeY, bx - handle * bSlopeX, by - handle * bSlopeY, bx, by]
      });
    }
    const last = out[out.length - 1];
    last.args[4] = x2;
    last.args[5] = y2;
    return out;
  };
  const transformPathData = (segments, matrix) => segments.map(({code, args}) => {
    const moved = [];
    for (let index = 0; index + 1 < args.length; index += 2) {
      const x = args[index];
      const y = args[index + 1];
      moved.push(matrix.a * x + matrix.c * y + matrix.e, matrix.b * x + matrix.d * y + matrix.f);
    }
    return {
      code,
      args: moved
    };
  });
  const fitMatrix = (source, target) => {
    const chosen = Math.min(target.width / source.width, target.height / source.height);
    const scale = Number.isFinite(chosen) && chosen > 0 ? chosen : 1;
    return {
      a: scale,
      b: 0,
      c: 0,
      d: scale,
      e: target.x + target.width / 2 - (source.x + source.width / 2) * scale,
      f: target.y + target.height / 2 - (source.y + source.height / 2) * scale
    };
  };
  const printPathData = segments => segments.map(({code, args}) => {
    if (args.length === 0) return code;
    const numbers = args.map(value => {
      const rounded = Math.round(value * 100) / 100;
      return String(Object.is(rounded, -0) ? 0 : rounded);
    });
    return `${code} ${numbers.join(" ")}`;
  }).join(" ");
  const shapePathData = (tag, attrs) => {
    const number = (name, fallback = 0) => {
      const value = parseFloat(attrs[name]);
      return Number.isFinite(value) ? value : fallback;
    };
    if (tag === "path") {
      const d = typeof attrs.d === "string" ? attrs.d.trim() : "";
      return d === "" ? null : d;
    }
    if (tag === "rect") {
      const width = number("width");
      const height = number("height");
      if (!(width > 0) || !(height > 0)) return null;
      const x = number("x");
      const y = number("y");
      const declaredX = parseFloat(attrs.rx);
      const declaredY = parseFloat(attrs.ry);
      const rawX = Number.isFinite(declaredX) ? declaredX : declaredY;
      const rawY = Number.isFinite(declaredY) ? declaredY : declaredX;
      const rx = Math.min(Math.max(Number.isFinite(rawX) ? rawX : 0, 0), width / 2);
      const ry = Math.min(Math.max(Number.isFinite(rawY) ? rawY : 0, 0), height / 2);
      if (rx === 0 || ry === 0) {
        return `M ${x} ${y} H ${x + width} V ${y + height} H ${x} Z`;
      }
      return [`M ${x + rx} ${y}`, `H ${x + width - rx}`, `A ${rx} ${ry} 0 0 1 ${x + width} ${y + ry}`, `V ${y + height - ry}`, `A ${rx} ${ry} 0 0 1 ${x + width - rx} ${y + height}`, `H ${x + rx}`, `A ${rx} ${ry} 0 0 1 ${x} ${y + height - ry}`, `V ${y + ry}`, `A ${rx} ${ry} 0 0 1 ${x + rx} ${y}`, "Z"].join(" ");
    }
    if (tag === "circle" || tag === "ellipse") {
      const rx = tag === "circle" ? number("r") : number("rx");
      const ry = tag === "circle" ? number("r") : number("ry");
      if (!(rx > 0) || !(ry > 0)) return null;
      const cx = number("cx");
      const cy = number("cy");
      return [`M ${cx - rx} ${cy}`, `A ${rx} ${ry} 0 1 0 ${cx + rx} ${cy}`, `A ${rx} ${ry} 0 1 0 ${cx - rx} ${cy}`, "Z"].join(" ");
    }
    if (tag === "line") {
      const x1 = number("x1");
      const y1 = number("y1");
      const x2 = number("x2");
      const y2 = number("y2");
      if (x1 === x2 && y1 === y2) return null;
      return `M ${x1} ${y1} L ${x2} ${y2}`;
    }
    if (tag === "polyline" || tag === "polygon") {
      const values = String(attrs.points ?? "").trim().split(/[\s,]+/).map(Number).filter(value => Number.isFinite(value));
      if (values.length < 4) return null;
      const steps = [`M ${values[0]} ${values[1]}`];
      for (let index = 2; index + 1 < values.length; index += 2) {
        steps.push(`L ${values[index]} ${values[index + 1]}`);
      }
      if (tag === "polygon") steps.push("Z");
      return steps.join(" ");
    }
    return null;
  };
  const svgToPathData = (svgText, targetPathData, doc = document) => {
    const NS = "http://www.w3.org/2000/svg";
    const parsed = new DOMParser().parseFromString(String(svgText), "image/svg+xml");
    if (parsed.getElementsByTagName("parsererror").length > 0 || !parsed.documentElement || parsed.documentElement.localName !== "svg") {
      throw new Error("That file is not an SVG, or its markup is malformed.");
    }
    const host = doc.createElement("div");
    host.setAttribute("aria-hidden", "true");
    host.style.cssText = "position:fixed;left:-99999px;top:0;width:600px;height:600px;overflow:hidden;";
    const svg = doc.importNode(parsed.documentElement, true);
    host.appendChild(svg);
    doc.body.appendChild(host);
    try {
      const reference = doc.createElementNS(NS, "g");
      svg.appendChild(reference);
      const rootMatrix = reference.getScreenCTM();
      const defining = ["defs", "clipPath", "mask", "symbol", "marker", "pattern"];
      const isDefinition = element => {
        for (let node = element.parentNode; node && node !== svg; node = node.parentNode) {
          if (defining.includes(node.localName)) return true;
        }
        return false;
      };
      const shapes = [...svg.querySelectorAll("path,rect,circle,ellipse,line,polyline,polygon")];
      const segments = [];
      let shapesUsed = 0;
      let firstProblem = null;
      for (const element of shapes) {
        if (isDefinition(element)) continue;
        if (doc.defaultView.getComputedStyle(element).display === "none") continue;
        const attrs = {};
        for (const attribute of element.attributes) attrs[attribute.localName] = attribute.value;
        const d = shapePathData(element.localName, attrs);
        if (d === null) continue;
        let own;
        try {
          own = normalisePathData(parsePathData(d));
        } catch (error) {
          firstProblem = firstProblem ?? error.message;
          continue;
        }
        const matrix = element.getScreenCTM();
        segments.push(...rootMatrix && matrix ? transformPathData(own, rootMatrix.inverse().multiply(matrix)) : own);
        shapesUsed += 1;
      }
      if (segments.length === 0) {
        if (firstProblem) throw new Error(`This SVG has unreadable path data: ${firstProblem}.`);
        const untraceable = ["text", "image", "use"].find(tag => svg.getElementsByTagName(tag).length > 0);
        throw new Error(untraceable ? `This SVG draws with <${untraceable}>, which has no outline to trace. Convert it to paths and try again.` : "This SVG has no shapes to import.");
      }
      const probe = doc.createElementNS(NS, "path");
      svg.appendChild(probe);
      probe.setAttribute("d", printPathData(segments));
      const source = probe.getBBox();
      if (!(source.width > 0) || !(source.height > 0)) {
        if (!(source.width > 0) && !(source.height > 0)) {
          throw new Error("This SVG's shapes have no size.");
        }
      }
      probe.setAttribute("d", String(targetPathData));
      const target = probe.getBBox();
      return {
        d: printPathData(transformPathData(segments, fitMatrix(source, target))),
        shapes: shapesUsed
      };
    } finally {
      host.remove();
    }
  };
  const granularity = value => {
    const decimals = String(value).split(".")[1];
    return decimals ? Number(`1e-${decimals.length}`) : 1;
  };
  const readout = (variable, value) => {
    if (variable.type === "number") return "";
    if (variable.type === "color") return String(value);
    if (variable.type === "enum") {
      const hit = (variable.options ?? []).find(o => o.value === value);
      return hit ? hit.label ?? hit.value : String(value);
    }
    return "";
  };
  const control = (variable, value, onChange, note, onNote, onTyping) => {
    const options = variable.options ?? [];
    if (variable.type === "enum" && options.length > 0 && options.length <= 4) {
      return <div className="hf-ve-seg">
          {options.map(o => <button key={o.value} type="button" data-on={value === o.value} aria-pressed={value === o.value} onClick={() => onChange(o.value)} className="hf-ve-seg-btn hf-ve-tint">
              {o.label ?? o.value}
            </button>)}
        </div>;
    }
    if (variable.type === "enum") {
      return <select className="hf-ve-field hf-ve-select hf-ve-tint" value={value} aria-label={variable.label ?? variable.id} onChange={e => onChange(e.target.value)}>
          {options.map(o => <option key={o.value} value={o.value}>
              {o.label ?? o.value}
            </option>)}
        </select>;
    }
    if (variable.type === "number") {
      const min = Number(variable.min);
      const max = Number(variable.max);
      const unit = variable.unit ?? "";
      const declaredStep = Number(variable.step);
      const step = declaredStep > 0 ? declaredStep : 1;
      const label = variable.label ?? variable.id;
      if (!(Number.isFinite(min) && Number.isFinite(max) && max > min)) {
        return <input type="number" className="hf-ve-field hf-ve-mono hf-ve-tint" value={value} min={Number.isFinite(min) ? min : undefined} max={Number.isFinite(max) ? max : undefined} step={declaredStep > 0 ? declaredStep : granularity(variable.default)} aria-label={label} onChange={e => {
          const next = Number(e.target.value);
          if (e.target.value !== "" && Number.isFinite(next)) onChange(next);
        }} />;
      }
      const at = n => Math.min(1, Math.max(0, (Number(n) - min) / (max - min)));
      const now = at(value);
      const authored = at(variable.default);
      const place = fraction => ({
        offset: `${fraction * 100}%`,
        nudge: `${(0.5 - fraction) * 16}px`
      });
      const value_ = place(now);
      const default_ = place(authored);
      const grain = event => {
        event.currentTarget.step = event.shiftKey ? step / 10 : step;
      };
      return <div className="hf-ve-slider" style={{
        "--ve-fill": value_.offset,
        "--ve-fill-nudge": value_.nudge,
        "--ve-default": default_.offset,
        "--ve-default-nudge": default_.nudge
      }}>
          {}
          <div className="hf-ve-ruler" data-near={now < 0.14 ? "min" : now > 0.86 ? "max" : ""} aria-hidden="true">
            <span className="hf-ve-bound" data-end="min">
              {min}
            </span>
            <span className="hf-ve-bound" data-end="max">
              {max}
            </span>
            <span className="hf-ve-readout">
              {value}
              {unit}
            </span>
          </div>
          <span className="hf-ve-track">
            <input type="range" className="hf-ve-range" min={min} max={max} step={step} value={value} aria-label={label} aria-valuetext={`${value}${unit}`} onChange={e => onChange(Number(e.target.value))} onPointerDown={grain} onKeyDown={grain} onDoubleClick={() => onChange(variable.default)} />
            {}
            {Math.abs(now - authored) > 0.04 && <span className="hf-ve-default" aria-hidden="true" />}
          </span>
        </div>;
    }
    if (variable.type === "boolean") {
      const on = value === true || value === "true";
      return <button type="button" role="switch" aria-checked={on} aria-label={variable.label ?? variable.id} data-on={on} onClick={() => onChange(!on)} className="hf-ve-switch">
          <span className="hf-ve-switch-dot" />
        </button>;
    }
    if (variable.type === "color") {
      return <div className="flex items-center gap-2">
          <input type="color" className="hf-ve-swatch hf-ve-tint" value={value} aria-label={variable.label ?? variable.id} onChange={e => onChange(e.target.value)} />
          <input type="text" className="hf-ve-field hf-ve-mono hf-ve-tint" value={value} onChange={e => onChange(e.target.value)} onFocus={() => onTyping(variable.id)} onBlur={() => onTyping(null)} onKeyDown={e => {
        if (e.key === "Enter") e.currentTarget.blur();
      }} />
        </div>;
    }
    if (isSvgPathData(variable.default)) {
      const fileId = `hf-ve-file-${variable.id}`;
      const noteId = `hf-ve-note-${variable.id}`;
      const receive = file => {
        if (!file) return;
        file.text().then(text => {
          const {d, shapes} = svgToPathData(text, variable.default);
          onChange(d);
          onNote({
            tone: "ok",
            message: `${file.name}: ${shapes} shape${shapes === 1 ? "" : "s"} scaled to fit.`
          });
        }).catch(error => onNote({
          tone: "error",
          message: error.message
        }));
      };
      return <div className="hf-ve-drop" onDragOver={event => {
        event.preventDefault();
        event.currentTarget.dataset.over = "true";
      }} onDragLeave={event => {
        event.currentTarget.dataset.over = "false";
      }} onDrop={event => {
        event.preventDefault();
        event.currentTarget.dataset.over = "false";
        receive(event.dataTransfer.files[0]);
      }}>
          {}
          <div className="hf-ve-dropzone">
            <button type="button" className="hf-ve-btn hf-ve-tint" onClick={() => document.getElementById(fileId).click()}>
              Import SVG
            </button>
            <input id={fileId} type="file" accept=".svg,image/svg+xml" className="hf-ve-file" tabIndex={-1} aria-hidden="true" onChange={event => {
        receive(event.target.files[0]);
        event.target.value = "";
      }} />
            {}
            <p id={noteId} role="status" className="hf-ve-note" data-tone={note ? note.tone : ""}>
              {note ? note.message : "Or drop one here. Scaled to fit and centred."}
            </p>
          </div>
          <details className="hf-ve-advanced">
            <summary>Path data</summary>
            <input type="text" className="hf-ve-field hf-ve-mono hf-ve-tint" value={value} aria-label={variable.label ?? variable.id} onChange={e => onChange(e.target.value)} onFocus={() => onTyping(variable.id)} onBlur={() => onTyping(null)} onKeyDown={e => {
        if (e.key === "Enter") e.currentTarget.blur();
      }} />
          </details>
        </div>;
    }
    return <input type="text" className="hf-ve-field hf-ve-tint" value={value} aria-label={variable.label ?? variable.id} onChange={e => onChange(e.target.value)} onFocus={() => onTyping(variable.id)} onBlur={() => onTyping(null)} onKeyDown={e => {
      if (e.key === "Enter") e.currentTarget.blur();
    }} />;
  };
  const variablesKey = JSON.stringify(variables);
  const defaults = useMemo(() => {
    const built = {};
    for (const v of variables) if (v.default !== undefined) built[v.id] = v.default;
    return built;
  }, [variablesKey]);
  const urlKey = `vars-${compositionId}`;
  const readFromUrl = () => {
    if (typeof window === "undefined") return {};
    try {
      const raw = new URLSearchParams(window.location.search).get(urlKey);
      if (!raw) return {};
      const parsed = JSON.parse(raw);
      if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) return {};
      const declared = new Set(variables.map(v => v.id));
      return Object.fromEntries(Object.entries(parsed).filter(([id]) => declared.has(id)));
    } catch {
      return {};
    }
  };
  const [values, setValues] = useState(() => ({
    ...defaults,
    ...readFromUrl()
  }));
  useEffect(() => {
    const fromUrl = readFromUrl();
    if (Object.keys(fromUrl).length > 0) setValues(current => ({
      ...current,
      ...fromUrl
    }));
  }, []);
  useEffect(() => {
    if (typeof window === "undefined") return;
    const changed = Object.fromEntries(Object.entries(values).filter(([id, value]) => JSON.stringify(value) !== JSON.stringify(defaults[id])));
    const url = new URL(window.location.href);
    if (Object.keys(changed).length === 0) url.searchParams.delete(urlKey); else url.searchParams.set(urlKey, JSON.stringify(changed));
    const next = url.toString();
    if (next !== window.location.href) {
      window.history.replaceState(null, "", next);
      window.dispatchEvent(new CustomEvent("hf-vars-changed"));
    }
  }, [values, defaults, urlKey]);
  const [notes, setNotes] = useState({});
  const [typing, setTyping] = useState(null);
  const posted = useRef(null);
  const [tab, setTab] = useState("preview");
  const frame = useRef(null);
  const bootstrap = ["<!doctype html><html><head><meta charset='utf-8'>", "<style>html,body{margin:0;height:100%;overflow:hidden;background:transparent}", "hyperframes-player{display:block;width:100%;height:100%}</style>", '<script src="https://cdn.jsdelivr.net/npm/@hyperframes/player@0.7/dist/hyperframes-player.global.js"></' + "script>", "</head><body><script>", "(function(){", `  var PAYLOAD = ${JSON.stringify(previewSrc)};`, `  var INITIAL = ${JSON.stringify({
    ...defaults,
    ...readFromUrl()
  })};`, "  var html = null, player = null, poll = null;", "  function withValues(source, values) {", "    var json = JSON.stringify(values);", "    var attr = json.replace(/'/g, '&#39;');", "    var out = source.replace(/\\sdata-variable-values=(?:\"[^\"]*\"|'[^']*')/gi, '');", "    out = out.replace(/(data-composition-src=)/gi, \"data-variable-values='\" + attr + \"' $1\");", "    var tag = '<' + 'script>window.__hfVariables=' + json + ';<' + '/script>';", "    return /<head[^>]*>/i.test(out)", "      ? out.replace(/<head([^>]*)>/i, '<head$1>' + tag)", "      : tag + out;", "  }", "  function arm(resumeAt) {", "    clearInterval(poll);", "    var last = -1, tries = 0, seeked = false;", "    poll = setInterval(function () {", "      if (player.ready) {", "        if (!seeked) { seeked = true; if (resumeAt > 0) player.seek(resumeAt); }", "        player.play();", "      }", "      if (seeked && player.currentTime > 0 && player.currentTime !== last) {", "        clearInterval(poll); return;", "      }", "      last = player.currentTime;", "      if (++tries > 150) clearInterval(poll);", "    }, 100);", "  }", "  function mount(values, resumeAt) {", "    if (html === null) return;", "    player.setAttribute('srcdoc', withValues(html, values));", "    arm(resumeAt || 0);", "  }", "  player = document.createElement('hyperframes-player');", "  player.setAttribute('controls', ''); player.setAttribute('muted', '');", "  document.body.appendChild(player);", "  player.addEventListener('ended', function () { player.seek(0); player.play(); });", "  fetch(PAYLOAD).then(function (r) { return r.json(); }).then(function (d) {", "    html = d.html; mount(INITIAL, 0);", "  }).catch(function (e) {", "    document.body.innerHTML = '<pre style=\"color:#f66;font:12px monospace;padding:12px\">preview unavailable: ' + e + '</pre>';", "  });", "  addEventListener('message', function (event) {", "    var values = event.data && event.data.hfVariables;", "    if (!values) return;", "    mount(values, player.currentTime || 0);", "  });", "})();", "</" + "script></body></html>"].join("");
  useEffect(() => {
    if (typing !== null) return;
    const payload = JSON.stringify(values);
    if (payload === posted.current) return;
    const timer = setTimeout(() => {
      const target = frame.current && frame.current.contentWindow;
      if (!target) return;
      posted.current = payload;
      target.postMessage({
        hfVariables: values
      }, window.location.origin);
    }, 150);
    return () => clearTimeout(timer);
  }, [values, typing]);
  const printed = JSON.stringify(values, null, 2).split("\n").join("\n  ");
  const attributes = [["data-composition-id", `"${compositionId}"`], ["data-composition-src", `"${compositionSrc}"`], ["data-variable-values", `'${printed}'`]];
  const snippetLines = [[[SHIKI.punct, "<"], [SHIKI.tag, "div"]]];
  for (const [name, literal] of attributes) {
    const [head, ...rest] = literal.split("\n");
    snippetLines.push([[SHIKI.attr, `  ${name}`], [SHIKI.equals, "="], [SHIKI.value, head]]);
    for (const line of rest) snippetLines.push([[SHIKI.value, line]]);
  }
  snippetLines.push([[SHIKI.punct, "></"], [SHIKI.tag, "div"], [SHIKI.punct, ">"]]);
  const dirty = variables.some(v => values[v.id] !== defaults[v.id]);
  const installCommand = (() => {
    const base = `npx hyperframes add ${compositionId}`;
    if (!dirty) return base;
    const changed = {};
    for (const v of variables) {
      if (JSON.stringify(values[v.id]) !== JSON.stringify(defaults[v.id])) changed[v.id] = values[v.id];
    }
    return `${base} --vars '${JSON.stringify(changed)}'`;
  })();
  const TABS = [["preview", "Preview"], ...children ? [["code", "Code"]] : [], ["snippet", "Snippet"]];
  return <div className="hf-ve not-prose my-4">
      <style dangerouslySetInnerHTML={{
    __html: CSS
  }} />

      <div className="mb-3 flex items-center gap-3">
        <div className="hf-ve-tabs">
          {TABS.map(([id, label]) => <button key={id} type="button" data-on={tab === id} aria-pressed={tab === id} onClick={() => setTab(id)} className="hf-ve-tab hf-ve-tint">
              {label}
            </button>)}
        </div>
      </div>

      {}
      <div className="hf-ve-frame">
        <div className="hf-ve-cell" data-on={tab === "preview"}>
          <iframe ref={frame} srcDoc={bootstrap} className="hf-ve-preview block aspect-video w-full" title={`${compositionId} preview`} />
        </div>
        {children && <div className="hf-ve-cell" data-on={tab === "code"}>
            {children}
          </div>}
        <div className="hf-ve-cell hf-ve-snippet" data-on={tab === "snippet"}>
          {}
          <CodeBlock filename="Terminal">
            <pre className="shiki shiki-themes github-light-default dark-plus" style={{
    backgroundColor: "rgb(255, 255, 255)",
    "--shiki-dark-bg": "#0B0C0E",
    color: "rgb(31, 35, 40)",
    "--shiki-dark": "#D4D4D4"
  }}>
              <code>
                <span className="line">
                  <span style={SHIKI.value}>{installCommand}</span>
                  {"\n"}
                </span>
              </code>
            </pre>
          </CodeBlock>
          {}
          <CodeBlock filename="index.html">
            <pre className="shiki shiki-themes github-light-default dark-plus" style={{
    backgroundColor: "rgb(255, 255, 255)",
    "--shiki-dark-bg": "#0B0C0E",
    color: "rgb(31, 35, 40)",
    "--shiki-dark": "#D4D4D4"
  }}>
              <code>
                {snippetLines.map((tokens, line) => <span key={line} className="line">
                    {tokens.map(([style, text], token) => <span key={token} style={style}>
                        {text}
                      </span>)}
                    {"\n"}
                  </span>)}
              </code>
            </pre>
          </CodeBlock>
        </div>
      </div>

      <div className="hf-ve-panel">
        <div className="hf-ve-head">
          <span className="hf-ve-title">Customize</span>
          <button type="button" onClick={() => {
    setValues(defaults);
    setNotes({});
  }} disabled={!dirty} className="hf-ve-btn hf-ve-tint">
            Reset
          </button>
        </div>
        <div className="hf-ve-grid">
          {variables.map(v => <div key={v.id}>
              <div className="hf-ve-row">
                <label className="hf-ve-label">{v.label ?? v.id}</label>
                <span className="hf-ve-value">{readout(v, values[v.id])}</span>
              </div>
              {control(v, values[v.id], next => setValues(prev => ({
    ...prev,
    [v.id]: next
  })), notes[v.id], note => setNotes(prev => ({
    ...prev,
    [v.id]: note
  })), setTyping)}
              {v.description && <p className="hf-ve-desc">{v.description}</p>}
            </div>)}
        </div>
      </div>
    </div>;
};

export const InstallCommand = ({command, item}) => {
  const [copied, setCopied] = React.useState(false);
  const [tuned, setTuned] = React.useState("");
  React.useEffect(() => {
    if (!item) return;
    const read = () => {
      try {
        const raw = new URLSearchParams(window.location.search).get(`vars-${item}`);
        if (!raw) return setTuned("");
        const parsed = JSON.parse(raw);
        if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) return setTuned("");
        if (Object.keys(parsed).length === 0) return setTuned("");
        setTuned(` --vars '${JSON.stringify(parsed)}'`);
      } catch {
        setTuned("");
      }
    };
    read();
    window.addEventListener("hf-vars-changed", read);
    window.addEventListener("popstate", read);
    return () => {
      window.removeEventListener("hf-vars-changed", read);
      window.removeEventListener("popstate", read);
    };
  }, [item]);
  const fullCommand = `${command}${tuned}`;
  const copy = async () => {
    try {
      if (navigator.clipboard && window.isSecureContext) {
        await navigator.clipboard.writeText(fullCommand);
      } else {
        const previous = document.activeElement;
        const scratch = document.createElement("textarea");
        scratch.value = fullCommand;
        scratch.setAttribute("readonly", "");
        scratch.style.position = "fixed";
        scratch.style.opacity = "0";
        document.body.appendChild(scratch);
        scratch.select();
        document.execCommand("copy");
        document.body.removeChild(scratch);
        previous?.focus?.();
      }
      setCopied(true);
      setTimeout(() => setCopied(false), 2000);
    } catch {}
  };
  return <div className="hf-install-command not-prose my-4 flex items-stretch overflow-hidden rounded-xl border border-zinc-200 bg-zinc-50 dark:border-zinc-800 dark:bg-zinc-900">
      <code className="flex-1 overflow-x-auto whitespace-nowrap border-r border-zinc-200 px-4 py-3 font-mono text-sm text-zinc-800 dark:border-zinc-800 dark:text-zinc-100">
        {fullCommand}
      </code>
      <button type="button" onClick={copy} data-copied={copied ? "true" : "false"} aria-label={`Copy ${command} to the clipboard`} className="hf-install-copy">
        <svg className="hf-install-copy-clipboard" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 18 18" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
          <path d="M14.25 5.25H7.25C6.14543 5.25 5.25 6.14543 5.25 7.25V14.25C5.25 15.3546 6.14543 16.25 7.25 16.25H14.25C15.3546 16.25 16.25 15.3546 16.25 14.25V7.25C16.25 6.14543 15.3546 5.25 14.25 5.25Z" />
          <path d="M2.80103 11.998L1.77203 5.07397C1.61003 3.98097 2.36403 2.96397 3.45603 2.80197L10.38 1.77297C11.313 1.63397 12.19 2.16297 12.528 3.00097" />
        </svg>
        <svg className="hf-install-copy-check" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 18 18" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
          <path d="M2.75 9.5L6.5 13.25L15.25 4.5" />
        </svg>
      </button>
      <span className="hf-install-copy-status" role="status" aria-live="polite">
        {copied ? "Copied" : ""}
      </span>
    </div>;
};

<VariablesExplorer previewSrc="/public/catalog/blocks/ai-chat-reveal.json" compositionId="ai-chat-reveal" compositionSrc="compositions/ai-chat-reveal.html" variables={[{"id":"botName","type":"string","role":"content","label":"Assistant name","description":"Title in the chat header.","default":"Assistant"},{"id":"userMessage","type":"string","role":"content","label":"User message","description":"The question typed on the keyboard and sent. Around 40 characters keeps the measured pacing.","default":"How do I turn my HTML into real video?"},{"id":"answer1","type":"string","role":"content","label":"Answer paragraph 1","description":"First streamed paragraph.","default":"You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video."},{"id":"answer2","type":"string","role":"content","label":"Answer paragraph 2","description":"Short second beat.","default":"It is markup, not magic."},{"id":"answer3","type":"string","role":"content","label":"Answer paragraph 3","description":"Lead-in to the list.","default":"What you get out of the box:"},{"id":"bullet1","type":"string","role":"content","label":"Bullet 1","description":"First list item.","default":"A catalog of motion primitives you install and own"},{"id":"bullet2","type":"string","role":"content","label":"Bullet 2","description":"Second list item.","default":"GSAP timelines that seek to any frame"},{"id":"bullet3","type":"string","role":"content","label":"Bullet 3","description":"Third list item.","default":"4K renders from a single CLI command"},{"id":"ecHeadline","type":"string","role":"content","label":"End-card headline","description":"Closing card headline. A | breaks the line.","default":"It's not magic.|It's HTML."},{"id":"ecSub","type":"string","role":"content","label":"End-card subline","description":"Supporting sentence on the closing card.","default":"Open-source video rendering — write HTML, ship pixel-perfect video."},{"id":"ecCta","type":"string","role":"content","label":"End-card CTA","description":"Label on the closing card button.","default":"Try HyperFrames"},{"id":"ecFooter","type":"string","role":"content","label":"End-card footer","description":"Letter-spaced line at the very bottom.","default":"HYPERFRAMES.HEYGEN.COM"}]}>
  ```html ai-chat-reveal.html theme={null}
  <!doctype html>
  <html
    lang="en"
    data-composition-variables='[
      { "id": "botName", "type": "string", "role": "content", "label": "Assistant name", "description": "Title in the chat header.", "default": "Assistant" },
      { "id": "userMessage", "type": "string", "role": "content", "label": "User message", "description": "The question typed on the keyboard and sent. Around 40 characters keeps the measured pacing.", "default": "How do I turn my HTML into real video?" },
      { "id": "answer1", "type": "string", "role": "content", "label": "Answer paragraph 1", "description": "First streamed paragraph.", "default": "You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video." },
      { "id": "answer2", "type": "string", "role": "content", "label": "Answer paragraph 2", "description": "Short second beat.", "default": "It is markup, not magic." },
      { "id": "answer3", "type": "string", "role": "content", "label": "Answer paragraph 3", "description": "Lead-in to the list.", "default": "What you get out of the box:" },
      { "id": "bullet1", "type": "string", "role": "content", "label": "Bullet 1", "description": "First list item.", "default": "A catalog of motion primitives you install and own" },
      { "id": "bullet2", "type": "string", "role": "content", "label": "Bullet 2", "description": "Second list item.", "default": "GSAP timelines that seek to any frame" },
      { "id": "bullet3", "type": "string", "role": "content", "label": "Bullet 3", "description": "Third list item.", "default": "4K renders from a single CLI command" },
      { "id": "ecHeadline", "type": "string", "role": "content", "label": "End-card headline", "description": "Closing card headline. A | breaks the line.", "default": "It&#39;s not magic.|It&#39;s HTML." },
      { "id": "ecSub", "type": "string", "role": "content", "label": "End-card subline", "description": "Supporting sentence on the closing card.", "default": "Open-source video rendering — write HTML, ship pixel-perfect video." },
      { "id": "ecCta", "type": "string", "role": "content", "label": "End-card CTA", "description": "Label on the closing card button.", "default": "Try HyperFrames" },
      { "id": "ecFooter", "type": "string", "role": "content", "label": "End-card footer", "description": "Letter-spaced line at the very bottom.", "default": "HYPERFRAMES.HEYGEN.COM" }
    ]'
  >
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=750, height=1624" />
      <title>AI Chat Reveal</title>
      <script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
      <style>
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        html,
        body {
          width: 750px;
          height: 1624px;
          overflow: hidden;
          background: #000;
        }
        body {
          font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
        }
        /* 750x1624 is the reference device capture, kept native so the measured
           keyboard geometry stays pixel-true; scale the block when embedding */
        #acr-root {
          position: relative;
          width: 750px;
          height: 1624px;
          overflow: hidden;
        }
        .clip {
          position: absolute;
          inset: 0;
        }
        #acr-chat-bg {
          position: absolute;
          inset: 0;
          background: #fdfdfd;
        }

        /* status bar */
        #acr-statusbar {
          position: absolute;
          top: 14px;
          left: 0;
          right: 0;
          height: 44px;
        }
        #acr-clock {
          position: absolute;
          left: 39px;
          top: 9px;
          font-size: 22px;
          font-weight: 600;
          letter-spacing: 2.4px;
          font-variant-numeric: tabular-nums;
          color: #0d0d0d;
        }
        #acr-sicons {
          position: absolute;
          right: 26px;
          top: 8px;
          display: flex;
          gap: 9px;
          align-items: center;
        }

        /* header */
        #acr-header {
          position: absolute;
          top: 64px;
          left: 0;
          right: 0;
          height: 52px;
        }
        #acr-hleft {
          position: absolute;
          left: 28px;
          top: 12px;
        }
        #acr-htitle {
          position: absolute;
          left: 0;
          right: 48px;
          text-align: center;
          top: 13px;
          font-size: 22px;
          font-weight: 600;
          color: #0d0d0d;
        }
        .acr-hicons {
          position: absolute;
          right: 28px;
          top: 14px;
          display: flex;
          gap: 26px;
          align-items: center;
        }
        #acr-hicons-b {
          visibility: hidden;
          opacity: 0;
        }

        /* user bubble */
        #acr-bubble {
          position: absolute;
          top: 129px;
          right: 32px;
          max-width: 544px;
          background: #f3f3f3;
          border-radius: 34px;
          padding: 20px 30px;
          font-size: 27px;
          line-height: 38.6px;
          color: #111;
          letter-spacing: 1.25px;
          visibility: hidden;
          opacity: 0;
        }

        /* answer */
        #acr-answer {
          position: absolute;
          top: 267px;
          left: 33px;
          width: 662px;
          font-size: 27px;
          line-height: 38.6px;
          color: #141414;
          letter-spacing: 1.25px;
        }
        #acr-answer .acr-ap {
          margin: 0 0 15.5px 0;
        }
        #acr-answer .acr-ali {
          display: flex;
          margin: 0 0 6.5px 0;
        }
        #acr-answer .acr-mark {
          width: 30px;
          flex: 0 0 30px;
          text-align: center;
          font-size: 18px;
          line-height: 38.6px;
        }
        #acr-answer .acr-alitext {
          flex: 1;
        }
        .acr-w {
          opacity: 0;
        }
        #acr-dot {
          position: absolute;
          left: 32px;
          top: 279px;
          width: 15px;
          height: 15px;
          border-radius: 50%;
          background: #646464;
          visibility: hidden;
          opacity: 0;
        }

        /* composer (rest dock; rides keyboard via transform) */
        #acr-composer {
          position: absolute;
          left: 30px;
          right: 30px;
          bottom: 31px;
        }
        #acr-pill {
          position: relative;
          width: 100%;
          min-height: 81px;
          background: #fff;
          border: 2px solid #ececec;
          border-radius: 41px;
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
          display: flex;
          align-items: center;
          padding: 13px 160px 13px 78px;
        }
        #acr-plusi {
          position: absolute;
          left: 30px;
          top: 50%;
          transform: translateY(-50%);
        }
        #acr-ph {
          position: absolute;
          left: 78px;
          top: 50%;
          transform: translateY(-50%);
          color: #767676;
          font-size: 28px;
          letter-spacing: 1.25px;
        }
        #acr-ctextwrap {
          width: 100%;
          min-height: 38px;
        }
        #acr-ctext {
          font-size: 29px;
          line-height: 38px;
          color: #0d0d0d;
          letter-spacing: 1.25px;
          visibility: hidden;
          opacity: 0;
        }
        #acr-caret {
          display: inline-block;
          width: 3px;
          height: 30px;
          margin-left: 2px;
          border-radius: 1.5px;
          background: #0d0d0d;
          vertical-align: -4px;
          visibility: hidden;
          opacity: 0;
        }
        #acr-cmic {
          position: absolute;
          right: 80px;
          top: 50%;
          transform: translateY(-50%);
        }
        .acr-cbtn {
          position: absolute;
          right: 14px;
          top: 50%;
          transform: translateY(-50%);
          width: 52px;
          height: 52px;
          border-radius: 50%;
          display: grid;
          place-items: center;
        }
        #acr-btn-send-grey {
          background: #ececec;
        }
        #acr-btn-send-black {
          background: #0d0d0d;
          visibility: hidden;
          opacity: 0;
        }
        #acr-btn-stop {
          background: #0d0d0d;
          visibility: hidden;
          opacity: 0;
        }
        #acr-btn-stop .acr-sq {
          width: 19px;
          height: 19px;
          border-radius: 5px;
          background: #fff;
        }

        /* keyboard: geometry and #d2d5e0 ground measured from the reference */
        #acr-keyboard {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 750px;
          height: 482px;
          background: #d2d5e0;
        }
        #acr-suggest {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 74px;
          display: flex;
        }
        #acr-suggest .acr-sug {
          flex: 1;
          display: grid;
          place-items: center;
          font-size: 29px;
          color: #0d0d0d;
          position: relative;
        }
        #acr-suggest .acr-sug + .acr-sug::before {
          content: "";
          position: absolute;
          left: 0;
          top: 16px;
          bottom: 16px;
          width: 1.5px;
          background: #bcbabf;
        }
        .acr-key {
          position: absolute;
          height: 74px;
          background: #fdfdfd;
          border-radius: 10px;
          box-shadow: 0 2px 0 #8b8a8f;
          display: grid;
          place-items: center;
          font-size: 32px;
          color: #000;
        }
        .acr-gkey {
          background: #aeacaf;
        }
        .acr-num,
        .acr-spc {
          font-size: 27px;
        }
        .acr-kbstrip {
          position: absolute;
          bottom: 10px;
          left: 0;
          right: 0;
          height: 52px;
        }
        .acr-kglobe {
          position: absolute;
          left: 48px;
          top: 21px;
        }
        .acr-kmic {
          position: absolute;
          right: 52px;
          top: 23px;
        }

        /* end card: the HyperFrames closing card, on the family's dark ground */
        #acr-endcard-inner {
          position: absolute;
          inset: 0;
          background: linear-gradient(180deg, #14110e 0%, #221b13 100%);
          opacity: 0;
        }
        #acr-eclogo {
          position: absolute;
          left: 255px;
          top: 112px;
          width: 240px;
          height: 72px;
        }
        #acr-ecstar {
          position: absolute;
          left: 610px;
          top: 230px;
        }
        #acr-ecvideo {
          position: absolute;
          left: 222px;
          top: 336px;
          width: 283px;
          height: 454px;
          border-radius: 36px;
          background: linear-gradient(165deg, #0f3a2c 0%, #0a9c6b 78%, #3ce6ac 100%);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        }
        #acr-ecvideo .acr-play {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 108px;
          height: 108px;
          border-radius: 50%;
          background: rgba(253, 253, 253, 0.94);
          display: grid;
          place-items: center;
        }
        #acr-echead {
          position: absolute;
          top: 946px;
          left: 0;
          right: 0;
          text-align: center;
          font-weight: 700;
          font-size: 57px;
          line-height: 58px;
          color: #f7ece5;
          letter-spacing: 0.5px;
        }
        #acr-ecsub {
          position: absolute;
          top: 1084px;
          left: 65px;
          right: 65px;
          text-align: center;
          font-weight: 500;
          font-size: 31px;
          line-height: 40px;
          color: #cfc4b8;
        }
        #acr-eccta {
          position: absolute;
          left: 160px;
          top: 1406px;
          width: 429px;
          height: 87px;
          background: #3ce6ac;
          border-radius: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 22px;
        }
        #acr-eccta .acr-lbl {
          color: #0d0d0d;
          font-weight: 700;
          font-size: 33px;
          letter-spacing: 0.3px;
        }
        #acr-ecfoot {
          position: absolute;
          top: 1536px;
          left: 0;
          right: 0;
          text-align: center;
          font-weight: 700;
          font-size: 25px;
          letter-spacing: 4px;
          color: #3ce6ac;
        }
      </style>
    </head>
    <body>
      <div
        id="acr-root"
        data-composition-id="ai-chat-reveal"
        data-start="0"
        data-width="750"
        data-height="1624"
        data-duration="19.3333"
      >
        <section id="acr-chat" class="clip" data-start="0" data-duration="16.9" data-track-index="1">
          <div id="acr-chat-bg"></div>

          <div id="acr-statusbar">
            <div id="acr-clock">11:42</div>
            <div id="acr-sicons">
              <svg width="30" height="20" viewBox="0 0 20 12" fill="#0d0d0d">
                <rect x="0" y="7" width="3" height="4" rx="1" />
                <rect x="5" y="5" width="3" height="6" rx="1" />
                <rect x="10" y="2.6" width="3" height="8.4" rx="1" />
                <rect x="15" y="0.5" width="3" height="10.5" rx="1" /></svg
              ><svg
                width="30"
                height="21"
                viewBox="0 0 22 15"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="2.2"
                stroke-linecap="round"
              >
                <path d="M2 5 C7 -0.5 15 -0.5 20 5" fill="none" />
                <path d="M5.5 8.6 C9 5 13 5 16.5 8.6" />
                <path d="M9.2 12 C10.4 11 11.6 11 12.8 12" /></svg
              ><svg width="46" height="22" viewBox="0 0 30 14" fill="none">
                <rect
                  x="0.8"
                  y="0.8"
                  width="25"
                  height="12.4"
                  rx="3.6"
                  stroke="#0d0d0d"
                  stroke-opacity="0.32"
                  stroke-width="1.2"
                />
                <rect x="2.4" y="2.4" width="22.4" height="9.2" rx="2.4" fill="#0d0d0d" />
                <path d="M28 4.6 v4.8 a2.4 2.4 0 0 0 0 -4.8" fill="#0d0d0d" fill-opacity="0.45" />
              </svg>
            </div>
          </div>

          <div id="acr-header">
            <div id="acr-hleft">
              <svg
                width="29"
                height="29"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.9"
                stroke-linecap="round"
              >
                <path d="M4 8 H20 M4 15 H12" />
              </svg>
            </div>
            <div id="acr-htitle">Assistant</div>
            <div class="acr-hicons" id="acr-hicons-a">
              <svg
                width="28"
                height="28"
                viewBox="0 0 26 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
              >
                <circle cx="10" cy="8" r="4" />
                <path d="M3 21 C3 16 6.5 14 10 14 C13.5 14 17 16 17 21" />
                <path d="M20 6 V12 M17 9 H23" /></svg
              ><svg
                width="26"
                height="26"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
                stroke-dasharray="2.4 3.4"
              >
                <circle cx="12" cy="12" r="9" />
              </svg>
            </div>
            <div class="acr-hicons" id="acr-hicons-b">
              <svg
                width="23"
                height="23"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path
                  d="M4 20 L5 15.5 L16.5 4 C17.6 2.9 19.4 2.9 20.5 4 C21.6 5.1 21.6 6.9 20.5 8 L9 19.5 L4 20 Z"
                /></svg
              ><svg width="34" height="34" viewBox="0 0 24 24" fill="#0d0d0d">
                <circle cx="5" cy="12" r="1.7" />
                <circle cx="12" cy="12" r="1.7" />
                <circle cx="19" cy="12" r="1.7" />
              </svg>
            </div>
          </div>

          <div id="acr-bubble">How do I turn my HTML into real video?</div>

          <div id="acr-dot"></div>
          <div id="acr-answer" data-layout-allow-occlusion></div>

          <div id="acr-composer">
            <div id="acr-pill">
              <div id="acr-plusi">
                <svg
                  width="22"
                  height="22"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="1.9"
                  stroke-linecap="round"
                >
                  <path d="M12 5 V19 M5 12 H19" />
                </svg>
              </div>
              <div id="acr-ph" data-layout-allow-overlap data-layout-allow-occlusion>
                Ask anything
              </div>
              <div id="acr-ctextwrap"><span id="acr-ctext"></span><span id="acr-caret"></span></div>
              <div id="acr-cmic">
                <svg
                  width="15"
                  height="22"
                  viewBox="0 0 24 34"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="2"
                  stroke-linecap="round"
                >
                  <rect x="8" y="2" width="8" height="16" rx="4" fill="#0d0d0d" stroke="none" />
                  <path d="M4 14 a8 8 0 0 0 16 0 M12 22 V28 M7 31 H17" stroke-width="2.2" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-send-grey">
                <svg
                  width="26"
                  height="26"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#b6b6b6"
                  stroke-width="2.6"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                >
                  <path d="M12 19 V6 M6.5 11 L12 5.5 L17.5 11" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-send-black">
                <svg
                  width="26"
                  height="26"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#fff"
                  stroke-width="2.6"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                >
                  <path d="M12 19 V6 M6.5 11 L12 5.5 L17.5 11" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-stop"><div class="acr-sq"></div></div>
            </div>
          </div>

          <div id="acr-keyboard">
            <div id="acr-suggest">
              <div class="acr-sug">How</div>
              <div class="acr-sug">Can</div>
              <div class="acr-sug">My</div>
            </div>
            <div id="acr-keys"></div>
            <div class="acr-kbstrip">
              <span class="acr-kglobe"
                ><svg
                  width="30"
                  height="30"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#000"
                  stroke-width="2.6"
                >
                  <circle cx="12" cy="12" r="9.6" />
                  <path
                    d="M2.4 12 H21.6 M12 2.4 C7.8 6.8 7.8 17.2 12 21.6 C16.2 17.2 16.2 6.8 12 2.4 M4 7 H20 M4 17 H20"
                    stroke-width="2.2"
                  /></svg></span
              ><span class="acr-kmic"
                ><svg
                  width="16"
                  height="25"
                  viewBox="0 0 24 34"
                  preserveAspectRatio="none"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="3.9"
                  stroke-linecap="round"
                >
                  <rect
                    x="5.5"
                    y="1"
                    width="13"
                    height="17.5"
                    rx="6.5"
                    fill="#0d0d0d"
                    stroke="none"
                  />
                  <path d="M2.5 14 a9.5 9.5 0 0 0 19 0 M12 23.5 V28.5 M5.5 32 H18.5" /></svg
              ></span>
            </div>
          </div>
        </section>

        <section
          id="acr-endcard"
          class="clip"
          data-start="15.8"
          data-duration="3.5333"
          data-track-index="2"
        >
          <div id="acr-endcard-inner">
            <img id="acr-eclogo" src="assets/hyperframes-logo-white.svg" alt="HyperFrames" />
            <svg id="acr-ecstar" width="80" height="80" viewBox="0 0 80 80">
              <g stroke="#2f6b57" stroke-width="8.5" stroke-linecap="round">
                <line x1="47" y1="40" x2="77" y2="40" />
                <line x1="46.5" y1="42.7" x2="74.2" y2="54.2" />
                <line x1="44.9" y1="44.9" x2="66.2" y2="66.2" />
                <line x1="42.7" y1="46.5" x2="54.2" y2="74.2" />
                <line x1="40" y1="47" x2="40" y2="77" />
                <line x1="37.3" y1="46.5" x2="25.8" y2="74.2" />
                <line x1="35.1" y1="44.9" x2="13.8" y2="66.2" />
                <line x1="33.5" y1="42.7" x2="5.8" y2="54.2" />
                <line x1="33" y1="40" x2="3" y2="40" />
                <line x1="33.5" y1="37.3" x2="5.8" y2="25.8" />
                <line x1="35.1" y1="35.1" x2="13.8" y2="13.8" />
                <line x1="37.3" y1="33.5" x2="25.8" y2="5.8" />
                <line x1="40" y1="33" x2="40" y2="3" />
                <line x1="42.7" y1="33.5" x2="54.2" y2="5.8" />
                <line x1="44.9" y1="35.1" x2="66.2" y2="13.8" />
                <line x1="46.5" y1="37.3" x2="74.2" y2="25.8" />
              </g>
            </svg>
            <div id="acr-ecvideo">
              <div class="acr-play">
                <svg width="40" height="46" viewBox="0 0 44 48" fill="none">
                  <path
                    d="M40.5 20.6 C43.2 22.1 43.2 25.9 40.5 27.4 L6.2 46.6 C3.5 48.1 0.2 46.2 0.2 43.2 L0.2 4.8 C0.2 1.8 3.5 -0.1 6.2 1.4 Z"
                    fill="#0d0d0d"
                  />
                </svg>
              </div>
            </div>
            <div id="acr-echead">It's not magic.<br />It's HTML.</div>
            <div id="acr-ecsub">
              Open-source video rendering — write HTML, ship pixel-perfect video.
            </div>
            <div id="acr-eccta">
              <span class="acr-lbl">Try HyperFrames</span
              ><svg
                width="30"
                height="34"
                viewBox="0 0 16 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="2.6"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path d="M4 3 L13 12 L4 21" />
              </svg>
            </div>
            <div id="acr-ecfoot">HYPERFRAMES.HEYGEN.COM</div>
          </div>
        </section>
      </div>

      <script>
        (function () {
          "use strict";

          /* -------- variables -------- */
          var vars =
            window.__hyperframes && typeof window.__hyperframes.getVariables === "function"
              ? window.__hyperframes.getVariables()
              : {};

          function text(value, fallback, max) {
            if (typeof value !== "string") return fallback;
            var t = value.trim();
            if (!t) return fallback;
            return t.length > max ? t.slice(0, max) : t;
          }

          var botName = text(vars.botName, "Assistant", 24);
          var userMessage = text(vars.userMessage, "How do I turn my HTML into real video?", 60);
          var answer1 = text(
            vars.answer1,
            "You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video.",
            220,
          );
          var answer2 = text(vars.answer2, "It is markup, not magic.", 120);
          var answer3 = text(vars.answer3, "What you get out of the box:", 120);
          var bullets = [
            text(vars.bullet1, "A catalog of motion primitives you install and own", 90),
            text(vars.bullet2, "GSAP timelines that seek to any frame", 90),
            text(vars.bullet3, "4K renders from a single CLI command", 90),
          ];

          document.getElementById("acr-htitle").textContent = botName;
          document.getElementById("acr-bubble").textContent = userMessage;
          document.getElementById("acr-echead").innerHTML = "";
          text(vars.ecHeadline, "It's not magic.|It's HTML.", 60)
            .split("|")
            .forEach(function (line, i) {
              var head = document.getElementById("acr-echead");
              if (i > 0) head.appendChild(document.createElement("br"));
              head.appendChild(document.createTextNode(line));
            });
          document.getElementById("acr-ecsub").textContent = text(
            vars.ecSub,
            "Open-source video rendering — write HTML, ship pixel-perfect video.",
            140,
          );
          document.querySelector("#acr-eccta .acr-lbl").textContent = text(
            vars.ecCta,
            "Try HyperFrames",
            30,
          );
          document.getElementById("acr-ecfoot").textContent = text(
            vars.ecFooter,
            "HYPERFRAMES.HEYGEN.COM",
            40,
          );

          /* -------- build the answer DOM: paragraphs of word spans, then bullets -------- */
          var answerEl = document.getElementById("acr-answer");
          var wordEls = [];
          function addPara(str) {
            var p = document.createElement("p");
            p.className = "acr-ap";
            str.split(/\s+/).forEach(function (word, i) {
              if (i > 0) p.appendChild(document.createTextNode(" "));
              var s = document.createElement("span");
              s.className = "acr-w";
              s.textContent = word;
              p.appendChild(s);
              wordEls.push(s);
            });
            answerEl.appendChild(p);
          }
          addPara(answer1);
          addPara(answer2);
          addPara(answer3);
          bullets.forEach(function (b) {
            var row = document.createElement("div");
            row.className = "acr-ali";
            var mark = document.createElement("span");
            mark.className = "acr-mark acr-w";
            mark.textContent = "•";
            row.appendChild(mark);
            wordEls.push(mark);
            var body = document.createElement("div");
            body.className = "acr-alitext";
            b.split(/\s+/).forEach(function (word, i) {
              if (i > 0) body.appendChild(document.createTextNode(" "));
              var s = document.createElement("span");
              s.className = "acr-w";
              s.textContent = word;
              body.appendChild(s);
              wordEls.push(s);
            });
            row.appendChild(body);
            answerEl.appendChild(row);
          });

          /* -------- build the keyboard: measured key geometry -------- */
          var keysEl = document.getElementById("acr-keys");
          var ROWS = [
            { top: 83, left: 13, letters: "qwertyuiop" },
            { top: 173, left: 48, letters: "asdfghjkl" },
            { top: 263, left: 123, letters: "zxcvbnm" },
          ];
          ROWS.forEach(function (row) {
            row.letters.split("").forEach(function (ch, i) {
              var k = document.createElement("div");
              k.className = "acr-key";
              k.style.left = row.left + i * 73.7 + "px";
              k.style.top = row.top + "px";
              k.style.width = "62px";
              k.textContent = ch;
              keysEl.appendChild(k);
            });
          });
          [
            {
              left: 13,
              top: 263,
              width: 97,
              cls: " acr-gkey",
              html: '<svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.6" stroke-linejoin="round"><path d="M12 4 L4.5 12 H8.5 V17 H15.5 V12 H19.5 Z"/></svg>',
            },
            {
              left: 640,
              top: 263,
              width: 98,
              cls: " acr-gkey",
              html: '<svg width="31" height="24" viewBox="0 0 28 20" fill="none" stroke="#000" stroke-width="1.6" stroke-linejoin="round" stroke-linecap="round"><path d="M9 2 H26 V18 H9 L1.5 10 Z"/><path d="M13 6.5 L20 13.5 M20 6.5 L13 13.5"/></svg>',
            },
            { left: 13, top: 353, width: 97, cls: " acr-gkey acr-num", html: "123" },
            {
              left: 118,
              top: 353,
              width: 86,
              cls: "",
              html: '<svg width="27" height="27" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.4" stroke-linecap="round"><circle cx="12" cy="12" r="9"/><circle cx="9" cy="10" r="0.6" fill="#000"/><circle cx="15" cy="10" r="0.6" fill="#000"/><path d="M8 14.5 C9.5 16.5 14.5 16.5 16 14.5"/></svg>',
            },
            { left: 217, top: 353, width: 389, cls: " acr-spc", html: "space" },
            {
              left: 614,
              top: 353,
              width: 124,
              cls: " acr-gkey",
              html: '<svg width="27" height="27" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"><path d="M19 5 V11 H6"/><path d="M9.5 7.5 L6 11 L9.5 14.5"/></svg>',
            },
          ].forEach(function (spec) {
            var k = document.createElement("div");
            k.className = "acr-key" + spec.cls;
            k.style.left = spec.left + "px";
            k.style.top = spec.top + "px";
            k.style.width = spec.width + "px";
            k.innerHTML = spec.html;
            keysEl.appendChild(k);
          });

          /* -------- timeline -------- */
          window.__timelines = window.__timelines || {};
          var tl = gsap.timeline({ paused: true });

          /* keystroke and token rhythms, measured from the reference and cycled */
          var KEY_GAPS = [
            0.1, 0.033, 0.2, 0.133, 0.2, 0.033, 0.067, 0.033, 0.1, 0.067, 0.033, 0.067, 0.067, 0.067,
            0.133, 0.067, 0.033, 0.067, 0.1, 0.1, 0.067, 0.133, 0.1, 0.033, 0.1, 0.033, 0.167, 0.033,
            0.1, 0.1, 0.067, 0.133, 0.033, 0.067, 0.1, 0.033, 0.1, 0.067,
          ];
          var WORD_GAPS = [
            0.167, 0.1, 0.0, 0.367, 0.0, 0.167, 0.133, 0.1, 0.1, 0.133, 0.167, 0.133, 0.0, 0.233,
            0.167, 0.1, 0.0, 0.133, 0.133, 0.1, 0.167, 0.133, 0.1, 0.133, 0.167, 0.1, 0.133, 0.1,
            0.133,
          ];

          /* keyboard rises, composer rides it (verbatim anchors) */
          tl.fromTo("#acr-keyboard", { y: 482 }, { y: 0, duration: 0.2667, ease: "power2.out" }, 0.2);
          tl.fromTo(
            "#acr-composer",
            { y: 0 },
            { y: -497, duration: 0.2667, ease: "power2.out" },
            0.2,
          );

          /* typing: two characters land on the first beat, then the measured gaps */
          tl.set("#acr-ctext", { textContent: "", autoAlpha: 0 }, 0.001);
          var TYPE_START = 0.8637;
          tl.set("#acr-ctext", { autoAlpha: 1 }, TYPE_START);
          tl.set("#acr-ph", { autoAlpha: 0 }, TYPE_START);
          tl.set("#acr-btn-send-grey", { autoAlpha: 0 }, TYPE_START);
          tl.set("#acr-btn-send-black", { autoAlpha: 1 }, TYPE_START);
          var t = TYPE_START;
          for (var n = 2; n <= userMessage.length; n += 1) {
            tl.set("#acr-ctext", { textContent: userMessage.slice(0, n) }, t);
            t += KEY_GAPS[(n - 2) % KEY_GAPS.length];
          }
          var typeEnd = t;
          /* caret blinks on a steady half-second while typing */
          tl.set("#acr-caret", { autoAlpha: 0 }, 0.001);
          for (var c = TYPE_START, on = true; c < typeEnd; c += 0.5333, on = !on) {
            tl.set("#acr-caret", { autoAlpha: on ? 1 : 0 }, c);
          }

          /* send: bubble pops, keyboard drops, stream begins */
          var SEND = typeEnd + 0.1667;
          tl.set("#acr-caret", { autoAlpha: 0 }, SEND);
          tl.set("#acr-ctext", { textContent: "" }, SEND);
          tl.set("#acr-ph", { autoAlpha: 1 }, SEND);
          tl.set("#acr-btn-send-black", { autoAlpha: 0 }, SEND);
          tl.set("#acr-btn-stop", { autoAlpha: 1 }, SEND);
          tl.fromTo(
            "#acr-bubble",
            { autoAlpha: 0 },
            { autoAlpha: 1, duration: 0.1667, ease: "power1.out" },
            SEND - 0.03,
          );
          tl.set("#acr-hicons-a", { autoAlpha: 0 }, SEND);
          tl.set("#acr-hicons-b", { autoAlpha: 1 }, SEND);
          tl.to("#acr-keyboard", { y: 482, duration: 0.2667, ease: "power1.inOut" }, SEND - 0.03);
          tl.to("#acr-composer", { y: 0, duration: 0.2667, ease: "power1.inOut" }, SEND - 0.03);

          /* thinking dot: the measured alpha ramp, then it yields to the words */
          var DOT_RAMP = [
            0.488, 0.53, 0.53, 0.56, 0.608, 0.687, 0.729, 0.771, 0.813, 0.867, 0.904, 0.988, 1,
          ];
          var dotStart = SEND + 0.4333;
          tl.set("#acr-dot", { autoAlpha: 0 }, 0.001);
          DOT_RAMP.forEach(function (a, i) {
            tl.set("#acr-dot", { autoAlpha: a }, dotStart + i * 0.0333);
          });
          tl.set("#acr-dot", { autoAlpha: 0 }, dotStart + 0.5667);

          /* the stream: measured token rhythm, fresh grey inking to full colour */
          var w = dotStart + 0.6333;
          wordEls.forEach(function (el, i) {
            if (i > 0) w += WORD_GAPS[i % WORD_GAPS.length];
            tl.set(el, { opacity: 1 }, w);
            tl.fromTo(
              el,
              { color: "#767676" },
              { color: "#141414", duration: 0.2667, ease: "none" },
              w,
            );
          });

          /* stream ends: stop button returns to send */
          tl.set("#acr-btn-stop", { autoAlpha: 0 }, w + 0.4667);
          tl.set("#acr-btn-send-black", { autoAlpha: 1 }, w + 0.4667);

          /* end card */
          tl.set("#acr-endcard-inner", { opacity: 0 }, 0.001);
          tl.fromTo(
            "#acr-endcard-inner",
            { opacity: 0 },
            { opacity: 1, duration: 0.3167, ease: "none" },
            15.8333,
          );

          window.__timelines["ai-chat-reveal"] = tl;
        })();
      </script>
    </body>
  </html>
  ```
</VariablesExplorer>

## Install

<InstallCommand command="npx hyperframes add ai-chat-reveal" item="ai-chat-reveal" />

That writes `compositions/ai-chat-reveal.html`, plus 1 supporting file under `assets/`.

## Add it to your video

It runs for 19.3333 seconds at 750×1624. Paste this into your composition:

```html index.html theme={null}
<div
  data-composition-id="ai-chat-reveal"
  data-composition-src="compositions/ai-chat-reveal.html"
  data-start="0"
  data-duration="19.3333"
  data-track-index="1"
  data-width="750"
  data-height="1624"
></div>
```

Move it in time with `data-start`. Put it on a different timeline row with
`data-track-index`. See [data attributes](/concepts/data-attributes) for the rest.

## Variables

Every one of these has a default, so the piece works untouched. Set the ones you
want to change on the element:

| Variable      | Default                                                                                                              | Accepts      | What it does                                                                                 |                          |                  |
| ------------- | -------------------------------------------------------------------------------------------------------------------- | ------------ | -------------------------------------------------------------------------------------------- | ------------------------ | ---------------- |
| `botName`     | `Assistant`                                                                                                          | string       | Title in the chat header.                                                                    |                          |                  |
| `userMessage` | `How do I turn my HTML into real video?`                                                                             | string       | The question typed on the keyboard and sent. Around 40 characters keeps the measured pacing. |                          |                  |
| `answer1`     | `You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video.` | string       | First streamed paragraph.                                                                    |                          |                  |
| `answer2`     | `It is markup, not magic.`                                                                                           | string       | Short second beat.                                                                           |                          |                  |
| `answer3`     | `What you get out of the box:`                                                                                       | string       | Lead-in to the list.                                                                         |                          |                  |
| `bullet1`     | `A catalog of motion primitives you install and own`                                                                 | string       | First list item.                                                                             |                          |                  |
| `bullet2`     | `GSAP timelines that seek to any frame`                                                                              | string       | Second list item.                                                                            |                          |                  |
| `bullet3`     | `4K renders from a single CLI command`                                                                               | string       | Third list item.                                                                             |                          |                  |
| `ecHeadline`  | \`It's not magic.                                                                                                    | It's HTML.\` | string                                                                                       | Closing card headline. A | breaks the line. |
| `ecSub`       | `Open-source video rendering — write HTML, ship pixel-perfect video.`                                                | string       | Supporting sentence on the closing card.                                                     |                          |                  |
| `ecCta`       | `Try HyperFrames`                                                                                                    | string       | Label on the closing card button.                                                            |                          |                  |
| `ecFooter`    | `HYPERFRAMES.HEYGEN.COM`                                                                                             | string       | Letter-spaced line at the very bottom.                                                       |                          |                  |

Set them with `data-variable-values` on the element that mounts it. These are the
defaults, so this behaves exactly like the preview above until you change one:

```html wrap theme={null}
<div
  data-composition-id="ai-chat-reveal"
  data-composition-src="compositions/ai-chat-reveal.html"
  data-variable-values='{"botName":"Assistant","userMessage":"How do I turn my HTML into real video?","answer1":"You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video.","answer2":"It is markup, not magic.","answer3":"What you get out of the box:","bullet1":"A catalog of motion primitives you install and own","bullet2":"GSAP timelines that seek to any frame","bullet3":"4K renders from a single CLI command","ecHeadline":"It's not magic.|It's HTML.","ecSub":"Open-source video rendering — write HTML, ship pixel-perfect video.","ecCta":"Try HyperFrames","ecFooter":"HYPERFRAMES.HEYGEN.COM"}'
></div>
```

## Source

<Accordion title={`ai-chat-reveal.html`}>
  ```html theme={null}
  <!doctype html>
  <html
    lang="en"
    data-composition-variables='[
      { "id": "botName", "type": "string", "role": "content", "label": "Assistant name", "description": "Title in the chat header.", "default": "Assistant" },
      { "id": "userMessage", "type": "string", "role": "content", "label": "User message", "description": "The question typed on the keyboard and sent. Around 40 characters keeps the measured pacing.", "default": "How do I turn my HTML into real video?" },
      { "id": "answer1", "type": "string", "role": "content", "label": "Answer paragraph 1", "description": "First streamed paragraph.", "default": "You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video." },
      { "id": "answer2", "type": "string", "role": "content", "label": "Answer paragraph 2", "description": "Short second beat.", "default": "It is markup, not magic." },
      { "id": "answer3", "type": "string", "role": "content", "label": "Answer paragraph 3", "description": "Lead-in to the list.", "default": "What you get out of the box:" },
      { "id": "bullet1", "type": "string", "role": "content", "label": "Bullet 1", "description": "First list item.", "default": "A catalog of motion primitives you install and own" },
      { "id": "bullet2", "type": "string", "role": "content", "label": "Bullet 2", "description": "Second list item.", "default": "GSAP timelines that seek to any frame" },
      { "id": "bullet3", "type": "string", "role": "content", "label": "Bullet 3", "description": "Third list item.", "default": "4K renders from a single CLI command" },
      { "id": "ecHeadline", "type": "string", "role": "content", "label": "End-card headline", "description": "Closing card headline. A | breaks the line.", "default": "It&#39;s not magic.|It&#39;s HTML." },
      { "id": "ecSub", "type": "string", "role": "content", "label": "End-card subline", "description": "Supporting sentence on the closing card.", "default": "Open-source video rendering — write HTML, ship pixel-perfect video." },
      { "id": "ecCta", "type": "string", "role": "content", "label": "End-card CTA", "description": "Label on the closing card button.", "default": "Try HyperFrames" },
      { "id": "ecFooter", "type": "string", "role": "content", "label": "End-card footer", "description": "Letter-spaced line at the very bottom.", "default": "HYPERFRAMES.HEYGEN.COM" }
    ]'
  >
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=750, height=1624" />
      <title>AI Chat Reveal</title>
      <script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
      <style>
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        html,
        body {
          width: 750px;
          height: 1624px;
          overflow: hidden;
          background: #000;
        }
        body {
          font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
        }
        /* 750x1624 is the reference device capture, kept native so the measured
           keyboard geometry stays pixel-true; scale the block when embedding */
        #acr-root {
          position: relative;
          width: 750px;
          height: 1624px;
          overflow: hidden;
        }
        .clip {
          position: absolute;
          inset: 0;
        }
        #acr-chat-bg {
          position: absolute;
          inset: 0;
          background: #fdfdfd;
        }

        /* status bar */
        #acr-statusbar {
          position: absolute;
          top: 14px;
          left: 0;
          right: 0;
          height: 44px;
        }
        #acr-clock {
          position: absolute;
          left: 39px;
          top: 9px;
          font-size: 22px;
          font-weight: 600;
          letter-spacing: 2.4px;
          font-variant-numeric: tabular-nums;
          color: #0d0d0d;
        }
        #acr-sicons {
          position: absolute;
          right: 26px;
          top: 8px;
          display: flex;
          gap: 9px;
          align-items: center;
        }

        /* header */
        #acr-header {
          position: absolute;
          top: 64px;
          left: 0;
          right: 0;
          height: 52px;
        }
        #acr-hleft {
          position: absolute;
          left: 28px;
          top: 12px;
        }
        #acr-htitle {
          position: absolute;
          left: 0;
          right: 48px;
          text-align: center;
          top: 13px;
          font-size: 22px;
          font-weight: 600;
          color: #0d0d0d;
        }
        .acr-hicons {
          position: absolute;
          right: 28px;
          top: 14px;
          display: flex;
          gap: 26px;
          align-items: center;
        }
        #acr-hicons-b {
          visibility: hidden;
          opacity: 0;
        }

        /* user bubble */
        #acr-bubble {
          position: absolute;
          top: 129px;
          right: 32px;
          max-width: 544px;
          background: #f3f3f3;
          border-radius: 34px;
          padding: 20px 30px;
          font-size: 27px;
          line-height: 38.6px;
          color: #111;
          letter-spacing: 1.25px;
          visibility: hidden;
          opacity: 0;
        }

        /* answer */
        #acr-answer {
          position: absolute;
          top: 267px;
          left: 33px;
          width: 662px;
          font-size: 27px;
          line-height: 38.6px;
          color: #141414;
          letter-spacing: 1.25px;
        }
        #acr-answer .acr-ap {
          margin: 0 0 15.5px 0;
        }
        #acr-answer .acr-ali {
          display: flex;
          margin: 0 0 6.5px 0;
        }
        #acr-answer .acr-mark {
          width: 30px;
          flex: 0 0 30px;
          text-align: center;
          font-size: 18px;
          line-height: 38.6px;
        }
        #acr-answer .acr-alitext {
          flex: 1;
        }
        .acr-w {
          opacity: 0;
        }
        #acr-dot {
          position: absolute;
          left: 32px;
          top: 279px;
          width: 15px;
          height: 15px;
          border-radius: 50%;
          background: #646464;
          visibility: hidden;
          opacity: 0;
        }

        /* composer (rest dock; rides keyboard via transform) */
        #acr-composer {
          position: absolute;
          left: 30px;
          right: 30px;
          bottom: 31px;
        }
        #acr-pill {
          position: relative;
          width: 100%;
          min-height: 81px;
          background: #fff;
          border: 2px solid #ececec;
          border-radius: 41px;
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
          display: flex;
          align-items: center;
          padding: 13px 160px 13px 78px;
        }
        #acr-plusi {
          position: absolute;
          left: 30px;
          top: 50%;
          transform: translateY(-50%);
        }
        #acr-ph {
          position: absolute;
          left: 78px;
          top: 50%;
          transform: translateY(-50%);
          color: #767676;
          font-size: 28px;
          letter-spacing: 1.25px;
        }
        #acr-ctextwrap {
          width: 100%;
          min-height: 38px;
        }
        #acr-ctext {
          font-size: 29px;
          line-height: 38px;
          color: #0d0d0d;
          letter-spacing: 1.25px;
          visibility: hidden;
          opacity: 0;
        }
        #acr-caret {
          display: inline-block;
          width: 3px;
          height: 30px;
          margin-left: 2px;
          border-radius: 1.5px;
          background: #0d0d0d;
          vertical-align: -4px;
          visibility: hidden;
          opacity: 0;
        }
        #acr-cmic {
          position: absolute;
          right: 80px;
          top: 50%;
          transform: translateY(-50%);
        }
        .acr-cbtn {
          position: absolute;
          right: 14px;
          top: 50%;
          transform: translateY(-50%);
          width: 52px;
          height: 52px;
          border-radius: 50%;
          display: grid;
          place-items: center;
        }
        #acr-btn-send-grey {
          background: #ececec;
        }
        #acr-btn-send-black {
          background: #0d0d0d;
          visibility: hidden;
          opacity: 0;
        }
        #acr-btn-stop {
          background: #0d0d0d;
          visibility: hidden;
          opacity: 0;
        }
        #acr-btn-stop .acr-sq {
          width: 19px;
          height: 19px;
          border-radius: 5px;
          background: #fff;
        }

        /* keyboard: geometry and #d2d5e0 ground measured from the reference */
        #acr-keyboard {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 750px;
          height: 482px;
          background: #d2d5e0;
        }
        #acr-suggest {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 74px;
          display: flex;
        }
        #acr-suggest .acr-sug {
          flex: 1;
          display: grid;
          place-items: center;
          font-size: 29px;
          color: #0d0d0d;
          position: relative;
        }
        #acr-suggest .acr-sug + .acr-sug::before {
          content: "";
          position: absolute;
          left: 0;
          top: 16px;
          bottom: 16px;
          width: 1.5px;
          background: #bcbabf;
        }
        .acr-key {
          position: absolute;
          height: 74px;
          background: #fdfdfd;
          border-radius: 10px;
          box-shadow: 0 2px 0 #8b8a8f;
          display: grid;
          place-items: center;
          font-size: 32px;
          color: #000;
        }
        .acr-gkey {
          background: #aeacaf;
        }
        .acr-num,
        .acr-spc {
          font-size: 27px;
        }
        .acr-kbstrip {
          position: absolute;
          bottom: 10px;
          left: 0;
          right: 0;
          height: 52px;
        }
        .acr-kglobe {
          position: absolute;
          left: 48px;
          top: 21px;
        }
        .acr-kmic {
          position: absolute;
          right: 52px;
          top: 23px;
        }

        /* end card: the HyperFrames closing card, on the family's dark ground */
        #acr-endcard-inner {
          position: absolute;
          inset: 0;
          background: linear-gradient(180deg, #14110e 0%, #221b13 100%);
          opacity: 0;
        }
        #acr-eclogo {
          position: absolute;
          left: 255px;
          top: 112px;
          width: 240px;
          height: 72px;
        }
        #acr-ecstar {
          position: absolute;
          left: 610px;
          top: 230px;
        }
        #acr-ecvideo {
          position: absolute;
          left: 222px;
          top: 336px;
          width: 283px;
          height: 454px;
          border-radius: 36px;
          background: linear-gradient(165deg, #0f3a2c 0%, #0a9c6b 78%, #3ce6ac 100%);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        }
        #acr-ecvideo .acr-play {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 108px;
          height: 108px;
          border-radius: 50%;
          background: rgba(253, 253, 253, 0.94);
          display: grid;
          place-items: center;
        }
        #acr-echead {
          position: absolute;
          top: 946px;
          left: 0;
          right: 0;
          text-align: center;
          font-weight: 700;
          font-size: 57px;
          line-height: 58px;
          color: #f7ece5;
          letter-spacing: 0.5px;
        }
        #acr-ecsub {
          position: absolute;
          top: 1084px;
          left: 65px;
          right: 65px;
          text-align: center;
          font-weight: 500;
          font-size: 31px;
          line-height: 40px;
          color: #cfc4b8;
        }
        #acr-eccta {
          position: absolute;
          left: 160px;
          top: 1406px;
          width: 429px;
          height: 87px;
          background: #3ce6ac;
          border-radius: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 22px;
        }
        #acr-eccta .acr-lbl {
          color: #0d0d0d;
          font-weight: 700;
          font-size: 33px;
          letter-spacing: 0.3px;
        }
        #acr-ecfoot {
          position: absolute;
          top: 1536px;
          left: 0;
          right: 0;
          text-align: center;
          font-weight: 700;
          font-size: 25px;
          letter-spacing: 4px;
          color: #3ce6ac;
        }
      </style>
    </head>
    <body>
      <div
        id="acr-root"
        data-composition-id="ai-chat-reveal"
        data-start="0"
        data-width="750"
        data-height="1624"
        data-duration="19.3333"
      >
        <section id="acr-chat" class="clip" data-start="0" data-duration="16.9" data-track-index="1">
          <div id="acr-chat-bg"></div>

          <div id="acr-statusbar">
            <div id="acr-clock">11:42</div>
            <div id="acr-sicons">
              <svg width="30" height="20" viewBox="0 0 20 12" fill="#0d0d0d">
                <rect x="0" y="7" width="3" height="4" rx="1" />
                <rect x="5" y="5" width="3" height="6" rx="1" />
                <rect x="10" y="2.6" width="3" height="8.4" rx="1" />
                <rect x="15" y="0.5" width="3" height="10.5" rx="1" /></svg
              ><svg
                width="30"
                height="21"
                viewBox="0 0 22 15"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="2.2"
                stroke-linecap="round"
              >
                <path d="M2 5 C7 -0.5 15 -0.5 20 5" fill="none" />
                <path d="M5.5 8.6 C9 5 13 5 16.5 8.6" />
                <path d="M9.2 12 C10.4 11 11.6 11 12.8 12" /></svg
              ><svg width="46" height="22" viewBox="0 0 30 14" fill="none">
                <rect
                  x="0.8"
                  y="0.8"
                  width="25"
                  height="12.4"
                  rx="3.6"
                  stroke="#0d0d0d"
                  stroke-opacity="0.32"
                  stroke-width="1.2"
                />
                <rect x="2.4" y="2.4" width="22.4" height="9.2" rx="2.4" fill="#0d0d0d" />
                <path d="M28 4.6 v4.8 a2.4 2.4 0 0 0 0 -4.8" fill="#0d0d0d" fill-opacity="0.45" />
              </svg>
            </div>
          </div>

          <div id="acr-header">
            <div id="acr-hleft">
              <svg
                width="29"
                height="29"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.9"
                stroke-linecap="round"
              >
                <path d="M4 8 H20 M4 15 H12" />
              </svg>
            </div>
            <div id="acr-htitle">Assistant</div>
            <div class="acr-hicons" id="acr-hicons-a">
              <svg
                width="28"
                height="28"
                viewBox="0 0 26 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
              >
                <circle cx="10" cy="8" r="4" />
                <path d="M3 21 C3 16 6.5 14 10 14 C13.5 14 17 16 17 21" />
                <path d="M20 6 V12 M17 9 H23" /></svg
              ><svg
                width="26"
                height="26"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
                stroke-dasharray="2.4 3.4"
              >
                <circle cx="12" cy="12" r="9" />
              </svg>
            </div>
            <div class="acr-hicons" id="acr-hicons-b">
              <svg
                width="23"
                height="23"
                viewBox="0 0 24 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="1.7"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path
                  d="M4 20 L5 15.5 L16.5 4 C17.6 2.9 19.4 2.9 20.5 4 C21.6 5.1 21.6 6.9 20.5 8 L9 19.5 L4 20 Z"
                /></svg
              ><svg width="34" height="34" viewBox="0 0 24 24" fill="#0d0d0d">
                <circle cx="5" cy="12" r="1.7" />
                <circle cx="12" cy="12" r="1.7" />
                <circle cx="19" cy="12" r="1.7" />
              </svg>
            </div>
          </div>

          <div id="acr-bubble">How do I turn my HTML into real video?</div>

          <div id="acr-dot"></div>
          <div id="acr-answer" data-layout-allow-occlusion></div>

          <div id="acr-composer">
            <div id="acr-pill">
              <div id="acr-plusi">
                <svg
                  width="22"
                  height="22"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="1.9"
                  stroke-linecap="round"
                >
                  <path d="M12 5 V19 M5 12 H19" />
                </svg>
              </div>
              <div id="acr-ph" data-layout-allow-overlap data-layout-allow-occlusion>
                Ask anything
              </div>
              <div id="acr-ctextwrap"><span id="acr-ctext"></span><span id="acr-caret"></span></div>
              <div id="acr-cmic">
                <svg
                  width="15"
                  height="22"
                  viewBox="0 0 24 34"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="2"
                  stroke-linecap="round"
                >
                  <rect x="8" y="2" width="8" height="16" rx="4" fill="#0d0d0d" stroke="none" />
                  <path d="M4 14 a8 8 0 0 0 16 0 M12 22 V28 M7 31 H17" stroke-width="2.2" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-send-grey">
                <svg
                  width="26"
                  height="26"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#b6b6b6"
                  stroke-width="2.6"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                >
                  <path d="M12 19 V6 M6.5 11 L12 5.5 L17.5 11" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-send-black">
                <svg
                  width="26"
                  height="26"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#fff"
                  stroke-width="2.6"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                >
                  <path d="M12 19 V6 M6.5 11 L12 5.5 L17.5 11" />
                </svg>
              </div>
              <div class="acr-cbtn" id="acr-btn-stop"><div class="acr-sq"></div></div>
            </div>
          </div>

          <div id="acr-keyboard">
            <div id="acr-suggest">
              <div class="acr-sug">How</div>
              <div class="acr-sug">Can</div>
              <div class="acr-sug">My</div>
            </div>
            <div id="acr-keys"></div>
            <div class="acr-kbstrip">
              <span class="acr-kglobe"
                ><svg
                  width="30"
                  height="30"
                  viewBox="0 0 24 24"
                  fill="none"
                  stroke="#000"
                  stroke-width="2.6"
                >
                  <circle cx="12" cy="12" r="9.6" />
                  <path
                    d="M2.4 12 H21.6 M12 2.4 C7.8 6.8 7.8 17.2 12 21.6 C16.2 17.2 16.2 6.8 12 2.4 M4 7 H20 M4 17 H20"
                    stroke-width="2.2"
                  /></svg></span
              ><span class="acr-kmic"
                ><svg
                  width="16"
                  height="25"
                  viewBox="0 0 24 34"
                  preserveAspectRatio="none"
                  fill="none"
                  stroke="#0d0d0d"
                  stroke-width="3.9"
                  stroke-linecap="round"
                >
                  <rect
                    x="5.5"
                    y="1"
                    width="13"
                    height="17.5"
                    rx="6.5"
                    fill="#0d0d0d"
                    stroke="none"
                  />
                  <path d="M2.5 14 a9.5 9.5 0 0 0 19 0 M12 23.5 V28.5 M5.5 32 H18.5" /></svg
              ></span>
            </div>
          </div>
        </section>

        <section
          id="acr-endcard"
          class="clip"
          data-start="15.8"
          data-duration="3.5333"
          data-track-index="2"
        >
          <div id="acr-endcard-inner">
            <img id="acr-eclogo" src="assets/hyperframes-logo-white.svg" alt="HyperFrames" />
            <svg id="acr-ecstar" width="80" height="80" viewBox="0 0 80 80">
              <g stroke="#2f6b57" stroke-width="8.5" stroke-linecap="round">
                <line x1="47" y1="40" x2="77" y2="40" />
                <line x1="46.5" y1="42.7" x2="74.2" y2="54.2" />
                <line x1="44.9" y1="44.9" x2="66.2" y2="66.2" />
                <line x1="42.7" y1="46.5" x2="54.2" y2="74.2" />
                <line x1="40" y1="47" x2="40" y2="77" />
                <line x1="37.3" y1="46.5" x2="25.8" y2="74.2" />
                <line x1="35.1" y1="44.9" x2="13.8" y2="66.2" />
                <line x1="33.5" y1="42.7" x2="5.8" y2="54.2" />
                <line x1="33" y1="40" x2="3" y2="40" />
                <line x1="33.5" y1="37.3" x2="5.8" y2="25.8" />
                <line x1="35.1" y1="35.1" x2="13.8" y2="13.8" />
                <line x1="37.3" y1="33.5" x2="25.8" y2="5.8" />
                <line x1="40" y1="33" x2="40" y2="3" />
                <line x1="42.7" y1="33.5" x2="54.2" y2="5.8" />
                <line x1="44.9" y1="35.1" x2="66.2" y2="13.8" />
                <line x1="46.5" y1="37.3" x2="74.2" y2="25.8" />
              </g>
            </svg>
            <div id="acr-ecvideo">
              <div class="acr-play">
                <svg width="40" height="46" viewBox="0 0 44 48" fill="none">
                  <path
                    d="M40.5 20.6 C43.2 22.1 43.2 25.9 40.5 27.4 L6.2 46.6 C3.5 48.1 0.2 46.2 0.2 43.2 L0.2 4.8 C0.2 1.8 3.5 -0.1 6.2 1.4 Z"
                    fill="#0d0d0d"
                  />
                </svg>
              </div>
            </div>
            <div id="acr-echead">It's not magic.<br />It's HTML.</div>
            <div id="acr-ecsub">
              Open-source video rendering — write HTML, ship pixel-perfect video.
            </div>
            <div id="acr-eccta">
              <span class="acr-lbl">Try HyperFrames</span
              ><svg
                width="30"
                height="34"
                viewBox="0 0 16 24"
                fill="none"
                stroke="#0d0d0d"
                stroke-width="2.6"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path d="M4 3 L13 12 L4 21" />
              </svg>
            </div>
            <div id="acr-ecfoot">HYPERFRAMES.HEYGEN.COM</div>
          </div>
        </section>
      </div>

      <script>
        (function () {
          "use strict";

          /* -------- variables -------- */
          var vars =
            window.__hyperframes && typeof window.__hyperframes.getVariables === "function"
              ? window.__hyperframes.getVariables()
              : {};

          function text(value, fallback, max) {
            if (typeof value !== "string") return fallback;
            var t = value.trim();
            if (!t) return fallback;
            return t.length > max ? t.slice(0, max) : t;
          }

          var botName = text(vars.botName, "Assistant", 24);
          var userMessage = text(vars.userMessage, "How do I turn my HTML into real video?", 60);
          var answer1 = text(
            vars.answer1,
            "You do not need an editor. HyperFrames renders the HTML you already write into deterministic, pixel-perfect video.",
            220,
          );
          var answer2 = text(vars.answer2, "It is markup, not magic.", 120);
          var answer3 = text(vars.answer3, "What you get out of the box:", 120);
          var bullets = [
            text(vars.bullet1, "A catalog of motion primitives you install and own", 90),
            text(vars.bullet2, "GSAP timelines that seek to any frame", 90),
            text(vars.bullet3, "4K renders from a single CLI command", 90),
          ];

          document.getElementById("acr-htitle").textContent = botName;
          document.getElementById("acr-bubble").textContent = userMessage;
          document.getElementById("acr-echead").innerHTML = "";
          text(vars.ecHeadline, "It's not magic.|It's HTML.", 60)
            .split("|")
            .forEach(function (line, i) {
              var head = document.getElementById("acr-echead");
              if (i > 0) head.appendChild(document.createElement("br"));
              head.appendChild(document.createTextNode(line));
            });
          document.getElementById("acr-ecsub").textContent = text(
            vars.ecSub,
            "Open-source video rendering — write HTML, ship pixel-perfect video.",
            140,
          );
          document.querySelector("#acr-eccta .acr-lbl").textContent = text(
            vars.ecCta,
            "Try HyperFrames",
            30,
          );
          document.getElementById("acr-ecfoot").textContent = text(
            vars.ecFooter,
            "HYPERFRAMES.HEYGEN.COM",
            40,
          );

          /* -------- build the answer DOM: paragraphs of word spans, then bullets -------- */
          var answerEl = document.getElementById("acr-answer");
          var wordEls = [];
          function addPara(str) {
            var p = document.createElement("p");
            p.className = "acr-ap";
            str.split(/\s+/).forEach(function (word, i) {
              if (i > 0) p.appendChild(document.createTextNode(" "));
              var s = document.createElement("span");
              s.className = "acr-w";
              s.textContent = word;
              p.appendChild(s);
              wordEls.push(s);
            });
            answerEl.appendChild(p);
          }
          addPara(answer1);
          addPara(answer2);
          addPara(answer3);
          bullets.forEach(function (b) {
            var row = document.createElement("div");
            row.className = "acr-ali";
            var mark = document.createElement("span");
            mark.className = "acr-mark acr-w";
            mark.textContent = "•";
            row.appendChild(mark);
            wordEls.push(mark);
            var body = document.createElement("div");
            body.className = "acr-alitext";
            b.split(/\s+/).forEach(function (word, i) {
              if (i > 0) body.appendChild(document.createTextNode(" "));
              var s = document.createElement("span");
              s.className = "acr-w";
              s.textContent = word;
              body.appendChild(s);
              wordEls.push(s);
            });
            row.appendChild(body);
            answerEl.appendChild(row);
          });

          /* -------- build the keyboard: measured key geometry -------- */
          var keysEl = document.getElementById("acr-keys");
          var ROWS = [
            { top: 83, left: 13, letters: "qwertyuiop" },
            { top: 173, left: 48, letters: "asdfghjkl" },
            { top: 263, left: 123, letters: "zxcvbnm" },
          ];
          ROWS.forEach(function (row) {
            row.letters.split("").forEach(function (ch, i) {
              var k = document.createElement("div");
              k.className = "acr-key";
              k.style.left = row.left + i * 73.7 + "px";
              k.style.top = row.top + "px";
              k.style.width = "62px";
              k.textContent = ch;
              keysEl.appendChild(k);
            });
          });
          [
            {
              left: 13,
              top: 263,
              width: 97,
              cls: " acr-gkey",
              html: '<svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.6" stroke-linejoin="round"><path d="M12 4 L4.5 12 H8.5 V17 H15.5 V12 H19.5 Z"/></svg>',
            },
            {
              left: 640,
              top: 263,
              width: 98,
              cls: " acr-gkey",
              html: '<svg width="31" height="24" viewBox="0 0 28 20" fill="none" stroke="#000" stroke-width="1.6" stroke-linejoin="round" stroke-linecap="round"><path d="M9 2 H26 V18 H9 L1.5 10 Z"/><path d="M13 6.5 L20 13.5 M20 6.5 L13 13.5"/></svg>',
            },
            { left: 13, top: 353, width: 97, cls: " acr-gkey acr-num", html: "123" },
            {
              left: 118,
              top: 353,
              width: 86,
              cls: "",
              html: '<svg width="27" height="27" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.4" stroke-linecap="round"><circle cx="12" cy="12" r="9"/><circle cx="9" cy="10" r="0.6" fill="#000"/><circle cx="15" cy="10" r="0.6" fill="#000"/><path d="M8 14.5 C9.5 16.5 14.5 16.5 16 14.5"/></svg>',
            },
            { left: 217, top: 353, width: 389, cls: " acr-spc", html: "space" },
            {
              left: 614,
              top: 353,
              width: 124,
              cls: " acr-gkey",
              html: '<svg width="27" height="27" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"><path d="M19 5 V11 H6"/><path d="M9.5 7.5 L6 11 L9.5 14.5"/></svg>',
            },
          ].forEach(function (spec) {
            var k = document.createElement("div");
            k.className = "acr-key" + spec.cls;
            k.style.left = spec.left + "px";
            k.style.top = spec.top + "px";
            k.style.width = spec.width + "px";
            k.innerHTML = spec.html;
            keysEl.appendChild(k);
          });

          /* -------- timeline -------- */
          window.__timelines = window.__timelines || {};
          var tl = gsap.timeline({ paused: true });

          /* keystroke and token rhythms, measured from the reference and cycled */
          var KEY_GAPS = [
            0.1, 0.033, 0.2, 0.133, 0.2, 0.033, 0.067, 0.033, 0.1, 0.067, 0.033, 0.067, 0.067, 0.067,
            0.133, 0.067, 0.033, 0.067, 0.1, 0.1, 0.067, 0.133, 0.1, 0.033, 0.1, 0.033, 0.167, 0.033,
            0.1, 0.1, 0.067, 0.133, 0.033, 0.067, 0.1, 0.033, 0.1, 0.067,
          ];
          var WORD_GAPS = [
            0.167, 0.1, 0.0, 0.367, 0.0, 0.167, 0.133, 0.1, 0.1, 0.133, 0.167, 0.133, 0.0, 0.233,
            0.167, 0.1, 0.0, 0.133, 0.133, 0.1, 0.167, 0.133, 0.1, 0.133, 0.167, 0.1, 0.133, 0.1,
            0.133,
          ];

          /* keyboard rises, composer rides it (verbatim anchors) */
          tl.fromTo("#acr-keyboard", { y: 482 }, { y: 0, duration: 0.2667, ease: "power2.out" }, 0.2);
          tl.fromTo(
            "#acr-composer",
            { y: 0 },
            { y: -497, duration: 0.2667, ease: "power2.out" },
            0.2,
          );

          /* typing: two characters land on the first beat, then the measured gaps */
          tl.set("#acr-ctext", { textContent: "", autoAlpha: 0 }, 0.001);
          var TYPE_START = 0.8637;
          tl.set("#acr-ctext", { autoAlpha: 1 }, TYPE_START);
          tl.set("#acr-ph", { autoAlpha: 0 }, TYPE_START);
          tl.set("#acr-btn-send-grey", { autoAlpha: 0 }, TYPE_START);
          tl.set("#acr-btn-send-black", { autoAlpha: 1 }, TYPE_START);
          var t = TYPE_START;
          for (var n = 2; n <= userMessage.length; n += 1) {
            tl.set("#acr-ctext", { textContent: userMessage.slice(0, n) }, t);
            t += KEY_GAPS[(n - 2) % KEY_GAPS.length];
          }
          var typeEnd = t;
          /* caret blinks on a steady half-second while typing */
          tl.set("#acr-caret", { autoAlpha: 0 }, 0.001);
          for (var c = TYPE_START, on = true; c < typeEnd; c += 0.5333, on = !on) {
            tl.set("#acr-caret", { autoAlpha: on ? 1 : 0 }, c);
          }

          /* send: bubble pops, keyboard drops, stream begins */
          var SEND = typeEnd + 0.1667;
          tl.set("#acr-caret", { autoAlpha: 0 }, SEND);
          tl.set("#acr-ctext", { textContent: "" }, SEND);
          tl.set("#acr-ph", { autoAlpha: 1 }, SEND);
          tl.set("#acr-btn-send-black", { autoAlpha: 0 }, SEND);
          tl.set("#acr-btn-stop", { autoAlpha: 1 }, SEND);
          tl.fromTo(
            "#acr-bubble",
            { autoAlpha: 0 },
            { autoAlpha: 1, duration: 0.1667, ease: "power1.out" },
            SEND - 0.03,
          );
          tl.set("#acr-hicons-a", { autoAlpha: 0 }, SEND);
          tl.set("#acr-hicons-b", { autoAlpha: 1 }, SEND);
          tl.to("#acr-keyboard", { y: 482, duration: 0.2667, ease: "power1.inOut" }, SEND - 0.03);
          tl.to("#acr-composer", { y: 0, duration: 0.2667, ease: "power1.inOut" }, SEND - 0.03);

          /* thinking dot: the measured alpha ramp, then it yields to the words */
          var DOT_RAMP = [
            0.488, 0.53, 0.53, 0.56, 0.608, 0.687, 0.729, 0.771, 0.813, 0.867, 0.904, 0.988, 1,
          ];
          var dotStart = SEND + 0.4333;
          tl.set("#acr-dot", { autoAlpha: 0 }, 0.001);
          DOT_RAMP.forEach(function (a, i) {
            tl.set("#acr-dot", { autoAlpha: a }, dotStart + i * 0.0333);
          });
          tl.set("#acr-dot", { autoAlpha: 0 }, dotStart + 0.5667);

          /* the stream: measured token rhythm, fresh grey inking to full colour */
          var w = dotStart + 0.6333;
          wordEls.forEach(function (el, i) {
            if (i > 0) w += WORD_GAPS[i % WORD_GAPS.length];
            tl.set(el, { opacity: 1 }, w);
            tl.fromTo(
              el,
              { color: "#767676" },
              { color: "#141414", duration: 0.2667, ease: "none" },
              w,
            );
          });

          /* stream ends: stop button returns to send */
          tl.set("#acr-btn-stop", { autoAlpha: 0 }, w + 0.4667);
          tl.set("#acr-btn-send-black", { autoAlpha: 1 }, w + 0.4667);

          /* end card */
          tl.set("#acr-endcard-inner", { opacity: 0 }, 0.001);
          tl.fromTo(
            "#acr-endcard-inner",
            { opacity: 0 },
            { opacity: 1, duration: 0.3167, ease: "none" },
            15.8333,
          );

          window.__timelines["ai-chat-reveal"] = tl;
        })();
      </script>
    </body>
  </html>
  ```
</Accordion>

Tagged `showcase` `mock-ui` `ai` `chat` `vertical` `ad-template`.

Created by Miao Yang.

## Related topics

* [Browse the complete Catalog](/catalog)
* [Add assets and Catalog items in Studio](/studio/assets-and-blocks)
* [Build a richer composition](/go-further)


## Related topics

- [Create through an AI chat](/guides/mcp.md)
- [Choose how to create](/guides/choose-creation-path.md)
- [Message Thread Reveal](/catalog/blocks/message-thread-reveal.md)
