> ## Documentation Index
> Fetch the complete documentation index at: https://hyperframes-feat-ad94-tune-scroll-cue.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 3D UI Reveal

> Perspective 3D reveal animation for UI elements

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>;
};

export const CatalogSlot = ({slot, children}) => <div data-slot={slot} className="prose prose-gray dark:prose-invert">
    {children}
  </div>;

export const CatalogDetail = ({previewSrc, compositionId, compositionSrc, variables = [], title, description, meta = {}, about, attribution, rawUrl, video, poster, webgpu, needsFlag, hasCode, 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-hover);
}
.hf-ve-tab:focus:not(:focus-visible) { outline: none; box-shadow: none; }
.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;
}

.hf-ve-head-title { margin: 8px 0 28px; }
.hf-ve-head-title h1 { margin: 0; font-size: 44px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; color: var(--ve-fg); }
.hf-ve-head-title p { margin: 12px 0 0; font-size: 18px; line-height: 1.5; color: var(--ve-muted); max-width: 70ch; }
@media (max-width: 640px) { .hf-ve-head-title h1 { font-size: 32px; } }
/* Item page anatomy: bar, stage beside Tune, tabs, tab body. */
.hf-ve-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 16px;
}
.hf-ve-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  font-size: 14px;
  color: var(--ve-muted);
}
.hf-ve-meta b { color: var(--ve-fg); font-weight: 600; }
.hf-ve-badge {
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 12px;
  background: var(--ve-hover);
}
.hf-ve-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.hf-ve-action {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ve-fg);
  background: var(--ve-hover);
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.hf-ve-action-label { grid-area: 1 / 1; }
.hf-ve-action-label[data-shown="false"] { visibility: hidden; }
.hf-ve-action:hover:not(:disabled) { background: var(--ve-line); }
.hf-ve-action:disabled { opacity: 0.4; cursor: default; }
.hf-ve-tune-foot .hf-ve-action { justify-content: center; white-space: nowrap; }
.hf-ve-action[data-primary="true"] { color: var(--ve-on-fg); background: var(--ve-on-bg); }
.hf-ve-action[data-primary="true"]:hover:not(:disabled) { background: var(--ve-on-bg); opacity: 0.88; }
.hf-ve-main { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1024px) {
  .hf-ve-main[data-tune="true"] { grid-template-columns: minmax(0, 1fr) 340px; }
}
.hf-ve-stage {
  overflow: hidden;
  border: 1px solid var(--ve-line);
  border-radius: 14px;
  background: var(--ve-surface);
}
.hf-ve-stage .hf-ve-preview { border: 0; border-radius: 0; }
.hf-ve-caption { padding: 10px 16px; font-size: 13px; color: var(--ve-muted); }
.hf-ve-caption span + span { margin-left: 16px; }
.hf-ve-tune {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--ve-line);
  border-radius: 14px;
  background: var(--ve-surface);
}
.hf-ve-tune-inner { display: flex; flex-direction: column; max-height: 520px; }
@media (min-width: 1024px) {
  .hf-ve-tune-inner { position: absolute; inset: 0; max-height: none; }
}
.hf-ve-tune-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ve-line);
  font-weight: 600;
}
.hf-ve-tune-head small { font-weight: 400; font-size: 13px; color: var(--ve-muted); }
.hf-ve-tune-list-wrap { position: relative; flex: 1; min-height: 0; display: flex; }
.hf-ve-tune-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  display: grid;
  gap: 16px;
  padding: 16px;
  align-content: start;
  mask-image: linear-gradient(to bottom, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.hf-ve-tune-more {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: var(--ve-hover);
  color: var(--ve-muted);
  pointer-events: none;
  animation: hf-ve-tune-more-pulse 1.6s ease-in-out infinite;
}
@keyframes hf-ve-tune-more-pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.55; transform: translateX(-50%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hf-ve-tune-more { animation: none; }
}
.hf-ve-tune-foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--ve-line);
}
.hf-ve-tabs-row { margin: 20px 0 0 16px; }
.hf-ve-tabs-row .hf-ve-tab { padding: 6px 16px; font-size: 14px; }
.hf-ve-tabs-row .hf-ve-tab small { margin-left: 6px; font-weight: 400; opacity: 0.7; }
.hf-ve-body { padding: 2rem 0 0 16px; }
.hf-ve-install { margin: 0 0 28px; }
.hf-ve-install-title { margin: 0 0 12px; font-size: 24px; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; color: var(--ve-fg); }
.hf-ve-about h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.hf-ve-about p { margin: 0 0 12px; line-height: 1.6; max-width: 72ch; }
.hf-ve-about .hf-ve-attr { font-size: 14px; color: var(--ve-muted); }
.hf-ve-about .hf-ve-attr a { color: var(--ve-fg); text-decoration: underline; }
.hf-ve-body-pane[hidden] { display: none; }
.hf-ve-slots > [data-slot] { display: none; }
.hf-ve-slots[data-tab="code"] > [data-slot="code"],
.hf-ve-slots[data-tab="docs"] > [data-slot="docs"] { display: block; }
.hf-ve-body-pane .code-block pre,
.hf-ve-slots [data-slot="code"] pre { max-height: 560px; overflow: auto; }
@media (max-width: 640px) {
  .hf-ve-actions { width: 100%; }
  .hf-ve-action { flex: 1 1 calc(50% - 8px); justify-content: center; }
}

`;
  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 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@latest/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 hasTune = variables.length > 0;
  const [tab, setTab] = useState("preview");
  const lines = meta.codeLines;
  const TABS = [["preview", "Preview"], ...hasCode ? [["code", "Code", lines ? `${lines} ln` : ""]] : [], ["install", "Snippet"], ["docs", "Docs"]];
  const changedValues = () => {
    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 changed;
  };
  const renderCommand = (() => {
    const changed = changedValues();
    const vars = Object.keys(changed).length ? ` --variables '${JSON.stringify(changed).replace(/'/g, "'\\''")}'` : "";
    return `# Run from the installed project's root.\nnpx hyperframes render --composition '${compositionSrc}'${vars}`;
  })();
  const agentRequest = (() => {
    const changed = changedValues();
    const base = `Install the HyperFrames catalog item "${compositionId}" (${title || compositionId}) into my project with \`npx hyperframes add ${compositionId}\`, mount it at the point of my composition where it should play, and verify with \`npx hyperframes check\`.`;
    const set = Object.entries(changed).map(([id, value]) => `${id} = ${JSON.stringify(value)}`);
    return set.length ? `${base} Set ${set.join(", ")}; keep the other variables at their defaults.` : `${base} Keep the default variables unless I say otherwise.`;
  })();
  const [copiedKey, setCopiedKey] = useState("");
  const copy = async (key, text) => {
    let ok = false;
    try {
      await navigator.clipboard.writeText(text);
      ok = true;
    } catch {
      const area = document.createElement("textarea");
      area.value = text;
      area.setAttribute("readonly", "");
      area.style.cssText = "position:fixed;opacity:0";
      document.body.appendChild(area);
      area.select();
      ok = document.execCommand("copy");
      area.remove();
    }
    if (!ok) return;
    setCopiedKey(key);
    setTimeout(() => setCopiedKey(current => current === key ? "" : current), 1400);
  };
  const CopyAction = ({id, label, text, primary}) => {
    const shown = copiedKey === id ? "Copied" : label;
    return <button type="button" className="hf-ve-action" data-primary={primary ? "true" : "false"} onClick={() => copy(id, typeof text === "function" ? text() : text)}>
        {[label, "Copied"].map(name => <span key={name} className="hf-ve-action-label" data-shown={String(name === shown)}>
            {name}
          </span>)}
      </button>;
  };
  const wiring = snippetLines.map(tokens => tokens.map(([, text]) => text).join("")).join("\n");
  const mountText = `${wiring}\n`;
  const flagNotice = needsFlag ? <div className="flex aspect-video w-full items-center justify-center text-sm text-zinc-500">
      Needs <code>chrome://flags/#{needsFlag}</code> to render live
    </div> : null;
  const player = <iframe ref={frame} srcDoc={bootstrap} className="hf-ve-preview block aspect-video w-full" title={`${compositionId} preview`} />;
  const recordedRef = useRef(null);
  const [reduced, setReduced] = useState(() => typeof window !== "undefined" && window.matchMedia("(prefers-reduced-motion: reduce)").matches);
  useEffect(() => {
    const query = window.matchMedia("(prefers-reduced-motion: reduce)");
    const onChange = event => setReduced(event.matches);
    query.addEventListener("change", onChange);
    return () => query.removeEventListener("change", onChange);
  }, []);
  useEffect(() => {
    const clip = recordedRef.current;
    if (!reduced || !clip) return;
    clip.pause();
    clip.removeAttribute("src");
    clip.load();
  }, [reduced]);
  const recorded = video ? <video ref={recordedRef} className="block aspect-video w-full object-cover" src={reduced ? undefined : video} poster={poster} autoPlay={!reduced} muted loop={!reduced} playsInline /> : null;
  const [hasAdapter, setHasAdapter] = useState(null);
  const hasWebgpuAdapter = (gpu, timeoutMs) => {
    const probe = new Promise(resolve => resolve(gpu?.requestAdapter())).then(adapter => Boolean(adapter), () => false);
    const timeout = new Promise(resolve => setTimeout(resolve, timeoutMs, false));
    return Promise.race([probe, timeout]);
  };
  useEffect(() => {
    if (webgpu) hasWebgpuAdapter(navigator.gpu, 3000).then(setHasAdapter);
  }, [webgpu]);
  const adapterMissing = webgpu && hasAdapter === false;
  const tunePanel = hasTune && !(webgpu && hasAdapter !== true);
  let webgpuStage = player;
  if (webgpu && hasAdapter === null) webgpuStage = <div className="aspect-video w-full" />;
  if (adapterMissing) webgpuStage = recorded;
  const stageNode = webgpu ? webgpuStage : (recorded ?? flagNotice) ?? player;
  let caption = "Live composition · HyperFrames Player";
  if (adapterMissing) caption = "Recorded preview · live playback needs WebGPU, which this browser does not offer"; else if (!webgpu && (video || needsFlag)) caption = "Recorded preview";
  const slotOf = node => {
    for (let cur = node; React.isValidElement(cur); cur = React.Children.toArray(cur.props.children)[0]) {
      if (cur.props.slot) return cur.props.slot;
    }
    return null;
  };
  const allSlots = React.Children.toArray(children);
  const installSlot = allSlots.find(child => slotOf(child) === "install") ?? null;
  const otherSlots = allSlots.filter(child => child !== installSlot);
  const seconds = meta.duration ? `${meta.duration} s` : null;
  const size = meta.width && meta.height ? `${meta.width}×${meta.height}` : null;
  return <div className="hf-ve my-4">
      <style dangerouslySetInnerHTML={{
    __html: CSS
  }} />

      <div className="not-prose">
        <header className="hf-ve-head-title">
          <h1>{title}</h1>
          {description && <p>{description}</p>}
        </header>
      </div>

      {installSlot && <div className="hf-ve-install">
          <h2 className="hf-ve-install-title">Install</h2>
          {installSlot}
        </div>}

      <div className="not-prose">

        <div className="hf-ve-bar">
          <div className="hf-ve-meta">
            {seconds && <span>
                <b>{seconds}</b> duration
              </span>}
            {size && <b>{size}</b>}
            {hasTune && <span>
                <b>{variables.length}</b> {variables.length === 1 ? "variable" : "variables"}
              </span>}
            {meta.category && <b>{meta.category}</b>}
            {meta.badge && <span className="hf-ve-badge">{meta.badge}</span>}
          </div>
          <div className="hf-ve-actions">
            <CopyAction id="agent" label="Copy agent request" text={agentRequest} primary />
            <CopyAction id="wiring" label="Copy wiring" text={mountText} />
            <CopyAction id="link" label="Copy link" text={() => window.location.href} />
            {rawUrl && <a className="hf-ve-action" href={rawUrl} target="_blank" rel="noopener noreferrer">
                Raw
              </a>}
          </div>
        </div>

        <div className="hf-ve-main" data-tune={tunePanel ? "true" : "false"}>
          <div className="hf-ve-stage">
            {stageNode}
            <div className="hf-ve-caption">
              {(seconds || size) && <span>{[seconds, size && `${size} preview`].filter(Boolean).join(" · ")}</span>}
              <span>{caption}</span>
            </div>
          </div>

          {tunePanel && <aside className="hf-ve-tune" aria-label="Tune">
              <div className="hf-ve-tune-inner">
                <div className="hf-ve-tune-head">
                  Tune <small>{variables.length} {variables.length === 1 ? "variable" : "variables"}</small>
                </div>
                <TuneList variables={variables} values={values} notes={notes} onValues={setValues} onNotes={setNotes} onTyping={setTyping} control={control} readout={readout} />
                <div className="hf-ve-tune-foot">
                  <button type="button" onClick={() => {
    setValues(defaults);
    setNotes({});
  }} disabled={!dirty} className="hf-ve-action">
                    Reset
                  </button>
                  <CopyAction id="json" label="Copy JSON" text={() => JSON.stringify(dirty ? changedValues() : defaults, null, 2)} />
                  <CopyAction id="render" label="Copy render cmd" text={renderCommand} />
                </div>
              </div>
            </aside>}
        </div>

        <div className="hf-ve-tabs hf-ve-tabs-row" role="tablist">
          {TABS.map(([id, label, note]) => <button key={id} type="button" role="tab" data-on={tab === id} aria-selected={tab === id} onClick={() => setTab(id)} className="hf-ve-tab hf-ve-tint">
              {label}
              {note ? <small>{note}</small> : null}
            </button>)}
        </div>
      </div>

      <div className="hf-ve-body">
        {}
        <div className="hf-ve-slots" data-tab={tab}>
          {otherSlots}
        </div>
        <div className="hf-ve-body-pane hf-ve-about not-prose" hidden={tab !== "preview"}>
          <h3>About</h3>
          {about && <p>{about}</p>}
          {attribution && <p className="hf-ve-attr">
              {attribution.author ? <>
                  Created by{" "}
                  {attribution.authorUrl ? <a href={attribution.authorUrl} target="_blank" rel="noopener noreferrer">
                      {attribution.author}
                    </a> : attribution.author}{" "}
                  ·{" "}
                </> : null}
              Registry item{" "}
              <a href={`https://github.com/heygen-com/hyperframes/tree/main/${attribution.path}`} target="_blank" rel="noopener noreferrer">
                heygen-com/hyperframes
              </a>{" "}
              · <code>{attribution.path}</code>
              {attribution.tags.length > 0 ? ` · ${attribution.tags.join(", ")}` : ""}
            </p>}
        </div>
        <div className="hf-ve-body-pane hf-ve-snippet not-prose" hidden={tab !== "install"}>
          {}
          <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>;
};

<CatalogDetail previewSrc="/public/catalog/blocks/ui-3d-reveal.json" compositionId="ui-3d-reveal" compositionSrc="compositions/ui-3d-reveal.html" title="3D UI Reveal" description="Perspective 3D reveal animation for UI elements" variables={[]} meta={{"duration":13,"width":1920,"height":1080,"category":"Showcases","badge":"Stable","codeLines":2764}} attribution={{"path":"registry/blocks/ui-3d-reveal","tags":["showcase","3d","reveal"]}} hasCode rawUrl="https://raw.githubusercontent.com/heygen-com/hyperframes/main/registry/blocks/ui-3d-reveal/ui-3d-reveal.html">
  <CatalogSlot slot="code">
    ```html ui-3d-reveal.html theme={null}
    <!doctype html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=1920, height=1080" />
        <title>ui-3d-reveal</title>
        <link rel="preconnect" href="https://fonts.googleapis.com" />
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
        <link
          href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=block"
          rel="stylesheet"
        />
        <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 {
            margin: 0;
            width: 1920px;
            height: 1080px;
            overflow: hidden;
            background-color: #0a0a0f;
          }
        </style>
      </head>
      <body>
        <div
          data-composition-id="ui-3d-reveal"
          data-width="1920"
          data-height="1080"
          data-start="0"
          data-duration="13"
        >
          <!-- Background: Figma outer canvas dark -->
          <div class="bg-base"></div>
          <div class="bg-glow" id="bgGlow"></div>

          <!-- ══════════════════════════════════════════
             INTRO: Figma logo stroke draw + fill
        ══════════════════════════════════════════ -->
          <div class="intro-layer" id="introLayer">
            <svg class="intro-svg" viewBox="0 0 1920 1080" xmlns="http://www.w3.org/2000/svg">
              <g class="intro-logo" transform="translate(865, 397.5)">
                <!-- Fill layer -->
                <path
                  class="il-fill il-fill-1"
                  d="M95 0H47.5C21.27 0 0 21.27 0 47.5S21.27 95 47.5 95H95V0Z"
                  fill="#F24E1E"
                  opacity="0"
                />
                <path
                  class="il-fill il-fill-2"
                  d="M95 0V95H142.5C168.73 95 190 73.73 190 47.5S168.73 0 142.5 0H95Z"
                  fill="#FF7262"
                  opacity="0"
                />
                <path
                  class="il-fill il-fill-3"
                  d="M95 95H47.5C21.27 95 0 116.27 0 142.5S21.27 190 47.5 190H95V95Z"
                  fill="#A259FF"
                  opacity="0"
                />
                <circle
                  class="il-fill il-fill-4"
                  cx="142.5"
                  cy="142.5"
                  r="47.5"
                  fill="#1ABCFE"
                  opacity="0"
                />
                <path
                  class="il-fill il-fill-5"
                  d="M47.5 190C21.27 190 0 211.27 0 237.5S21.27 285 47.5 285 95 263.73 95 237.5V190H47.5Z"
                  fill="#0ACF83"
                  opacity="0"
                />
                <!-- Stroke layer -->
                <path
                  class="il-stroke il-stroke-1"
                  d="M95 0H47.5C21.27 0 0 21.27 0 47.5S21.27 95 47.5 95H95V0Z"
                  fill="none"
                  stroke="#F24E1E"
                  stroke-width="2"
                />
                <path
                  class="il-stroke il-stroke-2"
                  d="M95 0V95H142.5C168.73 95 190 73.73 190 47.5S168.73 0 142.5 0H95Z"
                  fill="none"
                  stroke="#FF7262"
                  stroke-width="2"
                />
                <path
                  class="il-stroke il-stroke-3"
                  d="M95 95H47.5C21.27 95 0 116.27 0 142.5S21.27 190 47.5 190H95V95Z"
                  fill="none"
                  stroke="#A259FF"
                  stroke-width="2"
                />
                <circle
                  class="il-stroke il-stroke-4"
                  cx="142.5"
                  cy="142.5"
                  r="47.5"
                  fill="none"
                  stroke="#1ABCFE"
                  stroke-width="2"
                />
                <path
                  class="il-stroke il-stroke-5"
                  d="M47.5 190C21.27 190 0 211.27 0 237.5S21.27 285 47.5 285 95 263.73 95 237.5V190H47.5Z"
                  fill="none"
                  stroke="#0ACF83"
                  stroke-width="2"
                />
              </g>
            </svg>
          </div>

          <!-- 3D scene -->
          <div class="scene" id="scene">
            <div class="card-glow" id="cardGlow"></div>

            <div class="card-wrapper" id="cardWrapper">
              <!-- ═══════════════════════════════════════
                 FRONT FACE — Figma Interface
            ═══════════════════════════════════════ -->
              <div class="ui-card" id="uiCard">
                <!-- ── TOOLBAR ── -->
                <div class="fig-toolbar" id="figToolbar">
                  <!-- Left: logo + tools -->
                  <div class="tb-left">
                    <div class="fig-logo">
                      <svg width="18" height="26" viewBox="0 0 18 26" fill="none">
                        <rect x="0" y="0" width="9" height="9" rx="4.5" fill="#F24E1E" />
                        <rect x="9" y="0" width="9" height="9" rx="4.5" fill="#FF7262" />
                        <rect x="0" y="8.5" width="9" height="9" rx="4.5" fill="#A259FF" />
                        <circle cx="13.5" cy="13" r="4.5" fill="#1ABCFE" />
                        <rect x="0" y="17" width="9" height="9" rx="4.5" fill="#0ACF83" />
                      </svg>
                    </div>
                    <div class="tool-divider"></div>
                    <div class="tool-group">
                      <div class="tool-btn active" title="Move (V)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <path d="M2 2l5 12 2-4 4-2L2 2z" fill="currentColor" />
                        </svg>
                      </div>
                      <div class="tool-btn" title="Scale (K)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <path
                            d="M3 3l10 10M10 3h3v3M3 10H6"
                            stroke="currentColor"
                            stroke-width="1.5"
                            stroke-linecap="round"
                          />
                        </svg>
                      </div>
                      <div class="tool-divider"></div>
                      <div class="tool-btn" title="Frame (F)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <rect
                            x="2"
                            y="5"
                            width="12"
                            height="9"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.4"
                          />
                          <path
                            d="M5 5V3M11 5V3M5 14v2M11 14v2M2 8H0M14 8h2"
                            stroke="currentColor"
                            stroke-width="1.4"
                            stroke-linecap="round"
                          />
                        </svg>
                      </div>
                      <div class="tool-btn" title="Rectangle (R)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <rect
                            x="2"
                            y="4"
                            width="12"
                            height="9"
                            rx="1.5"
                            stroke="currentColor"
                            stroke-width="1.4"
                          />
                        </svg>
                      </div>
                      <div class="tool-btn" title="Text (T)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <path
                            d="M2 4h12M8 4v9M5 13h6"
                            stroke="currentColor"
                            stroke-width="1.5"
                            stroke-linecap="round"
                          />
                        </svg>
                      </div>
                      <div class="tool-btn" title="Pen (P)">
                        <svg viewBox="0 0 16 16" fill="none" width="14" height="14">
                          <path
                            d="M3 13L8 3l5 10M5.5 8.5h5"
                            stroke="currentColor"
                            stroke-width="1.4"
                            stroke-linecap="round"
                          />
                        </svg>
                      </div>
                    </div>
                  </div>

                  <!-- Center: file breadcrumb -->
                  <div class="tb-center">
                    <span class="file-name">App Redesign</span>
                    <span class="file-chevron">›</span>
                    <span class="file-page">Design System</span>
                    <svg class="file-arrow" viewBox="0 0 10 6" width="10" height="6" fill="none">
                      <path
                        d="M1 1l4 4 4-4"
                        stroke="currentColor"
                        stroke-width="1.4"
                        stroke-linecap="round"
                      />
                    </svg>
                  </div>

                  <!-- Right: mode tabs + share + avatars -->
                  <div class="tb-right">
                    <div class="mode-tabs">
                      <span class="mode-tab">Design</span>
                      <span class="mode-tab active">Dev</span>
                    </div>
                    <div class="share-btn">
                      <svg viewBox="0 0 16 16" fill="none" width="12" height="12">
                        <path
                          d="M4 8H12M9 5l3 3-3 3"
                          stroke="white"
                          stroke-width="1.5"
                          stroke-linecap="round"
                        />
                      </svg>
                      Share
                    </div>
                    <div class="avatar-cluster">
                      <div class="fig-avatar" style="background: #a259ff; z-index: 3">S</div>
                      <div
                        class="fig-avatar"
                        style="background: #f24e1e; z-index: 2; margin-left: -8px"
                      >
                        J
                      </div>
                      <div
                        class="fig-avatar"
                        style="background: #1abcfe; z-index: 1; margin-left: -8px"
                      >
                        K
                      </div>
                    </div>
                    <div class="present-btn">▶</div>
                  </div>
                </div>

                <!-- ── BODY ── -->
                <div class="fig-body">
                  <!-- LAYERS PANEL -->
                  <div class="fig-layers" id="figLayers">
                    <div class="panel-tabs">
                      <span class="ptab active">Layers</span>
                      <span class="ptab">Assets</span>
                    </div>

                    <div class="layer-search">
                      <svg viewBox="0 0 14 14" fill="none" width="12" height="12">
                        <circle cx="6" cy="6" r="4.5" stroke="currentColor" stroke-width="1.3" />
                        <path
                          d="M9.5 9.5l2.5 2.5"
                          stroke="currentColor"
                          stroke-width="1.3"
                          stroke-linecap="round"
                        />
                      </svg>
                      <span class="search-placeholder">Search layers</span>
                    </div>

                    <div class="layer-list">
                      <div class="layer-item page-item">
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <rect
                            x="1"
                            y="1"
                            width="8"
                            height="10"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                          <path
                            d="M3 4h5M3 7h3"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <span>Page 1</span>
                      </div>

                      <div class="layer-item frame-item expanded">
                        <svg class="li-collapse" viewBox="0 0 8 8" width="8" height="8" fill="none">
                          <path
                            d="M2 3l2 2 2-2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <svg
                          class="li-icon frame-icon"
                          viewBox="0 0 12 12"
                          fill="none"
                          width="12"
                          height="12"
                        >
                          <rect
                            x="2"
                            y="3"
                            width="8"
                            height="6"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                          <path
                            d="M4 3V1M8 3V1M4 9v2M8 9v2M2 6H0M10 6h2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <span>HeyGen — Home</span>
                      </div>

                      <div class="layer-item group-item indent-1">
                        <svg class="li-collapse" viewBox="0 0 8 8" width="8" height="8" fill="none">
                          <path
                            d="M2 3l2 2 2-2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <rect
                            x="1"
                            y="1"
                            width="10"
                            height="10"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Navigation</span>
                      </div>

                      <div class="layer-item comp-item indent-2">
                        <svg
                          class="li-icon comp-icon"
                          viewBox="0 0 12 12"
                          fill="none"
                          width="12"
                          height="12"
                        >
                          <path
                            d="M6 1L11 6 6 11 1 6z"
                            fill="none"
                            stroke="#A259FF"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Logo / Mark</span>
                      </div>

                      <div class="layer-item text-item indent-2">
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <path
                            d="M2 3h8M6 3v7M3 10h6"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <span>Nav Links</span>
                      </div>

                      <div class="layer-item comp-item indent-2 selected-layer" id="selectedLayer">
                        <svg
                          class="li-icon comp-icon"
                          viewBox="0 0 12 12"
                          fill="none"
                          width="12"
                          height="12"
                        >
                          <path
                            d="M6 1L11 6 6 11 1 6z"
                            fill="none"
                            stroke="#A259FF"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Create Card</span>
                      </div>

                      <div class="layer-item group-item indent-1 collapsed">
                        <svg
                          class="li-collapse"
                          viewBox="0 0 8 8"
                          width="8"
                          height="8"
                          fill="none"
                          style="transform: rotate(-90deg)"
                        >
                          <path
                            d="M2 3l2 2 2-2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <rect
                            x="1"
                            y="1"
                            width="10"
                            height="10"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Hero</span>
                      </div>

                      <div class="layer-item group-item indent-1 collapsed">
                        <svg
                          class="li-collapse"
                          viewBox="0 0 8 8"
                          width="8"
                          height="8"
                          fill="none"
                          style="transform: rotate(-90deg)"
                        >
                          <path
                            d="M2 3l2 2 2-2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <rect
                            x="1"
                            y="1"
                            width="10"
                            height="10"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Feature Grid</span>
                      </div>

                      <div class="layer-item group-item indent-1 collapsed">
                        <svg
                          class="li-collapse"
                          viewBox="0 0 8 8"
                          width="8"
                          height="8"
                          fill="none"
                          style="transform: rotate(-90deg)"
                        >
                          <path
                            d="M2 3l2 2 2-2"
                            stroke="currentColor"
                            stroke-width="1.2"
                            stroke-linecap="round"
                          />
                        </svg>
                        <svg class="li-icon" viewBox="0 0 12 12" fill="none" width="12" height="12">
                          <rect
                            x="1"
                            y="1"
                            width="10"
                            height="10"
                            rx="1"
                            stroke="currentColor"
                            stroke-width="1.2"
                          />
                        </svg>
                        <span>Footer</span>
                      </div>
                    </div>

                    <div class="page-bar">
                      <div class="pbar-tab active">Design System</div>
                      <div class="pbar-tab">Landing</div>
                      <div class="pbar-add">+</div>
                    </div>
                  </div>

                  <!-- CANVAS -->
                  <div class="fig-canvas" id="figCanvas">
                    <div class="canvas-frame-label">HeyGen — Home</div>

                    <!-- The artboard / HeyGen app.heygen.com — light mode -->
                    <div class="artboard" id="artboard">
                      <!-- ══ LEFT ICON NAV (56px) ══ -->
                      <div class="hg-icnav">
                        <div class="hg-iclogo">
                          <img
                            src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAYAAACohjseAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAOKADAAQAAAABAAAAOAAAAAANV2hTAAAM+0lEQVRoBe2ZeZAU1R3Hf6+n59zZ2WWQQ0MUgqCoq6iIgIKYAgoTExMPCGI8qqIUJpZHLINltNQylWiViUlKqxRTKB6UWwWFURQPXJVDUTSAinIootzsxVw93dPdL9/f6+ndddwZd5a1yj/2Vb199/F53987ppeo3/WvQP8K9K9A/wr8EFfgk3VJWvPC70jKgD+9hqVy08zlcsXcu2XCz/u+Q9HnAzQ2Rmnk0JVBcicTSaG1fva5OX3+8TzOyBekPTlJAWmR7WTpuacvFFf0+fglHWol6SNLfrz2LP34wQeD5EypEaaIaxZFaupHDFy+YBp37OTojVXtRIEI6aGBNPf3K+XBG16Spx/ZoJVb9x3g+tWnxc3smrgw43GtQBFhwlsUi8W1YDT5EE/jy9liRsQh13W9SQVqaVBNiN677Xl5Z+Vp9r60bwCbmuK1gdzbcS0fipBJYcpTGHBBhCGkY/H4Cckld/xYTTNPn77a1jlhVjOZoHsfeEmu6cztu1ifANbHM5viupUIQ7UwzJJ9qBgPijxFaiP6oPrAczzt7bPEKXUOSVYxg9HTOAX4GIrE6JxHXpctT66U4/sOj+iIAQe+v+yVRND6CQOFoBorxsoFNQ6RB9ggyqI1sTP8ExXVDrxSVFEAkEGz8BGNknqI1j79prynryCPCDC5ftkDdSFjRhgqKSiGBBiD+mmG1FEeqA+Hz3r51uU88RtH0LEJmyTHWUH27BjUFKTXW3TX8ib5bmOXK8arUf3fXgMOWf/snLqwdWuUlSqqx6rpSjXOAySXMTCrGEBYE5nKU5w3ThR0hzIvtHZOmOGUA3YO8YRBZydfp+ZlTfLczlrVx/xuq2o5ZF1jQ0I3FkcDOcFAvM88k0QIWF15T1Ud5hoommworsWnNF7xbx5sgkPDB+dI7jQ85TgvCyVz8NJBiDTWpP7otHxz+Yvyb1zeG1c14KCmh+N1kfbVsbCls/kxUJAVUqboKcZQCrSoroojL5nLky6dCE/0P7NEa9SmhbtbSO4xPTPNFN88OSHJwMykK0kWKDDMlH/671L3g8a7ZahayKoB62sCGxOhXJ2nVBEEk+d95oP4cAyqs9kKQ4VHWcJ9Y/aSa/1Jbpgj5h3l0kO7m0m+nSECF6WViQrAeSryIaTZRMcZ8ozEaGpe9JSc6rfvSVgV4Inv/mNlXU1+pLfXfJUQFpXyYLw0AytTVfAmDfgqTaaZ3Vg6qXdmi1tGmTQhnCH30XaSBh89UI5NFcjKVHOSM4mG2m7tKOmuemyx83eV0YM/qpse1KMx7zxwf20t3aYJV03cGx9HHgBgTPCIAwqBSnaNR/ZkqNCSbXvxsqXJSmOd95zcaAXp1B3o5Ryd6HL0Gy0QJaFgsCApCFW5eweyfGZra+deLb7zAOoR4Jg1f51dP8BeogtX8AisjHJYWVaN+diU+DBRM0ChAufet6ZlPms0vzb7xcFeo8p/N2yQwfu+oBVtQZqiB3DjoO9deLSfDMhbspL4Z4i3nOhaik2zr9LGVurxOwEb1t3bEIu6H8ailo6LWvXVAciwSkFvCF0DIKpI1HN3p8hoTrua7b62au7rMytNolJZU5OMPHWQHmwN0+U5nRImlG0TUgzJSbEgRbRZaM/cfGX5XyUVAac2Xh83RiZ2x2JaXYfJYTZ8iDCEUrOLauahNkrvOezaOdMICu2tdVeu/nmlyZcrG7u56epkMHxJi+00bmqY/FRpvcsfl1P2D6CFIkLDwyna8NIccU5pHT9dEXDSezdvrUmI0Wx+DFgUEGbpKcWdFHIZOrRjt7Qylilsua22JnLB2jlr9/oDVBuO/2jV50Pq3RHtgcNC4FYwCpFC2rSa05bcmnHD6w5njUU06SJs0565soAT3rr+vvqjxR2iwyw7DxByLdq7dRdl21Kmlcvvj+iB+Vuu2/KyP+SKhw8OPYYijyQjofEREaiz8LRut52WVst59rwbav/s1ysNj12/7KMRR4tTHDxz+Jnsqqcyrgzsbldq2IkBMt0wZU3XMB13d8HRNxYovKJlzMQnS/vy02UBp6y75mDdIDFIVYQ1asKm5l37qG1/m51Pp9twJ/9z+/ytf/E7arp7Z2TQ0IH/SoZCM+qDwWFhVyte234NIgu325ac8XU0Hpt40m/Fvs4SxF5ddOfY4TX31MQDOFd0D473M6D4Scqhq75+4PIvlnMosU8OZZ3/7Rs96Yxv9FdMYMt27wIil9Dwyy7TmqJDX+53cql0RhQKq7Zfv+2Sri12Pm7cVavrv4kFAqPCLl5u7Io/aLvW43iIhDY2Fjvu47zxIfbwMCEES6VcfSxwUywe4kuoQy0+miWUc6GgendDDoZUirLCiPP2iYSCDX4/pWFZwJbPv1i8d4v5K9uydkV1/cId135ywG+854nMNXEKzw/pgdNCrghhxLJQfhsOfe5RkejQ9xfl2KRnqPKVz0wbnIwOcLDnlGJKNU89z0xZKZzMrqekb7JYIHIA77h4GZRxZQE3X/H+dWjDXjljsfwpPhfdrkkxKeBSjO8n9N5jx3B8QfOe4KZH6cGJfmPh5m9MJAbilmX1PMv2IDy1GI7TvpmqRVD9eHvTtPPNfl+lYVlArggzClhL6AlN0i9hTAlhl92ypf12pJVqaObA465WJoXHCSWCwZo1j7Yee+685Fe6rv9IinDR/Lw95pshd+TF/YOGr+MiMB8+8GZBWQNX/ZarCGgvoY/0Ao35VqseZEgAKZF9MLRhBdnZCAEpDCEnIPmVoGDQ4R2KBE+YzdLfXwzn8AmKUEJhH07VQ37eLBTaA7GbuN/uXFnAzPNyCKWqh+sAK47GVszC82FQYEBQF4pxKBdS1TQdm0hT+0kdItiDXN8uXg3qkGFAtGV4/xR1cCBl86kH6eRT08XhvhWUBXQ1GoAxqnIMx2bIUqjtyWn2XcC4TCmI0CQ7yNWhDn7jhpR63j7zpOa4Uzw1uZ5StnhFcDybTm9Ln3zq7VxWznk9dVOa+IX4zFGv524KS7J4n/lwvNfYs0oMp9TiECMpMIQcZ69rAfyFw2raEp+LAcmhCzAb8YLKQxrqcZzzbABy3DRt27Lz01T7Cn+8AcpUwKn8RJkilY3fFhjc21smevLV4kOEYQzYhw/DoYX6nMdhAYelVXA9ExWaUlDB8Z4DiINvBL6qDMVpW3mUQdVcLrvAaGj4utL8uKwiYHS2mG9FaGdpJ75ibIZ8cHDIUBxXymHyCgh5vjn66uGrGVkMy+0CQpkoFHQZRh0orBIUYpW+oRyuW6Ui9mU2k95gNJzwILr/Tld2D/otI4JOzEZpdSRP4/nuY1NkE+TDwj88lHKcB8+A6kApxrkfhu3I8645/jwIU8TdACc1fpoVT08VohIG40uczVVd5gDj/s28aRgH3OncricOrSo7MUtY8Vni7FSU7sdvMZcPEfZKObRmOGVyiCv1EKo08n3V2BwZiM1YeW7DKgeKJkpBxze/TuU8xSwoyd4BqIlDwUpnrqXzR7RXnnVnKYbsmUteJha0xmgG1MwwHIMxUA4TZZAOGMQ5T5koQjZFhsvCGBmU89X+Q+gS7A5OQl4GLEgd/TIYDhJYL38nt5C2sZNMQBqH215zTh/+TM9m7NXCMD13w34tVrVLGtYapU954mqyDIo4q8aQHPp7jMF8GAWKcl9FTtv+BnGFZJUK6nCBSoBiIHy+Aiwuc4RWLnuYGo75Wc9n69XEMNW5kbPE4REXi5PaYvSYGcRnS54oe1arCKuUYrXgfUgGUwuBkM2TAWVQVy85vtMKgOK9ZkK9PODwHVylCzhBpYN3gJGahY2srtlqZoxheudGXyTmpWN0qYH/lzFYVxCG8RVTMAzEsMjvKON0kL94shPSxtFvwiwZjKFgvsqr4raWJTT22FdVvMo/vQbkcRouEMtagzQiE6NdJiac4XuPYYogrBjnMTz7Dljkc7yg4xkPxy8ZfEXFYeKBcV6HS6X20+lD53akq4wcESCPNWWm2DfuAjE8E6WlecAwnG+KSq0icFcFUzhw8qgno5p60eF3MJ6Z3UylYLmUyvbqw5W/Dt306hdVF54/XVxqRui6fJgKHWaI3pVZArIDFnG+R9UrKKypPchPtW5da/tDNPGYD7st62FmmZ572Lqk2sypYmE2RKdYUTrAQOqQQeibJqumHgnFdkIvAqorvKSztvYdNG7IH0tyq072KSCPfvFksQ1+aD5Gq/gjLcP5YKxaV+eKIqDo8vWYKxhGjkL2eV3r9jbe54D+ROZOEtPwWL8d54ZTCqbqANaJkmd+heD9ZOS8/ZhKtWLfTaYTB+31+zqSsGRNj6Sr7tsu/ECeiXfYcvxcGMbvV9/hl+D2G8aL0X6aVm8+kwI102nSyF7/s7Ojry6R7x3QH+vhD+RMfBO8Ck+8ITCb9/4wTizwy/rD/hXoX4H+FehfgR/qCvwfTSeznkI0t8oAAAAASUVORK5CYII="
                            width="30"
                            height="30"
                            style="display: block"
                            alt="HeyGen"
                          />
                        </div>
                        <div class="hg-icitem">
                          <svg viewBox="0 0 16 16" fill="none" width="16" height="16">
                            <circle cx="8" cy="5.5" r="2.8" stroke="currentColor" stroke-width="1.3" />
                            <path
                              d="M2 14.5c0-3.31 2.69-6 6-6s6 2.69 6 6"
                              stroke="currentColor"
                              stroke-width="1.3"
                              stroke-linecap="round"
                            />
                          </svg>
                          <span>Avatar</span>
                        </div>
                        <div class="hg-icitem hg-icactive">
                          <div class="hg-icbg">
                            <svg viewBox="0 0 16 16" fill="none" width="15" height="15">
                              <circle cx="8" cy="5.5" r="2.5" stroke="white" stroke-width="1.3" />
                              <path
                                d="M2.5 14c0-3.04 2.46-5.5 5.5-5.5s5.5 2.46 5.5 5.5"
                                stroke="white"
                                stroke-width="1.3"
                                stroke-linecap="round"
                              />
                            </svg>
                          </div>
                          <span>Video Agent</span>
                        </div>
                        <div class="hg-icitem">
                          <svg viewBox="0 0 16 16" fill="none" width="16" height="16">
                            <path
                              d="M3 4l3 8M10 4l3 8M6 10h4"
                              stroke="currentColor"
                              stroke-width="1.4"
                              stroke-linecap="round"
                            />
                          </svg>
                          <span>Motion Cut</span>
                        </div>
                        <div class="hg-icitem">
                          <svg viewBox="0 0 16 16" fill="none" width="16" height="16">
                            <path
                              d="M2 4h12M8 4v9M5 13h6"
                              stroke="currentColor"
                              stroke-width="1.4"
                              stroke-linecap="round"
                            />
                            <circle cx="12" cy="3" r="1.5" fill="#3B82F6" />
                          </svg>
                          <span>Translate</span>
                        </div>
                        <div class="hg-icitem">
                          <svg viewBox="0 0 16 16" fill="none" width="16" height="16">
                            <rect
                              x="2"
                              y="2"
                              width="5"
                              height="5"
                              rx="1.5"
                              fill="currentColor"
                              opacity="0.45"
                            />
                            <rect
                              x="9"
                              y="2"
                              width="5"
                              height="5"
                              rx="1.5"
                              fill="currentColor"
                              opacity="0.45"
                            />
                            <rect
                              x="2"
                              y="9"
                              width="5"
                              height="5"
                              rx="1.5"
                              fill="currentColor"
                              opacity="0.45"
                            />
                            <rect
                              x="9"
                              y="9"
                              width="5"
                              height="5"
                              rx="1.5"
                              fill="currentColor"
                              opacity="0.45"
                            />
                          </svg>
                          <span>Apps</span>
                        </div>
                        <div class="hg-icitem">
                          <svg viewBox="0 0 16 16" fill="none" width="16" height="16">
                            <path
                              d="M2 6a2 2 0 012-2h2l2 2h4a2 2 0 012 2v4a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"
                              stroke="currentColor"
                              stroke-width="1.3"
                            />
                          </svg>
                          <span>Projects</span>
                        </div>
                        <div class="hg-icuser">J</div>
                      </div>

                      <!-- ══ HISTORY PANEL (105px) ══ -->
                      <div class="hg-histpanel">
                        <div class="hg-histhead">
                          <span>Video Agent</span>
                          <svg viewBox="0 0 14 14" fill="none" width="12" height="12">
                            <rect
                              x="1"
                              y="1"
                              width="4.5"
                              height="12"
                              rx="1"
                              stroke="currentColor"
                              stroke-width="1.2"
                            />
                            <rect
                              x="8.5"
                              y="1"
                              width="4.5"
                              height="12"
                              rx="1"
                              stroke="currentColor"
                              stroke-width="1.2"
                            />
                          </svg>
                        </div>
                        <div class="hg-newitem">
                          <svg viewBox="0 0 12 12" fill="none" width="11" height="11">
                            <path
                              d="M1 6.5L6 1.5l5 5V11H7.5V8H4.5v3H1V6.5Z"
                              fill="#3B82F6"
                              fill-opacity="0.85"
                            />
                          </svg>
                          New video
                        </div>
                        <div class="hg-histcat">YESTERDAY</div>
                        <div class="hg-histrow">AI Skills Gap: Alien</div>
                        <div class="hg-histcat">PREVIOUS 3 DAYS</div>
                        <div class="hg-histrow">AI Skills Gap: Alien</div>
                        <div class="hg-histrow">Product Strategy: An AI...</div>
                        <div class="hg-histrow">S9</div>
                        <div class="hg-histrow">S7</div>
                        <div class="hg-histrow">S5</div>
                        <div class="hg-histrow">S3</div>
                        <div class="hg-histcat">PREVIOUS 7 DAYS</div>
                        <div class="hg-histrow">S8 lock</div>
                        <div class="hg-histrow">S4</div>
                        <div class="hg-histrow">S2</div>
                        <div class="hg-histrow">Moody t2</div>
                      </div>

                      <!-- ══ MAIN CONTENT (359px) ══ -->
                      <div class="hg-maincnt">
                        <!-- Top-right icon cluster -->
                        <div class="hg-toprighticons">
                          <div class="hg-ticon">
                            <svg viewBox="0 0 14 14" fill="none" width="11" height="11">
                              <circle cx="6" cy="6" r="4.5" stroke="currentColor" stroke-width="1.3" />
                              <path
                                d="M9.5 9.5l2.5 2.5"
                                stroke="currentColor"
                                stroke-width="1.3"
                                stroke-linecap="round"
                              />
                            </svg>
                          </div>
                          <div class="hg-ticon hg-notifico">
                            <svg viewBox="0 0 14 14" fill="none" width="11" height="11">
                              <path
                                d="M7 1.5a4 4 0 00-4 4v3l-1 2h10l-1-2v-3a4 4 0 00-4-4z"
                                stroke="currentColor"
                                stroke-width="1.2"
                              />
                              <path
                                d="M5.5 10.5a1.5 1.5 0 003 0"
                                stroke="currentColor"
                                stroke-width="1.2"
                              />
                            </svg>
                            <div class="hg-notifbadge">99+</div>
                          </div>
                          <div class="hg-ticon">
                            <svg viewBox="0 0 14 14" fill="none" width="11" height="11">
                              <path
                                d="M7 2l1.2 3.8H12L9 8.2l1.2 3.8L7 9.5l-3.2 2.5L5 8.2 2 5.8h3.8z"
                                stroke="currentColor"
                                stroke-width="1.1"
                              />
                            </svg>
                          </div>
                        </div>

                        <!-- Hero heading -->
                        <div class="hg-herotitle">Turn your ideas into<br />production-ready video</div>

                        <!-- ─ Create card ─ -->
                        <div class="hg-createcard" id="hgCreateCard">
                          <!-- Selector row: Avatar | Voice | Style -->
                          <div class="hg-selrow">
                            <div class="hg-sel">
                              <span class="hg-sellbl">Avatar</span>
                              <div class="hg-selbox">
                                <div class="hg-avphoto"></div>
                                <span class="hg-seltxt">Jordan</span>
                              </div>
                            </div>
                            <div class="hg-seldiv"></div>
                            <div class="hg-sel">
                              <span class="hg-sellbl">Voice</span>
                              <div class="hg-selbox">
                                <div class="hg-voicebars">
                                  <div class="hg-vbar" style="height: 5px"></div>
                                  <div class="hg-vbar" style="height: 9px"></div>
                                  <div class="hg-vbar" style="height: 7px"></div>
                                  <div class="hg-vbar" style="height: 11px"></div>
                                  <div class="hg-vbar" style="height: 5px"></div>
                                </div>
                                <span class="hg-seltxt">Auto</span>
                              </div>
                            </div>
                            <div class="hg-seldiv"></div>
                            <div class="hg-sel">
                              <span class="hg-sellbl">Style</span>
                              <div class="hg-selbox">
                                <div class="hg-styleico">
                                  <svg viewBox="0 0 14 14" fill="none" width="12" height="12">
                                    <rect
                                      x="1"
                                      y="1"
                                      width="12"
                                      height="12"
                                      rx="2"
                                      stroke="currentColor"
                                      stroke-width="1.2"
                                    />
                                    <path
                                      d="M4.5 7l2 2 3-3"
                                      stroke="currentColor"
                                      stroke-width="1.2"
                                      stroke-linecap="round"
                                    />
                                  </svg>
                                </div>
                                <span class="hg-seltxt">Auto</span>
                              </div>
                            </div>
                            <div class="hg-settico">
                              <svg viewBox="0 0 14 14" fill="none" width="13" height="13">
                                <circle cx="7" cy="7" r="2" stroke="currentColor" stroke-width="1.2" />
                                <path
                                  d="M7 1.5V3M7 11v1.5M1.5 7H3M11 7h1.5M3.4 3.4l1 1M9.6 9.6l1 1M3.4 10.6l1-1M9.6 4.4l1-1"
                                  stroke="currentColor"
                                  stroke-width="1.2"
                                  stroke-linecap="round"
                                />
                              </svg>
                            </div>
                          </div>
                          <!-- Input -->
                          <div class="hg-cinput">Describe your video idea ...</div>
                          <!-- Bottom bar -->
                          <div class="hg-cbottom">
                            <div class="hg-cbleft">
                              <div class="hg-cbtn">
                                <svg viewBox="0 0 12 12" fill="none" width="11" height="11">
                                  <path
                                    d="M6 2v8M2 6h8"
                                    stroke="currentColor"
                                    stroke-width="1.4"
                                    stroke-linecap="round"
                                  />
                                </svg>
                              </div>
                              <div class="hg-cbtn">
                                <svg viewBox="0 0 12 12" fill="none" width="11" height="11">
                                  <path
                                    d="M6 1.5l1 3H10L7.5 6.5l1 3L6 8 3.5 9.5l1-3L2 4.5H5z"
                                    fill="#9CA3AF"
                                  />
                                </svg>
                              </div>
                              <div class="hg-cbtn">
                                <svg viewBox="0 0 12 12" fill="none" width="11" height="11">
                                  <path
                                    d="M1.5 3h9M1.5 6h9M1.5 9h6"
                                    stroke="currentColor"
                                    stroke-width="1.3"
                                    stroke-linecap="round"
                                  />
                                </svg>
                              </div>
                            </div>
                            <div class="hg-cbright">
                              <div class="hg-genbtn">
                                <svg viewBox="0 0 10 10" fill="none" width="9" height="9">
                                  <path d="M5 1l1 3h3L7 6l1 3L5 7.5 2 9l1-3L1 4h3z" fill="#6B7280" />
                                </svg>
                                Generate
                                <svg viewBox="0 0 8 6" fill="none" width="8" height="6">
                                  <path
                                    d="M1 1l3 3 3-3"
                                    stroke="#6B7280"
                                    stroke-width="1.3"
                                    stroke-linecap="round"
                                  />
                                </svg>
                              </div>
                              <div class="hg-submitbtn">
                                <svg viewBox="0 0 12 12" fill="none" width="10" height="10">
                                  <path
                                    d="M6 9V3M3 6l3-3 3 3"
                                    stroke="white"
                                    stroke-width="1.5"
                                    stroke-linecap="round"
                                    stroke-linejoin="round"
                                  />
                                </svg>
                              </div>
                            </div>
                          </div>
                        </div>

                        <!-- Styles from community -->
                        <div class="hg-stylessec">
                          <div class="hg-stitle">Styles from the community</div>
                          <div class="hg-spills">
                            <div class="hg-spill hg-spactive">All Styles</div>
                            <div class="hg-spill">Retro Tech</div>
                            <div class="hg-spill">Iconic Artist</div>
                            <div class="hg-spill">Pop Culture</div>
                            <div class="hg-spill">Print</div>
                            <div class="hg-spill">Cinematic</div>
                          </div>
                          <div class="hg-scards">
                            <div
                              class="hg-sc"
                              style="background: linear-gradient(135deg, #1b2a5e, #2d4a9a)"
                            >
                              <span class="hg-sclbl">IMPLEMENTATION DEPTH</span>
                            </div>
                            <div
                              class="hg-sc"
                              style="background: linear-gradient(160deg, #c9ad88, #b89668)"
                            >
                              <span
                                class="hg-sclbl"
                                style="font-style: italic; color: #3d2810; font-size: 5.5px"
                                >Strategy means saying NO</span
                              >
                            </div>
                            <div
                              class="hg-sc"
                              style="
                                background: #ede9e0;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                              "
                            >
                              <span style="color: #cc4422; font-size: 14px; font-weight: 700">?</span>
                            </div>
                            <div
                              class="hg-sc"
                              style="background: linear-gradient(135deg, #8b1515, #c92020)"
                            >
                              <span class="hg-sclbl" style="color: #ffd9a0; font-size: 5px"
                                >THINK BIG.<br />START SMALL.</span
                              >
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>

                    <!-- Figma selection handles on the first video card -->
                    <div class="selection-ring" id="selectionRing">
                      <div class="sel-handle tl"></div>
                      <div class="sel-handle tr"></div>
                      <div class="sel-handle bl"></div>
                      <div class="sel-handle br"></div>
                      <div class="sel-label">Create Card · W 322 H 110</div>
                    </div>
                  </div>

                  <!-- DESIGN PROPERTIES PANEL -->
                  <div class="fig-props" id="figProps">
                    <div class="panel-tabs">
                      <span class="ptab active">Design</span>
                      <span class="ptab">Prototype</span>
                      <span class="ptab">Inspect</span>
                    </div>

                    <!-- Alignment row -->
                    <div class="prop-align">
                      <div class="align-btn">⬓</div>
                      <div class="align-btn">⬒</div>
                      <div class="align-btn active-align">⬔</div>
                      <div class="align-divider"></div>
                      <div class="align-btn">⬕</div>
                      <div class="align-btn">⬗</div>
                    </div>

                    <!-- Frame section -->
                    <div class="prop-section">
                      <div class="prop-row-2">
                        <div class="prop-field">
                          <span class="prop-pre">W</span>
                          <span class="prop-val">108</span>
                        </div>
                        <div class="prop-field">
                          <span class="prop-pre">H</span>
                          <span class="prop-val">34</span>
                        </div>
                      </div>
                      <div class="prop-row-2">
                        <div class="prop-field">
                          <span class="prop-pre">X</span>
                          <span class="prop-val">1244</span>
                        </div>
                        <div class="prop-field">
                          <span class="prop-pre">Y</span>
                          <span class="prop-val">18</span>
                        </div>
                      </div>
                      <div class="prop-row-2">
                        <div class="prop-field">
                          <span class="prop-pre">↺</span>
                          <span class="prop-val">0°</span>
                        </div>
                        <div class="prop-field">
                          <span class="prop-pre">⌐</span>
                          <span class="prop-val">8</span>
                        </div>
                      </div>
                    </div>

                    <!-- Auto layout -->
                    <div class="prop-section">
                      <div class="prop-section-head">
                        <span class="prop-section-label">Auto layout</span>
                        <span class="prop-section-icon">−</span>
                      </div>
                      <div class="prop-row-2">
                        <div class="prop-field">
                          <span class="prop-pre">→</span>
                          <span class="prop-val">12px</span>
                        </div>
                        <div class="prop-field">
                          <span class="prop-pre">⊡</span>
                          <span class="prop-val">14 / 8</span>
                        </div>
                      </div>
                    </div>

                    <!-- Fill -->
                    <div class="prop-section">
                      <div class="prop-section-head">
                        <span class="prop-section-label">Fill</span>
                        <span class="prop-section-icon">+</span>
                      </div>
                      <div class="fill-row">
                        <div class="fill-preview" style="background: #ffffff"></div>
                        <span class="fill-hex">FFFFFF</span>
                        <span class="fill-pct">100%</span>
                      </div>
                    </div>

                    <!-- Stroke -->
                    <div class="prop-section">
                      <div class="prop-section-head">
                        <span class="prop-section-label">Stroke</span>
                        <span class="prop-section-icon">+</span>
                      </div>
                      <div class="fill-row muted">
                        <span class="prop-empty">No strokes</span>
                      </div>
                    </div>

                    <!-- Effects -->
                    <div class="prop-section">
                      <div class="prop-section-head">
                        <span class="prop-section-label">Effects</span>
                        <span class="prop-section-icon">+</span>
                      </div>
                      <div class="effect-row">
                        <div class="effect-dot"></div>
                        <span class="effect-name">Drop shadow</span>
                      </div>
                    </div>

                    <!-- Export -->
                    <div class="prop-section">
                      <div class="prop-section-head">
                        <span class="prop-section-label">Export</span>
                        <span class="prop-section-icon">+</span>
                      </div>
                    </div>
                  </div>
                </div>
                <!-- /fig-body -->
              </div>
              <!-- /ui-card -->

              <!-- RIGHT DEPTH FACE -->
              <div class="depth-right" id="depthRight"></div>
            </div>
            <!-- /card-wrapper -->
          </div>
          <!-- /scene -->

          <!-- ══════════════════════════════════════════
             OUTRO: Logo rebuild + tagline + URL pill
        ══════════════════════════════════════════ -->
          <div class="outro-layer" id="outroLayer">
            <svg class="outro-svg" viewBox="0 0 1920 1080" xmlns="http://www.w3.org/2000/svg">
              <g class="outro-logo" transform="translate(880, 310)">
                <!-- Fill layer -->
                <path
                  class="ol-fill ol-fill-1"
                  d="M80 0H40C17.9 0 0 17.9 0 40S17.9 80 40 80H80V0Z"
                  fill="#F24E1E"
                  opacity="0"
                />
                <path
                  class="ol-fill ol-fill-2"
                  d="M80 0V80H120C142.1 80 160 62.1 160 40S142.1 0 120 0H80Z"
                  fill="#FF7262"
                  opacity="0"
                />
                <path
                  class="ol-fill ol-fill-3"
                  d="M80 80H40C17.9 80 0 97.9 0 120S17.9 160 40 160H80V80Z"
                  fill="#A259FF"
                  opacity="0"
                />
                <circle class="ol-fill ol-fill-4" cx="120" cy="120" r="40" fill="#1ABCFE" opacity="0" />
                <path
                  class="ol-fill ol-fill-5"
                  d="M40 160C17.9 160 0 177.9 0 200S17.9 240 40 240 80 222.1 80 200V160H40Z"
                  fill="#0ACF83"
                  opacity="0"
                />
                <!-- Stroke layer -->
                <path
                  class="ol-stroke ol-stroke-1"
                  d="M80 0H40C17.9 0 0 17.9 0 40S17.9 80 40 80H80V0Z"
                  fill="none"
                  stroke="#F24E1E"
                  stroke-width="2"
                />
                <path
                  class="ol-stroke ol-stroke-2"
                  d="M80 0V80H120C142.1 80 160 62.1 160 40S142.1 0 120 0H80Z"
                  fill="none"
                  stroke="#FF7262"
                  stroke-width="2"
                />
                <path
                  class="ol-stroke ol-stroke-3"
                  d="M80 80H40C17.9 80 0 97.9 0 120S17.9 160 40 160H80V80Z"
                  fill="none"
                  stroke="#A259FF"
                  stroke-width="2"
                />
                <circle
                  class="ol-stroke ol-stroke-4"
                  cx="120"
                  cy="120"
                  r="40"
                  fill="none"
                  stroke="#1ABCFE"
                  stroke-width="2"
                />
                <path
                  class="ol-stroke ol-stroke-5"
                  d="M40 160C17.9 160 0 177.9 0 200S17.9 240 40 240 80 222.1 80 200V160H40Z"
                  fill="none"
                  stroke="#0ACF83"
                  stroke-width="2"
                />
              </g>

              <!-- Tagline — individual tspan letters for stagger -->
              <text class="outro-tagline" x="960" y="648" text-anchor="middle">
                <tspan class="otl">N</tspan>
                <tspan class="otl">o</tspan>
                <tspan class="otl">t</tspan>
                <tspan class="otl">h</tspan>
                <tspan class="otl">i</tspan>
                <tspan class="otl">n</tspan>
                <tspan class="otl">g</tspan>
                <tspan class="otl"></tspan>
                <tspan class="otl">g</tspan>
                <tspan class="otl">r</tspan>
                <tspan class="otl">e</tspan>
                <tspan class="otl">a</tspan>
                <tspan class="otl">t</tspan>
                <tspan class="otl"></tspan>
                <tspan class="otl">i</tspan>
                <tspan class="otl">s</tspan>
                <tspan class="otl"></tspan>
                <tspan class="otl">m</tspan>
                <tspan class="otl">a</tspan>
                <tspan class="otl">d</tspan>
                <tspan class="otl">e</tspan>
                <tspan class="otl"></tspan>
                <tspan class="otl">a</tspan>
                <tspan class="otl">l</tspan>
                <tspan class="otl">o</tspan>
                <tspan class="otl">n</tspan>
                <tspan class="otl">e</tspan>
                <tspan class="otl">.</tspan>
              </text>

              <!-- URL pill -->
              <rect
                class="url-border"
                x="885"
                y="688"
                width="150"
                height="40"
                rx="20"
                fill="none"
                stroke="#3C3C3C"
                stroke-width="1.5"
              />
              <rect
                class="url-bg"
                x="885"
                y="688"
                width="150"
                height="40"
                rx="20"
                fill="#2C2C2C"
                opacity="0"
              />
              <text
                class="url-text"
                x="960"
                y="713"
                text-anchor="middle"
                fill="#868686"
                font-size="16"
                font-weight="400"
                opacity="0"
              >
                figma.com
              </text>
            </svg>
          </div>

          <!-- Fade to black -->
          <div class="outro-fade" id="outroFade"></div>

          <style>
            @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

            /*
            Figma palette:
            canvas-bg:    #1E1E1E
            panel-bg:     #2C2C2C
            panel-dark:   #252525
            toolbar:      #2C2C2C
            divider:      rgba(255,255,255,0.1)
            text:         #E8E8E8
            text-muted:   #868686
            text-dim:     #555555
            selected-bg:  rgba(24,160,251,0.14)
            blue:         #18A0FB
            purple:       #A259FF
            green:        #0ACF83
            red:          #F24E1E
            orange:       #FF7262
          */

            [data-composition-id="ui-3d-reveal"] {
              position: relative;
              width: 1920px;
              height: 1080px;
              overflow: hidden;
              font-family: "Inter", sans-serif;
              background: #111111;
            }

            /* ── Background ── */
            [data-composition-id="ui-3d-reveal"] .bg-base {
              position: absolute;
              inset: 0;
              background: #111111;
            }

            [data-composition-id="ui-3d-reveal"] .bg-glow {
              position: absolute;
              inset: 0;
              background:
                radial-gradient(
                  ellipse 900px 600px at 50% 52%,
                  rgba(24, 160, 251, 0.06) 0%,
                  transparent 65%
                ),
                radial-gradient(
                  ellipse 500px 300px at 20% 75%,
                  rgba(162, 89, 255, 0.04) 0%,
                  transparent 60%
                );
              pointer-events: none;
            }

            /* ── Scene ── */
            [data-composition-id="ui-3d-reveal"] .scene {
              position: absolute;
              inset: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              perspective: 2800px;
              perspective-origin: 50% 50%;
            }

            [data-composition-id="ui-3d-reveal"] .card-glow {
              position: absolute;
              width: 1200px;
              height: 780px;
              border-radius: 24px;
              background: radial-gradient(
                ellipse at 50% 50%,
                rgba(24, 160, 251, 0.18) 0%,
                transparent 65%
              );
              filter: blur(50px);
              pointer-events: none;
              opacity: 0;
            }

            [data-composition-id="ui-3d-reveal"] .card-wrapper {
              position: relative;
              transform-style: preserve-3d;
              will-change: transform;
            }

            /* ── Front face ── */
            [data-composition-id="ui-3d-reveal"] .ui-card {
              width: 1100px;
              height: 680px;
              background: #1e1e1e;
              border-radius: 12px;
              overflow: hidden;
              border: 1px solid rgba(255, 255, 255, 0.1);
              position: relative;
              box-shadow:
                inset -1px 0 0 rgba(24, 160, 251, 0.2),
                0 40px 120px rgba(0, 0, 0, 0.7);
            }

            /* ── Depth face ── */
            [data-composition-id="ui-3d-reveal"] .depth-right {
              position: absolute;
              top: 12px;
              left: 1100px;
              width: 10px;
              height: 656px;
              transform-origin: 0% 50%;
              transform: rotateY(90deg);
              background: linear-gradient(
                to right,
                rgba(80, 160, 255, 0.4) 0%,
                rgba(40, 100, 200, 0.2) 40%,
                rgba(10, 20, 50, 0.9) 100%
              );
              border-radius: 3px 2px 2px 3px;
            }

            /* ═══════════════════════════
             TOOLBAR
          ═══════════════════════════ */
            [data-composition-id="ui-3d-reveal"] .fig-toolbar {
              height: 48px;
              background: #2c2c2c;
              border-bottom: 1px solid rgba(255, 255, 255, 0.08);
              display: flex;
              align-items: center;
              padding: 0 12px;
              gap: 0;
              flex-shrink: 0;
              position: relative;
              z-index: 2;
            }

            [data-composition-id="ui-3d-reveal"] .tb-left {
              display: flex;
              align-items: center;
              gap: 8px;
              flex: 0 0 auto;
            }

            [data-composition-id="ui-3d-reveal"] .fig-logo {
              width: 32px;
              height: 32px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 6px;
              cursor: default;
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .fig-logo:hover {
              background: rgba(255, 255, 255, 0.08);
            }

            [data-composition-id="ui-3d-reveal"] .tool-divider {
              width: 1px;
              height: 20px;
              background: rgba(255, 255, 255, 0.12);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .tool-group {
              display: flex;
              align-items: center;
              gap: 2px;
            }

            [data-composition-id="ui-3d-reveal"] .tool-btn {
              width: 30px;
              height: 30px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 5px;
              color: #868686;
              cursor: default;
            }

            [data-composition-id="ui-3d-reveal"] .tool-btn.active {
              background: rgba(24, 160, 251, 0.18);
              color: #18a0fb;
            }

            [data-composition-id="ui-3d-reveal"] .tb-center {
              flex: 1;
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 5px;
              font-size: 12px;
              color: #e8e8e8;
            }

            [data-composition-id="ui-3d-reveal"] .file-name {
              font-weight: 500;
            }

            [data-composition-id="ui-3d-reveal"] .file-chevron {
              color: #555;
            }

            [data-composition-id="ui-3d-reveal"] .file-page {
              color: #868686;
            }

            [data-composition-id="ui-3d-reveal"] .file-arrow {
              color: #868686;
              margin-left: 2px;
            }

            [data-composition-id="ui-3d-reveal"] .tb-right {
              flex: 0 0 auto;
              display: flex;
              align-items: center;
              gap: 8px;
            }

            [data-composition-id="ui-3d-reveal"] .mode-tabs {
              display: flex;
              background: rgba(255, 255, 255, 0.06);
              border-radius: 6px;
              padding: 2px;
              gap: 2px;
            }

            [data-composition-id="ui-3d-reveal"] .mode-tab {
              font-size: 11px;
              font-weight: 500;
              color: #868686;
              padding: 4px 10px;
              border-radius: 4px;
              cursor: default;
            }

            [data-composition-id="ui-3d-reveal"] .mode-tab.active {
              background: #3c3c3c;
              color: #e8e8e8;
            }

            [data-composition-id="ui-3d-reveal"] .share-btn {
              display: flex;
              align-items: center;
              gap: 5px;
              background: #18a0fb;
              color: white;
              font-size: 11px;
              font-weight: 600;
              padding: 6px 12px;
              border-radius: 6px;
              cursor: default;
              white-space: nowrap;
            }

            [data-composition-id="ui-3d-reveal"] .avatar-cluster {
              display: flex;
              align-items: center;
            }

            [data-composition-id="ui-3d-reveal"] .fig-avatar {
              width: 26px;
              height: 26px;
              border-radius: 50%;
              font-size: 9px;
              font-weight: 700;
              color: white;
              display: flex;
              align-items: center;
              justify-content: center;
              border: 2px solid #2c2c2c;
            }

            [data-composition-id="ui-3d-reveal"] .present-btn {
              width: 28px;
              height: 28px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 5px;
              background: rgba(255, 255, 255, 0.06);
              color: #868686;
              font-size: 9px;
              cursor: default;
            }

            /* ═══════════════════════════
             BODY LAYOUT
          ═══════════════════════════ */
            [data-composition-id="ui-3d-reveal"] .fig-body {
              display: flex;
              height: 632px; /* 680 - 48 toolbar */
            }

            /* ═══════════════════════════
             LAYERS PANEL
          ═══════════════════════════ */
            [data-composition-id="ui-3d-reveal"] .fig-layers {
              width: 210px;
              flex-shrink: 0;
              background: #2c2c2c;
              border-right: 1px solid rgba(255, 255, 255, 0.08);
              display: flex;
              flex-direction: column;
              overflow: hidden;
            }

            [data-composition-id="ui-3d-reveal"] .panel-tabs {
              display: flex;
              border-bottom: 1px solid rgba(255, 255, 255, 0.08);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .ptab {
              flex: 1;
              text-align: center;
              font-size: 11px;
              font-weight: 500;
              color: #868686;
              padding: 9px 0 8px;
              cursor: default;
              border-bottom: 2px solid transparent;
            }

            [data-composition-id="ui-3d-reveal"] .ptab.active {
              color: #e8e8e8;
              border-bottom-color: #18a0fb;
            }

            [data-composition-id="ui-3d-reveal"] .layer-search {
              display: flex;
              align-items: center;
              gap: 6px;
              padding: 7px 10px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.06);
              color: #555;
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .search-placeholder {
              font-size: 11px;
              color: #555;
            }

            [data-composition-id="ui-3d-reveal"] .layer-list {
              flex: 1;
              overflow: hidden;
              padding: 4px 0;
            }

            [data-composition-id="ui-3d-reveal"] .layer-item {
              display: flex;
              align-items: center;
              gap: 5px;
              padding: 4px 8px;
              font-size: 11px;
              color: #868686;
              cursor: default;
              height: 26px;
              white-space: nowrap;
            }

            [data-composition-id="ui-3d-reveal"] .layer-item.page-item {
              color: #e8e8e8;
              font-weight: 500;
            }

            [data-composition-id="ui-3d-reveal"] .layer-item.frame-item {
              color: #e8e8e8;
              font-weight: 500;
              padding-left: 6px;
            }

            [data-composition-id="ui-3d-reveal"] .layer-item.indent-1 {
              padding-left: 18px;
            }
            [data-composition-id="ui-3d-reveal"] .layer-item.indent-2 {
              padding-left: 30px;
            }

            [data-composition-id="ui-3d-reveal"] .layer-item.comp-item {
              color: #c9a0ff;
            }
            [data-composition-id="ui-3d-reveal"] .frame-icon {
              color: #6ca9ff !important;
            }

            [data-composition-id="ui-3d-reveal"] .selected-layer {
              background: rgba(24, 160, 251, 0.15);
              border-radius: 4px;
              color: #18a0fb !important;
            }

            [data-composition-id="ui-3d-reveal"] .li-collapse {
              color: #555;
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .li-icon {
              flex-shrink: 0;
              color: #868686;
            }

            [data-composition-id="ui-3d-reveal"] .comp-icon {
              color: #a259ff !important;
            }

            [data-composition-id="ui-3d-reveal"] .page-bar {
              display: flex;
              align-items: center;
              border-top: 1px solid rgba(255, 255, 255, 0.08);
              padding: 0 4px;
              height: 34px;
              flex-shrink: 0;
              gap: 2px;
            }

            [data-composition-id="ui-3d-reveal"] .pbar-tab {
              font-size: 10px;
              color: #868686;
              padding: 4px 8px;
              border-radius: 4px;
              white-space: nowrap;
              cursor: default;
            }

            [data-composition-id="ui-3d-reveal"] .pbar-tab.active {
              background: rgba(255, 255, 255, 0.08);
              color: #e8e8e8;
            }

            [data-composition-id="ui-3d-reveal"] .pbar-add {
              font-size: 14px;
              color: #555;
              padding: 2px 6px;
              cursor: default;
              margin-left: auto;
            }

            /* ═══════════════════════════
             CANVAS
          ═══════════════════════════ */
            [data-composition-id="ui-3d-reveal"] .fig-canvas {
              flex: 1;
              background: #1e1e1e;
              position: relative;
              overflow: hidden;
              display: flex;
              align-items: center;
              justify-content: center;
            }

            [data-composition-id="ui-3d-reveal"] .canvas-frame-label {
              position: absolute;
              top: 18px;
              left: 50%;
              transform: translateX(-50%);
              font-size: 10px;
              color: #555;
              white-space: nowrap;
            }

            [data-composition-id="ui-3d-reveal"] .artboard {
              width: 520px;
              height: 360px;
              background: #ffffff;
              border-radius: 4px;
              overflow: hidden;
              position: relative;
              display: flex;
              box-shadow:
                0 8px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(0, 0, 0, 0.08);
              margin-top: 20px;
            }

            /* ── Selection handles ── */
            [data-composition-id="ui-3d-reveal"] .selection-ring {
              position: absolute;
              width: 322px;
              height: 110px;
              border: 1px solid #18a0fb;
              pointer-events: none;
              /* positioned over the create card in main content */
              top: calc(50% - 40px);
              left: calc(50% + 86px);
              transform: translate(-50%, -50%);
            }

            [data-composition-id="ui-3d-reveal"] .sel-handle {
              position: absolute;
              width: 7px;
              height: 7px;
              background: white;
              border: 1.5px solid #18a0fb;
              border-radius: 1px;
            }

            [data-composition-id="ui-3d-reveal"] .sel-handle.tl {
              top: -4px;
              left: -4px;
            }
            [data-composition-id="ui-3d-reveal"] .sel-handle.tr {
              top: -4px;
              right: -4px;
            }
            [data-composition-id="ui-3d-reveal"] .sel-handle.bl {
              bottom: -4px;
              left: -4px;
            }
            [data-composition-id="ui-3d-reveal"] .sel-handle.br {
              bottom: -4px;
              right: -4px;
            }

            [data-composition-id="ui-3d-reveal"] .sel-label {
              position: absolute;
              top: -22px;
              left: -1px;
              font-size: 9px;
              color: #18a0fb;
              white-space: nowrap;
              font-family: "Inter", sans-serif;
              font-weight: 500;
            }

            /* ═══════════════════════════
             PROPERTIES PANEL
          ═══════════════════════════ */
            [data-composition-id="ui-3d-reveal"] .fig-props {
              width: 240px;
              flex-shrink: 0;
              background: #2c2c2c;
              border-left: 1px solid rgba(255, 255, 255, 0.08);
              display: flex;
              flex-direction: column;
              overflow: hidden;
            }

            [data-composition-id="ui-3d-reveal"] .prop-align {
              display: flex;
              align-items: center;
              gap: 3px;
              padding: 8px 12px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.06);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .align-btn {
              width: 24px;
              height: 24px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 4px;
              color: #868686;
              font-size: 14px;
              cursor: default;
            }

            [data-composition-id="ui-3d-reveal"] .active-align {
              background: rgba(255, 255, 255, 0.08);
              color: #e8e8e8;
            }

            [data-composition-id="ui-3d-reveal"] .align-divider {
              width: 1px;
              height: 16px;
              background: rgba(255, 255, 255, 0.1);
              margin: 0 2px;
            }

            [data-composition-id="ui-3d-reveal"] .prop-section {
              padding: 10px 12px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.06);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .prop-section-head {
              display: flex;
              align-items: center;
              justify-content: space-between;
              margin-bottom: 8px;
            }

            [data-composition-id="ui-3d-reveal"] .prop-section-label {
              font-size: 11px;
              font-weight: 500;
              color: #e8e8e8;
            }

            [data-composition-id="ui-3d-reveal"] .prop-section-icon {
              font-size: 14px;
              color: #555;
              cursor: default;
            }

            [data-composition-id="ui-3d-reveal"] .prop-row-2 {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 6px;
              margin-bottom: 5px;
            }

            [data-composition-id="ui-3d-reveal"] .prop-field {
              display: flex;
              align-items: center;
              gap: 5px;
              background: rgba(255, 255, 255, 0.06);
              border-radius: 4px;
              padding: 5px 7px;
            }

            [data-composition-id="ui-3d-reveal"] .prop-pre {
              font-size: 10px;
              color: #555;
              flex-shrink: 0;
              font-family: "Inter", sans-serif;
            }

            [data-composition-id="ui-3d-reveal"] .prop-val {
              font-size: 11px;
              color: #e8e8e8;
              font-family: "Inter", sans-serif;
            }

            [data-composition-id="ui-3d-reveal"] .fill-row {
              display: flex;
              align-items: center;
              gap: 8px;
            }

            [data-composition-id="ui-3d-reveal"] .fill-preview {
              width: 18px;
              height: 18px;
              border-radius: 3px;
              border: 1px solid rgba(255, 255, 255, 0.15);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .fill-hex {
              font-size: 11px;
              color: #e8e8e8;
              font-family: "Inter", sans-serif;
              flex: 1;
            }

            [data-composition-id="ui-3d-reveal"] .fill-pct {
              font-size: 11px;
              color: #868686;
              font-family: "Inter", sans-serif;
            }

            [data-composition-id="ui-3d-reveal"] .prop-empty {
              font-size: 11px;
              color: #555;
              font-style: italic;
            }

            [data-composition-id="ui-3d-reveal"] .effect-row {
              display: flex;
              align-items: center;
              gap: 7px;
            }

            [data-composition-id="ui-3d-reveal"] .effect-dot {
              width: 8px;
              height: 8px;
              border-radius: 50%;
              background: rgba(255, 255, 255, 0.2);
              flex-shrink: 0;
            }

            [data-composition-id="ui-3d-reveal"] .effect-name {
              font-size: 11px;
              color: #868686;
            }

            /* ═══════════════════════════
             HEYGEN APP UI — LIGHT MODE
          ═══════════════════════════ */

            /* ── Icon nav (56px) ── */
            [data-composition-id="ui-3d-reveal"] .hg-icnav {
              width: 56px;
              flex-shrink: 0;
              height: 360px;
              background: #ffffff;
              border-right: 1px solid #ebebeb;
              display: flex;
              flex-direction: column;
              align-items: center;
              padding-top: 0;
              position: relative;
              overflow: hidden;
            }
            [data-composition-id="ui-3d-reveal"] .hg-iclogo {
              width: 56px;
              height: 50px;
              flex-shrink: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              border-bottom: 1px solid #f0f0f0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icitem {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 3px;
              padding: 8px 0;
              color: #9ca3af;
              cursor: default;
              flex-shrink: 0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icitem span {
              font-size: 7px;
              color: inherit;
              font-family: "Inter", sans-serif;
              text-align: center;
              line-height: 1;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icactive {
              color: #10b8a9 !important;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icactive span {
              color: #10b8a9 !important;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icbg {
              width: 34px;
              height: 34px;
              border-radius: 9px;
              background: #10b8a9;
              display: flex;
              align-items: center;
              justify-content: center;
            }
            [data-composition-id="ui-3d-reveal"] .hg-icuser {
              position: absolute;
              bottom: 10px;
              width: 26px;
              height: 26px;
              border-radius: 50%;
              background: #1a1a1a;
              font-size: 9px;
              font-weight: 700;
              color: white;
              display: flex;
              align-items: center;
              justify-content: center;
              font-family: "Inter", sans-serif;
            }

            /* ── History panel (120px) ── */
            [data-composition-id="ui-3d-reveal"] .hg-histpanel {
              width: 120px;
              flex-shrink: 0;
              height: 360px;
              background: #f7f7f8;
              border-right: 1px solid #ebebeb;
              display: flex;
              flex-direction: column;
              overflow: hidden;
            }
            [data-composition-id="ui-3d-reveal"] .hg-histhead {
              height: 44px;
              flex-shrink: 0;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0 10px;
              font-size: 10px;
              font-weight: 600;
              color: #111;
              border-bottom: 1px solid #efefef;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-newitem {
              display: flex;
              align-items: center;
              gap: 6px;
              padding: 7px 8px;
              margin: 6px 6px 0;
              background: #e8f0fe;
              border-radius: 7px;
              font-size: 9.5px;
              font-weight: 500;
              color: #1a1a1a;
              flex-shrink: 0;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-histcat {
              font-size: 7px;
              font-weight: 600;
              color: #b0b0b0;
              letter-spacing: 0.06em;
              padding: 9px 10px 3px;
              flex-shrink: 0;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-histrow {
              padding: 3.5px 10px;
              font-size: 9px;
              color: #444;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              flex-shrink: 0;
              font-family: "Inter", sans-serif;
            }

            /* ── Main content (359px) ── */
            [data-composition-id="ui-3d-reveal"] .hg-maincnt {
              flex: 1;
              height: 360px;
              background: #ffffff;
              position: relative;
              display: flex;
              flex-direction: column;
              padding: 10px 14px 10px;
              overflow: hidden;
            }
            [data-composition-id="ui-3d-reveal"] .hg-toprighticons {
              position: absolute;
              top: 9px;
              right: 10px;
              display: flex;
              align-items: center;
              gap: 6px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-ticon {
              width: 26px;
              height: 26px;
              border-radius: 50%;
              border: 1px solid #e5e7eb;
              display: flex;
              align-items: center;
              justify-content: center;
              color: #6b7280;
              cursor: default;
              position: relative;
            }
            [data-composition-id="ui-3d-reveal"] .hg-notifico {
              position: relative;
            }
            [data-composition-id="ui-3d-reveal"] .hg-notifbadge {
              position: absolute;
              top: -5px;
              right: -7px;
              background: #ef4444;
              color: white;
              font-size: 5.5px;
              font-weight: 700;
              padding: 1.5px 3px;
              border-radius: 8px;
              font-family: "Inter", sans-serif;
              border: 1.5px solid white;
            }
            [data-composition-id="ui-3d-reveal"] .hg-herotitle {
              font-size: 15px;
              font-weight: 800;
              color: #111111;
              line-height: 1.22;
              letter-spacing: -0.04em;
              margin-bottom: 12px;
              font-family: "Inter", sans-serif;
              padding-right: 84px;
              margin-top: 2px;
            }

            /* ── Create card ── */
            [data-composition-id="ui-3d-reveal"] .hg-createcard {
              border: 2px solid #7dd4cf;
              border-radius: 12px;
              overflow: hidden;
              background: #ffffff;
              flex-shrink: 0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-selrow {
              display: flex;
              align-items: stretch;
              border-bottom: 1px solid #f3f4f6;
            }
            [data-composition-id="ui-3d-reveal"] .hg-sel {
              flex: 1;
              padding: 8px 10px;
              display: flex;
              flex-direction: column;
              gap: 5px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-seldiv {
              width: 1px;
              background: #f0f0f0;
              flex-shrink: 0;
              margin: 8px 0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-settico {
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 0 10px;
              color: #9ca3af;
              flex-shrink: 0;
              border-left: 1px solid #f0f0f0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-sellbl {
              font-size: 8px;
              color: #9ca3af;
              font-weight: 500;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-selbox {
              display: flex;
              align-items: center;
              gap: 6px;
              background: #f4f4f5;
              border-radius: 7px;
              padding: 5px 7px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-avphoto {
              width: 30px;
              height: 26px;
              border-radius: 5px;
              flex-shrink: 0;
              background: linear-gradient(170deg, #7a4b2a 0%, #b07540 45%, #d4a070 100%);
            }
            [data-composition-id="ui-3d-reveal"] .hg-seltxt {
              font-size: 9px;
              font-weight: 500;
              color: #1a1a1a;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-voicebars {
              display: flex;
              align-items: center;
              gap: 2px;
              width: 22px;
              justify-content: center;
            }
            [data-composition-id="ui-3d-reveal"] .hg-vbar {
              width: 2.5px;
              background: #c4c4c4;
              border-radius: 1.5px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-styleico {
              width: 22px;
              height: 22px;
              background: #e8e8e8;
              border-radius: 5px;
              display: flex;
              align-items: center;
              justify-content: center;
              color: #888;
              flex-shrink: 0;
            }
            [data-composition-id="ui-3d-reveal"] .hg-cinput {
              padding: 10px 12px 8px;
              font-size: 10px;
              color: #c4c4c4;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-cbottom {
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 6px 10px;
              border-top: 1px solid #f3f4f6;
            }
            [data-composition-id="ui-3d-reveal"] .hg-cbleft {
              display: flex;
              align-items: center;
              gap: 6px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-cbtn {
              width: 24px;
              height: 24px;
              border: 1px solid #e4e4e7;
              border-radius: 6px;
              display: flex;
              align-items: center;
              justify-content: center;
              color: #6b7280;
              cursor: default;
            }
            [data-composition-id="ui-3d-reveal"] .hg-cbright {
              display: flex;
              align-items: center;
              gap: 5px;
            }
            [data-composition-id="ui-3d-reveal"] .hg-genbtn {
              display: flex;
              align-items: center;
              gap: 4px;
              background: #f4f4f5;
              border: 1px solid #e4e4e7;
              border-radius: 8px;
              padding: 5px 9px;
              font-size: 9px;
              font-weight: 500;
              color: #374151;
              font-family: "Inter", sans-serif;
              cursor: default;
            }
            [data-composition-id="ui-3d-reveal"] .hg-submitbtn {
              width: 26px;
              height: 26px;
              border-radius: 50%;
              background: #111111;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: default;
            }

            /* ── Styles from community ── */
            [data-composition-id="ui-3d-reveal"] .hg-stylessec {
              margin-top: 10px;
              flex: 1;
              overflow: hidden;
              display: flex;
              flex-direction: column;
            }
            [data-composition-id="ui-3d-reveal"] .hg-stitle {
              font-size: 10.5px;
              font-weight: 600;
              color: #111;
              margin-bottom: 7px;
              flex-shrink: 0;
              font-family: "Inter", sans-serif;
            }
            [data-composition-id="ui-3d-reveal"] .hg-spills {
              display: flex;
              gap: 5px;
              margin-bottom: 8px;
              flex-shrink: 0;
              overflow: hidden;
            }
            [data-composition-id="ui-3d-reveal"] .hg-spill {
              font-size: 8.5px;
              font-weight: 500;
              white-space: nowrap;
              padding: 4px 9px;
              border: 1.5px solid #e0e0e3;
              border-radius: 20px;
              color: #555;
              font-family: "Inter", sans-serif;
              cursor: default;
            }
            [data-composition-id="ui-3d-reveal"] .hg-spactive {
              border-color: #10b8a9;
              color: #10b8a9;
            }
            [data-composition-id="ui-3d-reveal"] .hg-scards {
              display: grid;
              grid-template-columns: repeat(4, 1fr);
              gap: 6px;
              flex: 1;
              overflow: hidden;
            }
            [data-composition-id="ui-3d-reveal"] .hg-sc {
              border-radius: 6px;
              overflow: hidden;
              display: flex;
              align-items: flex-end;
              padding: 5px;
              position: relative;
            }
            [data-composition-id="ui-3d-reveal"] .hg-sclbl {
              font-size: 6px;
              font-weight: 700;
              color: rgba(255, 255, 255, 0.85);
              font-family: "Inter", sans-serif;
              letter-spacing: 0.04em;
              line-height: 1.3;
              text-transform: uppercase;
            }

            /* ══ INTRO LAYER ══ */
            [data-composition-id="ui-3d-reveal"] .intro-layer {
              position: absolute;
              inset: 0;
              z-index: 10;
              pointer-events: none;
            }
            [data-composition-id="ui-3d-reveal"] .intro-svg {
              position: absolute;
              top: 0;
              left: 0;
              width: 1920px;
              height: 1080px;
            }
            [data-composition-id="ui-3d-reveal"] .il-stroke {
              stroke-linecap: round;
              stroke-linejoin: round;
            }

            /* ══ OUTRO LAYER ══ */
            [data-composition-id="ui-3d-reveal"] .outro-layer {
              position: absolute;
              inset: 0;
              z-index: 10;
              pointer-events: none;
              opacity: 0;
            }
            [data-composition-id="ui-3d-reveal"] .outro-svg {
              position: absolute;
              top: 0;
              left: 0;
              width: 1920px;
              height: 1080px;
            }
            [data-composition-id="ui-3d-reveal"] .ol-stroke {
              stroke-linecap: round;
              stroke-linejoin: round;
            }
            [data-composition-id="ui-3d-reveal"] .outro-tagline {
              font-family: "Inter", sans-serif;
              font-size: 42px;
              font-weight: 500;
              fill: #fff;
              letter-spacing: -0.5px;
            }
            [data-composition-id="ui-3d-reveal"] .otl {
              opacity: 0;
            }
            [data-composition-id="ui-3d-reveal"] .url-border {
              stroke-dasharray: 500;
              stroke-dashoffset: 500;
            }

            /* ══ OUTRO FADE OVERLAY ══ */
            [data-composition-id="ui-3d-reveal"] .outro-fade {
              position: absolute;
              inset: 0;
              background: #000;
              opacity: 0;
              z-index: 20;
              pointer-events: none;
            }
          </style>

          <script>
            (function () {
              var S = '[data-composition-id="ui-3d-reveal"]';
              var tl = gsap.timeline({ paused: true });

              var wrapper = document.querySelector(S + " .card-wrapper");
              var scene = document.querySelector(S + " .scene");
              var cardGlow = document.querySelector(S + " .card-glow");

              // ── Calculate intro stroke lengths ──
              document.querySelectorAll(S + " .il-stroke").forEach(function (el) {
                var len =
                  el.tagName === "circle"
                    ? 2 * Math.PI * parseFloat(el.getAttribute("r"))
                    : el.getTotalLength();
                el.style.strokeDasharray = len;
                el.style.strokeDashoffset = len;
              });

              // ── Calculate outro stroke lengths ──
              document.querySelectorAll(S + " .ol-stroke").forEach(function (el) {
                var len =
                  el.tagName === "circle"
                    ? 2 * Math.PI * parseFloat(el.getAttribute("r"))
                    : el.getTotalLength();
                el.style.strokeDasharray = len;
                el.style.strokeDashoffset = len;
              });

              // ─────────────────────────────────────────────────────
              // INITIAL STATE
              // ─────────────────────────────────────────────────────
              gsap.set(wrapper, { opacity: 0, scale: 0.74, rotationY: 0, y: 24 });
              gsap.set(
                [
                  S + " .fig-toolbar",
                  S + " .fig-layers",
                  S + " .fig-props",
                  S + " .fig-canvas",
                  S + " .layer-item",
                  S + " .selection-ring",
                ],
                { opacity: 0 },
              );
              gsap.set(S + " .fig-toolbar", { y: -10 });
              gsap.set(S + " .fig-layers", { x: -16 });
              gsap.set(S + " .fig-props", { x: 16 });
              gsap.set(S + " .layer-item", { x: -8 });
              gsap.set(S + " .artboard", { scale: 0.94, opacity: 0 });

              // ═════════════════════════════════════════════════════
              // PHASE 0 — LOGO INTRO  (0 – 1.35s)
              // Stroke draw cascade → color fill flash → scale to 0
              // ═════════════════════════════════════════════════════

              tl.to(
                S + " .il-stroke-1",
                { strokeDashoffset: 0, duration: 0.4, ease: "power1.inOut" },
                0.0,
              );
              tl.to(
                S + " .il-stroke-2",
                { strokeDashoffset: 0, duration: 0.4, ease: "power1.inOut" },
                0.06,
              );
              tl.to(
                S + " .il-stroke-3",
                { strokeDashoffset: 0, duration: 0.4, ease: "power1.inOut" },
                0.12,
              );
              tl.to(
                S + " .il-stroke-4",
                { strokeDashoffset: 0, duration: 0.4, ease: "power1.inOut" },
                0.18,
              );
              tl.to(
                S + " .il-stroke-5",
                { strokeDashoffset: 0, duration: 0.4, ease: "power1.inOut" },
                0.24,
              );

              tl.to(S + " .il-fill-1", { opacity: 1, duration: 0.08 }, 0.5);
              tl.to(S + " .il-fill-2", { opacity: 1, duration: 0.08 }, 0.54);
              tl.to(S + " .il-fill-3", { opacity: 1, duration: 0.08 }, 0.58);
              tl.to(S + " .il-fill-4", { opacity: 1, duration: 0.08 }, 0.62);
              tl.to(S + " .il-fill-5", { opacity: 1, duration: 0.08 }, 0.66);
              tl.to(S + " .il-stroke", { opacity: 0.3, duration: 0.15 }, 0.6);

              // Scale the logo down to nothing
              tl.to(S + " .il-stroke", { opacity: 0, duration: 0.2 }, 1.0);
              tl.to(
                S + " .intro-logo",
                {
                  scale: 0,
                  transformOrigin: "95px 142.5px",
                  duration: 0.35,
                  ease: "power2.in",
                },
                1.0,
              );

              // ═════════════════════════════════════════════════════
              // PHASE 1 — FLAT REVEAL  (1.5 – 3.4s)
              // ═════════════════════════════════════════════════════
              var T = 1.5;

              tl.to(
                wrapper,
                {
                  opacity: 1,
                  scale: 0.79,
                  y: 0,
                  duration: 0.55,
                  ease: "expo.out",
                },
                T + 0.0,
              );

              tl.to(
                cardGlow,
                {
                  opacity: 0.5,
                  duration: 0.8,
                  ease: "power2.out",
                },
                T + 0.05,
              );

              tl.to(
                S + " .fig-toolbar",
                {
                  opacity: 1,
                  y: 0,
                  duration: 0.4,
                  ease: "power2.out",
                },
                T + 0.23,
              );

              tl.to(
                S + " .fig-layers",
                {
                  opacity: 1,
                  x: 0,
                  duration: 0.45,
                  ease: "expo.out",
                },
                T + 0.35,
              );

              tl.to(
                S + " .fig-props",
                {
                  opacity: 1,
                  x: 0,
                  duration: 0.45,
                  ease: "expo.out",
                },
                T + 0.37,
              );

              tl.to(
                S + " .fig-canvas",
                {
                  opacity: 1,
                  duration: 0.4,
                  ease: "power2.out",
                },
                T + 0.45,
              );

              tl.to(
                S + " .artboard",
                {
                  opacity: 1,
                  scale: 1,
                  duration: 0.55,
                  ease: "back.out(1.4)",
                },
                T + 0.5,
              );

              tl.to(
                S + " .layer-item",
                {
                  opacity: 1,
                  x: 0,
                  duration: 0.35,
                  stagger: { each: 0.045, ease: "power1.in" },
                  ease: "power2.out",
                },
                T + 0.57,
              );

              tl.to(
                S + " .selection-ring",
                {
                  opacity: 1,
                  duration: 0.25,
                  ease: "power2.out",
                },
                T + 1.25,
              );

              // ═════════════════════════════════════════════════════
              // PHASE 2 — CAMERA PUSH  (3.5 – 4.8s)
              // Bigger zoom: 0.79 → 1.15 so the UI fills the frame
              // ═════════════════════════════════════════════════════

              tl.to(
                wrapper,
                {
                  scale: 1.15,
                  duration: 1.3,
                  ease: "power3.inOut",
                },
                3.5,
              );

              tl.to(
                cardGlow,
                {
                  opacity: 0.85,
                  scale: 1.25,
                  duration: 1.2,
                  ease: "power2.inOut",
                },
                3.5,
              );

              // ═════════════════════════════════════════════════════
              // PHASE 3 — 3D TILT  (4.2 – 5.55s)
              // Steeper angle (-34°) for more dramatic depth reveal
              // ═════════════════════════════════════════════════════

              tl.to(
                wrapper,
                {
                  rotationY: -34,
                  duration: 1.35,
                  ease: "expo.out",
                },
                4.2,
              );

              tl.to(
                wrapper,
                {
                  y: -16,
                  duration: 1.1,
                  ease: "power2.out",
                },
                4.3,
              );

              // ═════════════════════════════════════════════════════
              // PHASE 4 — 3D HOLD  (5.55 – 7.3s)
              // ═════════════════════════════════════════════════════

              tl.to(
                wrapper,
                {
                  y: -8,
                  rotationY: -31,
                  duration: 0.9,
                  ease: "sine.inOut",
                },
                5.55,
              );

              tl.to(
                wrapper,
                {
                  y: -20,
                  rotationY: -35,
                  duration: 0.9,
                  ease: "sine.inOut",
                },
                6.45,
              );

              tl.to(
                cardGlow,
                {
                  opacity: 0.7,
                  duration: 0.9,
                  ease: "sine.inOut",
                  yoyo: true,
                  repeat: 1,
                },
                5.55,
              );

              // ═════════════════════════════════════════════════════
              // SLIDE OFF — 3D depth fly-away  (7.3 – 7.85s)
              // Scene x exits left. Wrapper z shrinks into distance.
              // Deeper z (-4000) + steeper rotation (-55°) = very
              // dramatic 3D exit — card turns away and vanishes.
              // ═════════════════════════════════════════════════════

              tl.to(
                scene,
                {
                  x: -2200,
                  duration: 0.55,
                  ease: "power4.in",
                },
                7.3,
              );

              tl.to(
                wrapper,
                {
                  z: -7500,
                  rotationY: -65,
                  duration: 0.55,
                  ease: "power4.in",
                },
                7.3,
              );

              tl.to(
                cardGlow,
                {
                  opacity: 0,
                  duration: 0.3,
                  ease: "power3.in",
                },
                7.3,
              );

              // ═════════════════════════════════════════════════════
              // OUTRO — LOGO BUILD + TAGLINE + PILL  (7.9 – 13s)
              // ═════════════════════════════════════════════════════
              var O = 7.9;

              tl.set(S + " .outro-layer", { opacity: 1 }, O);

              // Stroke draw cascade
              tl.to(
                S + " .ol-stroke-1",
                { strokeDashoffset: 0, duration: 0.8, ease: "power1.inOut" },
                O + 0.0,
              );
              tl.to(
                S + " .ol-stroke-2",
                { strokeDashoffset: 0, duration: 0.8, ease: "power1.inOut" },
                O + 0.15,
              );
              tl.to(
                S + " .ol-stroke-3",
                { strokeDashoffset: 0, duration: 0.8, ease: "power1.inOut" },
                O + 0.3,
              );
              tl.to(
                S + " .ol-stroke-4",
                { strokeDashoffset: 0, duration: 0.8, ease: "power1.inOut" },
                O + 0.45,
              );
              tl.to(
                S + " .ol-stroke-5",
                { strokeDashoffset: 0, duration: 0.8, ease: "power1.inOut" },
                O + 0.6,
              );

              // Color fill cascade
              tl.to(S + " .ol-fill-1", { opacity: 1, duration: 0.15, ease: "power1.out" }, O + 1.4);
              tl.to(S + " .ol-fill-2", { opacity: 1, duration: 0.15, ease: "power1.out" }, O + 1.55);
              tl.to(S + " .ol-fill-3", { opacity: 1, duration: 0.15, ease: "power1.out" }, O + 1.7);
              tl.to(S + " .ol-fill-4", { opacity: 1, duration: 0.15, ease: "power1.out" }, O + 1.85);
              tl.to(S + " .ol-fill-5", { opacity: 1, duration: 0.15, ease: "power1.out" }, O + 2.0);
              tl.to(S + " .ol-stroke", { opacity: 0.3, duration: 0.4, ease: "none" }, O + 1.8);

              // Subtle scale settle
              tl.fromTo(
                S + " .outro-logo",
                { scale: 1, transformOrigin: "80px 120px" },
                { scale: 1.04, duration: 0.2, ease: "power2.out" },
                O + 2.3,
              );
              tl.to(
                S + " .outro-logo",
                {
                  scale: 1,
                  transformOrigin: "80px 120px",
                  duration: 0.2,
                  ease: "power2.inOut",
                },
                O + 2.5,
              );

              // Tagline letter stagger
              var letters = document.querySelectorAll(S + " .otl");
              for (var k = 0; k < letters.length; k++) {
                tl.fromTo(
                  letters[k],
                  { opacity: 0, y: 8 },
                  { opacity: 1, y: 0, duration: 0.12, ease: "power2.out" },
                  O + 2.8 + k * 0.025,
                );
              }

              // URL pill: stroke draw → fill → text
              tl.to(
                S + " .url-border",
                {
                  strokeDashoffset: 0,
                  duration: 0.35,
                  ease: "power1.inOut",
                },
                O + 3.8,
              );
              tl.to(S + " .url-bg", { opacity: 1, duration: 0.15 }, O + 4.15);
              tl.to(S + " .url-text", { opacity: 1, duration: 0.2 }, O + 4.2);

              // Fade to black
              tl.to(
                S + " .outro-fade",
                {
                  opacity: 1,
                  duration: 0.6,
                  ease: "none",
                },
                O + 4.8,
              );

              window.__timelines = window.__timelines || {};
              window.__timelines["ui-3d-reveal"] = tl;
            })();
          </script>
        </div>
      </body>
    </html>
    ```
  </CatalogSlot>

  <CatalogSlot slot="install">
    <InstallCommand command="npx hyperframes add ui-3d-reveal" item="ui-3d-reveal" />

    That writes one file: `compositions/ui-3d-reveal.html`.
  </CatalogSlot>

  <CatalogSlot slot="docs">
    ## Add it to your video

    It runs for 13 seconds at 1920×1080. Paste this into your composition:

    ```html index.html theme={null}
    <div
      data-composition-id="ui-3d-reveal"
      data-composition-src="compositions/ui-3d-reveal.html"
      data-start="0"
      data-duration="13"
      data-track-index="1"
      data-width="1920"
      data-height="1080"
    ></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.

    Tagged `showcase` `3d` `reveal`.

    ## Related topics

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