takomi 2.1.40 → 2.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/plugins/marketplace.json +22 -22
- package/README.md +7 -4
- package/assets/.agent/skills/embedded-captions/CATALOG.md +93 -0
- package/assets/.agent/skills/embedded-captions/SKILL.md +286 -0
- package/assets/.agent/skills/embedded-captions/assets/brand/CDPR-fankit-terms.txt +35 -0
- package/assets/.agent/skills/embedded-captions/assets/brand/cyberpunk-widths.json +115 -0
- package/assets/.agent/skills/embedded-captions/assets/fonts/char-widths.json +2211 -0
- package/assets/.agent/skills/embedded-captions/assets/strokefonts/HersheyScript1.svg +242 -0
- package/assets/.agent/skills/embedded-captions/assets/strokefonts/HersheyScriptMed.svg +242 -0
- package/assets/.agent/skills/embedded-captions/dna/README.md +148 -0
- package/assets/.agent/skills/embedded-captions/dna/chrome.json +68 -0
- package/assets/.agent/skills/embedded-captions/dna/cream.json +69 -0
- package/assets/.agent/skills/embedded-captions/dna/documentary.json +62 -0
- package/assets/.agent/skills/embedded-captions/dna/editorial.json +70 -0
- package/assets/.agent/skills/embedded-captions/dna/glitch.json +82 -0
- package/assets/.agent/skills/embedded-captions/dna/ink.json +65 -0
- package/assets/.agent/skills/embedded-captions/dna/keynote.json +62 -0
- package/assets/.agent/skills/embedded-captions/dna/loud.json +75 -0
- package/assets/.agent/skills/embedded-captions/dna/neon.json +58 -0
- package/assets/.agent/skills/embedded-captions/dna/velocity.json +89 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/README.md +48 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/champion/spec.md +98 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/champion/template.html +188 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/memory-wall/spec.md +134 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/memory-wall/template.html +179 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/portrait-header/spec.md +81 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/_archive/portrait-header/template.html +170 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/cinematic-cream/spec.md +16 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/cinematic-cream/template.html +226 -0
- package/assets/.agent/skills/embedded-captions/modes/cinematic/engine.html +355 -0
- package/assets/.agent/skills/embedded-captions/modes/standard/_anatomy.md +233 -0
- package/assets/.agent/skills/embedded-captions/modes/standard/_motion.md +192 -0
- package/assets/.agent/skills/embedded-captions/modes/standard/fonts/build-fonts-css.cjs +97 -0
- package/assets/.agent/skills/embedded-captions/references/aesthetic-principles.md +168 -0
- package/assets/.agent/skills/embedded-captions/references/anti-patterns.md +188 -0
- package/assets/.agent/skills/embedded-captions/references/bespoke-vs-presets.md +178 -0
- package/assets/.agent/skills/embedded-captions/references/caption-grouping.md +130 -0
- package/assets/.agent/skills/embedded-captions/references/composition-craft.md +522 -0
- package/assets/.agent/skills/embedded-captions/references/direction-catalog.md +138 -0
- package/assets/.agent/skills/embedded-captions/references/example-renders/champion.html +371 -0
- package/assets/.agent/skills/embedded-captions/references/example-renders/memory-wall.html +334 -0
- package/assets/.agent/skills/embedded-captions/references/failure-modes.md +145 -0
- package/assets/.agent/skills/embedded-captions/references/layout-heuristics.md +238 -0
- package/assets/.agent/skills/embedded-captions/references/motion-vocabulary.md +148 -0
- package/assets/.agent/skills/embedded-captions/references/rail.md +68 -0
- package/assets/.agent/skills/embedded-captions/references/reference-bar.md +47 -0
- package/assets/.agent/skills/embedded-captions/references/scene-types.md +94 -0
- package/assets/.agent/skills/embedded-captions/references/test-set.md +66 -0
- package/assets/.agent/skills/embedded-captions/references/typographic-moves.md +266 -0
- package/assets/.agent/skills/embedded-captions/references/typography-presets.md +63 -0
- package/assets/.agent/skills/embedded-captions/scripts/audio-envelope.cjs +95 -0
- package/assets/.agent/skills/embedded-captions/scripts/check-occlusion.cjs +250 -0
- package/assets/.agent/skills/embedded-captions/scripts/check-overflow.cjs +194 -0
- package/assets/.agent/skills/embedded-captions/scripts/check-rail-climax.cjs +233 -0
- package/assets/.agent/skills/embedded-captions/scripts/check-timing.cjs +173 -0
- package/assets/.agent/skills/embedded-captions/scripts/fill-timings.cjs +124 -0
- package/assets/.agent/skills/embedded-captions/scripts/fit-fonts.cjs +158 -0
- package/assets/.agent/skills/embedded-captions/scripts/gen-stroke-path.py +46 -0
- package/assets/.agent/skills/embedded-captions/scripts/inject-fonts.cjs +169 -0
- package/assets/.agent/skills/embedded-captions/scripts/lib-dna.cjs +201 -0
- package/assets/.agent/skills/embedded-captions/scripts/make-cinematic.cjs +1205 -0
- package/assets/.agent/skills/embedded-captions/scripts/make-composition.cjs +404 -0
- package/assets/.agent/skills/embedded-captions/scripts/make-theme.cjs +8781 -0
- package/assets/.agent/skills/embedded-captions/scripts/matte.cjs +279 -0
- package/assets/.agent/skills/embedded-captions/scripts/measure-layout.cjs +293 -0
- package/assets/.agent/skills/embedded-captions/scripts/prepare.sh +39 -0
- package/assets/.agent/skills/embedded-captions/scripts/preview-frames.cjs +268 -0
- package/assets/.agent/skills/embedded-captions/scripts/render-and-composite.sh +469 -0
- package/assets/.agent/skills/embedded-captions/scripts/render-theme.sh +34 -0
- package/assets/.agent/skills/embedded-captions/scripts/safe-zones.cjs +813 -0
- package/assets/.agent/skills/embedded-captions/scripts/transcribe.cjs +332 -0
- package/assets/.agent/skills/embedded-captions/themes/PORTING.md +49 -0
- package/assets/.agent/skills/embedded-captions/themes/README.md +244 -0
- package/assets/.agent/skills/embedded-captions/themes/anchor.json +27 -0
- package/assets/.agent/skills/embedded-captions/themes/arcade.json +51 -0
- package/assets/.agent/skills/embedded-captions/themes/aurora.json +41 -0
- package/assets/.agent/skills/embedded-captions/themes/biolume.json +35 -0
- package/assets/.agent/skills/embedded-captions/themes/brush.json +74 -0
- package/assets/.agent/skills/embedded-captions/themes/chalkboard.json +52 -0
- package/assets/.agent/skills/embedded-captions/themes/dossier.json +56 -0
- package/assets/.agent/skills/embedded-captions/themes/graffiti.json +62 -0
- package/assets/.agent/skills/embedded-captions/themes/hologram.json +41 -0
- package/assets/.agent/skills/embedded-captions/themes/inkwater.json +43 -0
- package/assets/.agent/skills/embedded-captions/themes/laser.json +46 -0
- package/assets/.agent/skills/embedded-captions/themes/lastpage.json +33 -0
- package/assets/.agent/skills/embedded-captions/themes/neonsign.json +53 -0
- package/assets/.agent/skills/embedded-captions/themes/nightcity.json +56 -0
- package/assets/.agent/skills/embedded-captions/themes/ordnance.json +54 -0
- package/assets/.agent/skills/embedded-captions/themes/papercut.json +37 -0
- package/assets/.agent/skills/embedded-captions/themes/popup.json +46 -0
- package/assets/.agent/skills/embedded-captions/themes/ransom.json +62 -0
- package/assets/.agent/skills/embedded-captions/themes/scoreboard.json +54 -0
- package/assets/.agent/skills/embedded-captions/themes/spectrum.json +46 -0
- package/assets/.agent/skills/embedded-captions/themes/stardust.json +29 -0
- package/assets/.agent/skills/embedded-captions/themes/stomp.json +43 -0
- package/assets/.agent/skills/embedded-captions/themes/terminal.json +49 -0
- package/assets/.agent/skills/embedded-captions/themes/thunder.json +44 -0
- package/assets/.agent/skills/embedded-captions/themes/transit.json +44 -0
- package/assets/.agent/skills/embedded-captions/themes/vhs.json +47 -0
- package/assets/.agent/skills/faceless-explainer/SKILL.md +209 -0
- package/assets/.agent/skills/faceless-explainer/references/cut-catalog.md +215 -0
- package/assets/.agent/skills/faceless-explainer/references/motion-language.md +156 -0
- package/assets/.agent/skills/faceless-explainer/references/story-design.md +248 -0
- package/assets/.agent/skills/faceless-explainer/references/visual-design.md +146 -0
- package/assets/.agent/skills/faceless-explainer/scripts/assemble-index.mjs +570 -0
- package/assets/.agent/skills/faceless-explainer/scripts/audio.mjs +253 -0
- package/assets/.agent/skills/faceless-explainer/scripts/build-frame.mjs +536 -0
- package/assets/.agent/skills/faceless-explainer/scripts/captions.mjs +508 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/assets.mjs +55 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/dimensions.mjs +45 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/storyboard.mjs +249 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/tokens.mjs +204 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/transition-registry.mjs +38 -0
- package/assets/.agent/skills/faceless-explainer/scripts/lib/transitions.json +71 -0
- package/assets/.agent/skills/faceless-explainer/scripts/transitions.mjs +320 -0
- package/assets/.agent/skills/faceless-explainer/sub-agents/frame-worker.md +75 -0
- package/assets/.agent/skills/figma/SKILL.md +121 -0
- package/assets/.agent/skills/general-video/SKILL.md +143 -0
- package/assets/.agent/skills/hyperframes/SKILL.md +164 -0
- package/assets/.agent/skills/hyperframes-animation/SKILL.md +84 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/animate-text.md +64 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/animejs.md +114 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/css-animations.md +143 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/gsap-easing-and-stagger.md +118 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/gsap-timeline-and-labels.md +96 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/gsap-transforms-and-perf.md +96 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/gsap.md +105 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/html-in-canvas-patterns.md +507 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/lottie.md +117 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/three.md +131 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/typegpu.md +178 -0
- package/assets/.agent/skills/hyperframes-animation/adapters/waapi.md +101 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/comparison-split.md +27 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/constellation-hub.md +44 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/cta-morph-press.md +28 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/cursor-ui-demo.md +57 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/dataviz-countup.md +46 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/device-surface-showcase.md +53 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/grid-card-assemble.md +66 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/kinetic-type-beats.md +78 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/logo-assemble-lockup.md +69 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/overwhelm-surround.md +28 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/spatial-pan-stations.md +37 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/ticker-takeover.md +29 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/titlecard-reveal.md +42 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/typewriter-reveal.md +51 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints/video-text-pivot.md +30 -0
- package/assets/.agent/skills/hyperframes-animation/blueprints-index.md +146 -0
- package/assets/.agent/skills/hyperframes-animation/examples/assets/avatars/02.avif +0 -0
- package/assets/.agent/skills/hyperframes-animation/examples/assets/brands/github.avif +0 -0
- package/assets/.agent/skills/hyperframes-animation/examples/assets/brands/nvidia.avif +0 -0
- package/assets/.agent/skills/hyperframes-animation/examples/assets/brands/visa.avif +0 -0
- package/assets/.agent/skills/hyperframes-animation/examples/assets/brands/zoominfo.avif +0 -0
- package/assets/.agent/skills/hyperframes-animation/examples/brand-reveal-assemble-zoom.html +382 -0
- package/assets/.agent/skills/hyperframes-animation/examples/comparison-split-cards.html +649 -0
- package/assets/.agent/skills/hyperframes-animation/examples/concept-demo-decode-pan.html +520 -0
- package/assets/.agent/skills/hyperframes-animation/examples/cta-morph-press.html +468 -0
- package/assets/.agent/skills/hyperframes-animation/examples/cta-orbit-collapse.html +1298 -0
- package/assets/.agent/skills/hyperframes-animation/examples/demo-page-scroll-spotlight.html +759 -0
- package/assets/.agent/skills/hyperframes-animation/examples/hook-counter-burst.html +729 -0
- package/assets/.agent/skills/hyperframes-animation/examples/messaging-multi-phrase.html +352 -0
- package/assets/.agent/skills/hyperframes-animation/examples/metric-video-text-pivot.html +779 -0
- package/assets/.agent/skills/hyperframes-animation/examples/problem-mockup-overwhelm.html +1374 -0
- package/assets/.agent/skills/hyperframes-animation/examples/proof-logo-chain.html +861 -0
- package/assets/.agent/skills/hyperframes-animation/examples/takeover-ticker-displace.html +347 -0
- package/assets/.agent/skills/hyperframes-animation/examples/workflow-approve-press.html +606 -0
- package/assets/.agent/skills/hyperframes-animation/rules/3d-page-scroll.md +227 -0
- package/assets/.agent/skills/hyperframes-animation/rules/3d-text-depth-layers.md +297 -0
- package/assets/.agent/skills/hyperframes-animation/rules/ai-tracking-box.md +382 -0
- package/assets/.agent/skills/hyperframes-animation/rules/ambient-glow-bloom.md +305 -0
- package/assets/.agent/skills/hyperframes-animation/rules/asr-keyword-glow.md +286 -0
- package/assets/.agent/skills/hyperframes-animation/rules/avatar-cloud-network.md +371 -0
- package/assets/.agent/skills/hyperframes-animation/rules/camera-cursor-tracking.md +246 -0
- package/assets/.agent/skills/hyperframes-animation/rules/card-morph-anchor.md +267 -0
- package/assets/.agent/skills/hyperframes-animation/rules/center-outward-expansion.md +227 -0
- package/assets/.agent/skills/hyperframes-animation/rules/context-sensitive-cursor.md +257 -0
- package/assets/.agent/skills/hyperframes-animation/rules/coordinate-target-zoom.md +332 -0
- package/assets/.agent/skills/hyperframes-animation/rules/counting-dynamic-scale.md +283 -0
- package/assets/.agent/skills/hyperframes-animation/rules/css-marker-patterns.md +373 -0
- package/assets/.agent/skills/hyperframes-animation/rules/cursor-click-ripple.md +262 -0
- package/assets/.agent/skills/hyperframes-animation/rules/depth-of-field-blur.md +313 -0
- package/assets/.agent/skills/hyperframes-animation/rules/depth-scatter-assemble.md +303 -0
- package/assets/.agent/skills/hyperframes-animation/rules/discrete-text-sequence.md +273 -0
- package/assets/.agent/skills/hyperframes-animation/rules/dynamic-content-sequencing.md +307 -0
- package/assets/.agent/skills/hyperframes-animation/rules/gsap-effects.md +299 -0
- package/assets/.agent/skills/hyperframes-animation/rules/hacker-flip-3d.md +223 -0
- package/assets/.agent/skills/hyperframes-animation/rules/kinetic-beat-slam.md +183 -0
- package/assets/.agent/skills/hyperframes-animation/rules/motion-blur-streak.md +328 -0
- package/assets/.agent/skills/hyperframes-animation/rules/multi-phase-camera.md +273 -0
- package/assets/.agent/skills/hyperframes-animation/rules/orbit-3d-entry.md +301 -0
- package/assets/.agent/skills/hyperframes-animation/rules/physics-press-reaction.md +350 -0
- package/assets/.agent/skills/hyperframes-animation/rules/press-release-spring.md +296 -0
- package/assets/.agent/skills/hyperframes-animation/rules/reactive-displacement.md +277 -0
- package/assets/.agent/skills/hyperframes-animation/rules/scale-swap-transition.md +298 -0
- package/assets/.agent/skills/hyperframes-animation/rules/sine-wave-loop.md +278 -0
- package/assets/.agent/skills/hyperframes-animation/rules/split-tilt-cards.md +277 -0
- package/assets/.agent/skills/hyperframes-animation/rules/spring-pop-entrance.md +273 -0
- package/assets/.agent/skills/hyperframes-animation/rules/stat-bars-and-fills.md +156 -0
- package/assets/.agent/skills/hyperframes-animation/rules/svg-icon-enrichment.md +329 -0
- package/assets/.agent/skills/hyperframes-animation/rules/svg-path-draw.md +274 -0
- package/assets/.agent/skills/hyperframes-animation/rules/vertical-spring-ticker.md +239 -0
- package/assets/.agent/skills/hyperframes-animation/rules/viewport-change.md +349 -0
- package/assets/.agent/skills/hyperframes-animation/rules-index.md +86 -0
- package/assets/.agent/skills/hyperframes-animation/scripts/animation-map.mjs +606 -0
- package/assets/.agent/skills/hyperframes-animation/scripts/package-loader.mjs +288 -0
- package/assets/.agent/skills/hyperframes-animation/scripts/package-loader.test.mjs +62 -0
- package/assets/.agent/skills/hyperframes-animation/techniques.md +507 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/TRANSITION-REGISTRY.md +167 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/catalog.md +127 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-3d.md +12 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-blur.md +51 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-cover.md +43 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-destruction.md +95 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-dissolve.md +66 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-distortion.md +45 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-grid.md +10 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-light.md +49 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-mechanical.md +30 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-other.md +25 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-push.md +41 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-radial.md +37 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/css-scale.md +24 -0
- package/assets/.agent/skills/hyperframes-animation/transitions/overview.md +153 -0
- package/assets/.agent/skills/hyperframes-cli/SKILL.md +113 -0
- package/assets/.agent/skills/hyperframes-cli/references/doctor-browser.md +45 -0
- package/assets/.agent/skills/hyperframes-cli/references/init-and-scaffold.md +51 -0
- package/assets/.agent/skills/hyperframes-cli/references/lambda.md +132 -0
- package/assets/.agent/skills/hyperframes-cli/references/lint-validate-inspect.md +121 -0
- package/assets/.agent/skills/hyperframes-cli/references/preview-render.md +164 -0
- package/assets/.agent/skills/hyperframes-cli/references/upgrade-info-misc.md +75 -0
- package/assets/.agent/skills/hyperframes-core/SKILL.md +78 -0
- package/assets/.agent/skills/hyperframes-core/references/composition-patterns.md +263 -0
- package/assets/.agent/skills/hyperframes-core/references/data-attributes.md +70 -0
- package/assets/.agent/skills/hyperframes-core/references/determinism-rules.md +68 -0
- package/assets/.agent/skills/hyperframes-core/references/full-screen-motion.md +62 -0
- package/assets/.agent/skills/hyperframes-core/references/minimal-composition.md +66 -0
- package/assets/.agent/skills/hyperframes-core/references/script-format.md +49 -0
- package/assets/.agent/skills/hyperframes-core/references/storyboard-format.md +95 -0
- package/assets/.agent/skills/hyperframes-core/references/sub-compositions.md +237 -0
- package/assets/.agent/skills/hyperframes-core/references/subagent-dispatch.md +41 -0
- package/assets/.agent/skills/hyperframes-core/references/tailwind.md +125 -0
- package/assets/.agent/skills/hyperframes-core/references/tracks-and-clips.md +76 -0
- package/assets/.agent/skills/hyperframes-core/references/variables-and-media.md +90 -0
- package/assets/.agent/skills/hyperframes-creative/SKILL.md +70 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/biennale-yellow/FRAME.md +289 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/biennale-yellow/caption-skin.html +221 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/biennale-yellow/frame-showcase.html +1214 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blockframe/FRAME.md +275 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blockframe/caption-skin.html +224 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blockframe/frame-showcase.html +1347 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blue-professional/FRAME.md +307 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blue-professional/caption-skin.html +223 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/blue-professional/frame-showcase.html +1372 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/bold-poster/FRAME.md +275 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/bold-poster/caption-skin.html +230 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/bold-poster/frame-showcase.html +1140 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/broadside/FRAME.md +284 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/broadside/caption-skin.html +225 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/broadside/frame-showcase.html +1166 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/capsule/FRAME.md +284 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/capsule/caption-skin.html +224 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/capsule/frame-showcase.html +1465 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cartesian/FRAME.md +278 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cartesian/caption-skin.html +222 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cartesian/frame-showcase.html +1263 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/claude/FRAME.md +277 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/claude/caption-skin.html +224 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/claude/frame-showcase.html +1439 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cobalt-grid/FRAME.md +265 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cobalt-grid/caption-skin.html +238 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/cobalt-grid/frame-showcase.html +1468 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/coral/FRAME.md +314 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/coral/caption-skin.html +226 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/coral/frame-showcase.html +1268 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/creative-mode/FRAME.md +333 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/creative-mode/caption-skin.html +227 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/creative-mode/frame-showcase.html +1330 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/daisy-days/FRAME.md +274 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/daisy-days/caption-skin.html +230 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/daisy-days/frame-showcase.html +1444 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/editorial-forest/FRAME.md +265 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/editorial-forest/caption-skin.html +223 -0
- package/assets/.agent/skills/hyperframes-creative/frame-presets/editorial-forest/frame-showcase.html +1273 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/bold-energetic.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/clean-corporate.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/dark-premium.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/jewel-rich.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/monochrome.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/nature-earth.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/neon-electric.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/pastel-soft.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/palettes/warm-editorial.md +14 -0
- package/assets/.agent/skills/hyperframes-creative/references/audio-reactive.md +76 -0
- package/assets/.agent/skills/hyperframes-creative/references/beat-direction.md +164 -0
- package/assets/.agent/skills/hyperframes-creative/references/composition-patterns.md +199 -0
- package/assets/.agent/skills/hyperframes-creative/references/data-in-motion.md +19 -0
- package/assets/.agent/skills/hyperframes-creative/references/design-adherence.md +19 -0
- package/assets/.agent/skills/hyperframes-creative/references/design-picker.md +123 -0
- package/assets/.agent/skills/hyperframes-creative/references/design-spec.md +55 -0
- package/assets/.agent/skills/hyperframes-creative/references/house-style.md +73 -0
- package/assets/.agent/skills/hyperframes-creative/references/motion-principles.md +150 -0
- package/assets/.agent/skills/hyperframes-creative/references/narration.md +92 -0
- package/assets/.agent/skills/hyperframes-creative/references/prompt-expansion.md +68 -0
- package/assets/.agent/skills/hyperframes-creative/references/typography.md +218 -0
- package/assets/.agent/skills/hyperframes-creative/references/video-composition.md +63 -0
- package/assets/.agent/skills/hyperframes-creative/references/visual-styles.md +457 -0
- package/assets/.agent/skills/hyperframes-creative/scripts/contrast-report.mjs +353 -0
- package/assets/.agent/skills/hyperframes-creative/scripts/extract-audio-data.py +188 -0
- package/assets/.agent/skills/hyperframes-creative/scripts/package-loader.mjs +288 -0
- package/assets/.agent/skills/hyperframes-creative/scripts/package-loader.test.mjs +62 -0
- package/assets/.agent/skills/hyperframes-creative/templates/design-picker.html +1432 -0
- package/assets/.agent/skills/hyperframes-keyframes/SKILL.md +237 -0
- package/assets/.agent/skills/hyperframes-keyframes/agents/openai.yaml +4 -0
- package/assets/.agent/skills/hyperframes-keyframes/references/keyframe-patterns.md +106 -0
- package/assets/.agent/skills/hyperframes-media/SKILL.md +97 -0
- package/assets/.agent/skills/hyperframes-media/assets/sfx/CREDITS.md +35 -0
- package/assets/.agent/skills/hyperframes-media/assets/sfx/manifest.json +97 -0
- package/assets/.agent/skills/hyperframes-media/references/bgm.md +72 -0
- package/assets/.agent/skills/hyperframes-media/references/captions/authoring.md +159 -0
- package/assets/.agent/skills/hyperframes-media/references/captions/motion.md +87 -0
- package/assets/.agent/skills/hyperframes-media/references/captions/transcript-handling.md +97 -0
- package/assets/.agent/skills/hyperframes-media/references/remove-background.md +143 -0
- package/assets/.agent/skills/hyperframes-media/references/requirements.md +29 -0
- package/assets/.agent/skills/hyperframes-media/references/sfx.md +42 -0
- package/assets/.agent/skills/hyperframes-media/references/transcribe.md +52 -0
- package/assets/.agent/skills/hyperframes-media/references/tts-to-captions.md +24 -0
- package/assets/.agent/skills/hyperframes-media/references/tts.md +135 -0
- package/assets/.agent/skills/hyperframes-media/scripts/audio.mjs +293 -0
- package/assets/.agent/skills/hyperframes-media/scripts/heygen-tts.mjs +121 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/bgm.mjs +235 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/concurrency.mjs +14 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/concurrency.test.mjs +41 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/heygen.mjs +131 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/sfx.mjs +128 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/tts.mjs +298 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/tts.spawn.test.mjs +97 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lib/tts.test.mjs +66 -0
- package/assets/.agent/skills/hyperframes-media/scripts/lyria-recipe.py +128 -0
- package/assets/.agent/skills/hyperframes-media/scripts/wait-bgm.mjs +167 -0
- package/assets/.agent/skills/hyperframes-registry/SKILL.md +101 -0
- package/assets/.agent/skills/hyperframes-registry/examples/add-block.md +51 -0
- package/assets/.agent/skills/hyperframes-registry/examples/add-component.md +73 -0
- package/assets/.agent/skills/hyperframes-registry/references/contributing.md +166 -0
- package/assets/.agent/skills/hyperframes-registry/references/demo-html-pattern.md +54 -0
- package/assets/.agent/skills/hyperframes-registry/references/discovery.md +215 -0
- package/assets/.agent/skills/hyperframes-registry/references/install-locations.md +45 -0
- package/assets/.agent/skills/hyperframes-registry/references/templates.md +417 -0
- package/assets/.agent/skills/hyperframes-registry/references/wiring-blocks.md +61 -0
- package/assets/.agent/skills/hyperframes-registry/references/wiring-components.md +39 -0
- package/assets/.agent/skills/media-use/SKILL.md +124 -0
- package/assets/.agent/skills/media-use/scripts/eval.mjs +369 -0
- package/assets/.agent/skills/media-use/scripts/lib/adopt.mjs +112 -0
- package/assets/.agent/skills/media-use/scripts/lib/bgm-provider.mjs +20 -0
- package/assets/.agent/skills/media-use/scripts/lib/brand-provider.mjs +59 -0
- package/assets/.agent/skills/media-use/scripts/lib/cache.mjs +114 -0
- package/assets/.agent/skills/media-use/scripts/lib/freeze.mjs +26 -0
- package/assets/.agent/skills/media-use/scripts/lib/heygen-search.mjs +51 -0
- package/assets/.agent/skills/media-use/scripts/lib/image-provider.mjs +44 -0
- package/assets/.agent/skills/media-use/scripts/lib/index-gen.mjs +63 -0
- package/assets/.agent/skills/media-use/scripts/lib/manifest.mjs +91 -0
- package/assets/.agent/skills/media-use/scripts/lib/manifest.test.mjs +293 -0
- package/assets/.agent/skills/media-use/scripts/lib/probe.mjs +39 -0
- package/assets/.agent/skills/media-use/scripts/lib/probe.test.mjs +31 -0
- package/assets/.agent/skills/media-use/scripts/lib/providers.mjs +29 -0
- package/assets/.agent/skills/media-use/scripts/lib/sfx-provider.mjs +23 -0
- package/assets/.agent/skills/media-use/scripts/resolve.mjs +247 -0
- package/assets/.agent/skills/media-use/scripts/resolve.test.mjs +247 -0
- package/assets/.agent/skills/motion-graphics/SKILL.md +172 -0
- package/assets/.agent/skills/motion-graphics/agents/builder.md +40 -0
- package/assets/.agent/skills/motion-graphics/agents/director.md +53 -0
- package/assets/.agent/skills/motion-graphics/agents/finalize.md +17 -0
- package/assets/.agent/skills/motion-graphics/catalog-map.md +40 -0
- package/assets/.agent/skills/motion-graphics/categories/asset-fusion/module.md +37 -0
- package/assets/.agent/skills/motion-graphics/categories/charts/module.md +21 -0
- package/assets/.agent/skills/motion-graphics/categories/kinetic-type/module.md +19 -0
- package/assets/.agent/skills/motion-graphics/categories/logo-reveal/module.md +17 -0
- package/assets/.agent/skills/motion-graphics/categories/lower-thirds/module.md +16 -0
- package/assets/.agent/skills/motion-graphics/categories/maps/bake-basemap.mjs +273 -0
- package/assets/.agent/skills/motion-graphics/categories/maps/module.md +61 -0
- package/assets/.agent/skills/motion-graphics/categories/news/module.md +56 -0
- package/assets/.agent/skills/motion-graphics/categories/stat/module.md +21 -0
- package/assets/.agent/skills/motion-graphics/categories/tweet/module.md +16 -0
- package/assets/.agent/skills/motion-graphics/categories/webpage/module.md +21 -0
- package/assets/.agent/skills/motion-graphics/grounding/PROTOCOL.md +64 -0
- package/assets/.agent/skills/motion-graphics/grounding/locate.mjs +227 -0
- package/assets/.agent/skills/motion-graphics/phases/source/guide.md +21 -0
- package/assets/.agent/skills/motion-graphics/references/builder-contract.md +38 -0
- package/assets/.agent/skills/motion-graphics/references/motion-vocabulary.md +43 -0
- package/assets/.agent/skills/motion-graphics/references/shot-plan-ir.md +54 -0
- package/assets/.agent/skills/motion-graphics/samples/asset-fusion/_ref-circle-highlight.html +306 -0
- package/assets/.agent/skills/music-to-video/SKILL.md +197 -0
- package/assets/.agent/skills/music-to-video/references/frame-skeleton.md +100 -0
- package/assets/.agent/skills/music-to-video/references/montage.md +58 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitive-catalog.md +75 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/3d-card-flip/index.html +154 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/assets/gsap.min.js +11 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/bg-flow-field/index.html +326 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/binary-decrypt/index.html +120 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/blur-resolve/index.html +95 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/braam-punch/index.html +135 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/chromatic-split/index.html +146 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/chrome-sweep/index.html +103 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/counting-punch/index.html +154 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/crash-zoom-in/index.html +155 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/datamosh-smear/index.html +166 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/directional-fill/index.html +133 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/dolly-zoom/index.html +137 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/electric-arc/index.html +144 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/flash-cut/index.html +132 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/gooey-metaball/index.html +241 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/hard-cut/index.html +117 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/hypercut-whip/index.html +79 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/iris-open/index.html +104 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/kinetic-letter-in/index.html +92 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/liquid-morph/index.html +131 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/mask-reveal/index.html +109 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/mosaic-pack/index.html +124 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/neon-flicker/index.html +108 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/outline-to-fill/index.html +117 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/palette-flip/index.html +132 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/particle-burst/index.html +141 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/pixel-dissolve/index.html +121 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/radial-burst-lines/index.html +160 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/screen-shake/index.html +113 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/slot-machine-reveal/index.html +130 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/spotlight-sweep/index.html +137 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/staggered-exit/index.html +117 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/text-spectral-rays/USAGE.md +42 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/text-spectral-rays/index.html +313 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/text-wave-distort/index.html +136 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/tile-mosaic/index.html +144 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/typewriter-reveal/index.html +122 -0
- package/assets/.agent/skills/music-to-video/references/motion-primitives/word-grid-burst/index.html +126 -0
- package/assets/.agent/skills/music-to-video/references/planning.md +104 -0
- package/assets/.agent/skills/music-to-video/references/storyboard-format.md +94 -0
- package/assets/.agent/skills/music-to-video/references/template-catalog.md +106 -0
- package/assets/.agent/skills/music-to-video/references/templates/card-flyby/index.html +527 -0
- package/assets/.agent/skills/music-to-video/references/templates/card-flyby/program.json +13 -0
- package/assets/.agent/skills/music-to-video/references/templates/held-message-living-field/index.html +485 -0
- package/assets/.agent/skills/music-to-video/references/templates/held-text-strobe-burst/index.html +302 -0
- package/assets/.agent/skills/music-to-video/references/templates/intro-kinetic-cascade/index.html +610 -0
- package/assets/.agent/skills/music-to-video/references/templates/intro-kinetic-cascade/program.json +41 -0
- package/assets/.agent/skills/music-to-video/references/templates/logo-split-lockup-pulse/index.html +596 -0
- package/assets/.agent/skills/music-to-video/references/templates/poster-tile-mosaic/index.html +589 -0
- package/assets/.agent/skills/music-to-video/references/templates/poster-tile-mosaic/program.json +25 -0
- package/assets/.agent/skills/music-to-video/references/templates/roll-flipbook-word-cycle/index.html +267 -0
- package/assets/.agent/skills/music-to-video/references/templates/split-anchor-word-slot/index.html +594 -0
- package/assets/.agent/skills/music-to-video/references/templates/split-anchor-word-slot/program.json +39 -0
- package/assets/.agent/skills/music-to-video/references/templates/typewriter-phrase-keyword-shuffle/index.html +238 -0
- package/assets/.agent/skills/music-to-video/scripts/analyze-beatgrid.py +531 -0
- package/assets/.agent/skills/music-to-video/scripts/assemble-index.mjs +218 -0
- package/assets/.agent/skills/music-to-video/scripts/lib/storyboard.mjs +249 -0
- package/assets/.agent/skills/music-to-video/scripts/stage-assets.mjs +58 -0
- package/assets/.agent/skills/music-to-video/scripts/validate-plan.mjs +161 -0
- package/assets/.agent/skills/music-to-video/sub-agents/frame-worker.md +75 -0
- package/assets/.agent/skills/pr-to-video/SKILL.md +240 -0
- package/assets/.agent/skills/pr-to-video/references/code-vocabulary.md +111 -0
- package/assets/.agent/skills/pr-to-video/references/cut-catalog.md +215 -0
- package/assets/.agent/skills/pr-to-video/references/motion-language.md +156 -0
- package/assets/.agent/skills/pr-to-video/references/story-design.md +211 -0
- package/assets/.agent/skills/pr-to-video/references/visual-design.md +164 -0
- package/assets/.agent/skills/pr-to-video/scripts/assemble-index.mjs +570 -0
- package/assets/.agent/skills/pr-to-video/scripts/audio.mjs +253 -0
- package/assets/.agent/skills/pr-to-video/scripts/build-frame.mjs +536 -0
- package/assets/.agent/skills/pr-to-video/scripts/captions.mjs +508 -0
- package/assets/.agent/skills/pr-to-video/scripts/fetch-people-avatars.mjs +157 -0
- package/assets/.agent/skills/pr-to-video/scripts/fetch-pr.mjs +164 -0
- package/assets/.agent/skills/pr-to-video/scripts/ingest.mjs +539 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/assets.mjs +55 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/dimensions.mjs +45 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/storyboard.mjs +249 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/tokens.mjs +204 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/transition-registry.mjs +38 -0
- package/assets/.agent/skills/pr-to-video/scripts/lib/transitions.json +71 -0
- package/assets/.agent/skills/pr-to-video/scripts/transitions.mjs +320 -0
- package/assets/.agent/skills/pr-to-video/sub-agents/frame-worker.md +95 -0
- package/assets/.agent/skills/product-launch-video/SKILL.md +208 -0
- package/assets/.agent/skills/product-launch-video/references/cut-catalog.md +220 -0
- package/assets/.agent/skills/product-launch-video/references/motion-language.md +156 -0
- package/assets/.agent/skills/product-launch-video/references/story-design.md +373 -0
- package/assets/.agent/skills/product-launch-video/references/visual-design.md +126 -0
- package/assets/.agent/skills/product-launch-video/scripts/assemble-index.mjs +570 -0
- package/assets/.agent/skills/product-launch-video/scripts/audio.mjs +253 -0
- package/assets/.agent/skills/product-launch-video/scripts/build-frame.mjs +536 -0
- package/assets/.agent/skills/product-launch-video/scripts/captions.mjs +508 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/assets.mjs +55 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/dimensions.mjs +45 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/storyboard.mjs +249 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/tokens.mjs +204 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/transition-registry.mjs +38 -0
- package/assets/.agent/skills/product-launch-video/scripts/lib/transitions.json +71 -0
- package/assets/.agent/skills/product-launch-video/scripts/stage-assets.mjs +39 -0
- package/assets/.agent/skills/product-launch-video/scripts/transitions.mjs +320 -0
- package/assets/.agent/skills/product-launch-video/sub-agents/frame-worker.md +75 -0
- package/assets/.agent/skills/remotion/rules/assets/charts-bar-chart.tsx +173 -173
- package/assets/.agent/skills/remotion/rules/assets/text-animations-typewriter.tsx +100 -100
- package/assets/.agent/skills/remotion/rules/text-animations.md +20 -20
- package/assets/.agent/skills/remotion/rules/videos.md +171 -171
- package/assets/.agent/skills/remotion-real-ui-video/SKILL.md +264 -0
- package/assets/.agent/skills/remotion-real-ui-video/references/anti-patterns.md +114 -0
- package/assets/.agent/skills/remotion-real-ui-video/references/completion-checklist.md +75 -0
- package/assets/.agent/skills/remotion-real-ui-video/references/real-ui-bridge-example.md +93 -0
- package/assets/.agent/skills/remotion-to-hyperframes/SKILL.md +127 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/.gitkeep +0 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/run.sh +249 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/README.md +41 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/expected.json +26 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/hf-src/index.html +61 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/package.json +14 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/remotion.config.ts +13 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/Root.tsx +13 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/TitleCard.tsx +34 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/index.ts +4 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/tsconfig.json +15 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/README.md +54 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/expected.json +29 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/hf-src/index.html +118 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/package.json +14 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/remotion.config.ts +13 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/MultiScene.tsx +105 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/Root.tsx +13 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/index.ts +4 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/tsconfig.json +15 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/setup.sh +34 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/README.md +85 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/expected.json +41 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/hf-src/index.html +269 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/package.json +15 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/remotion.config.ts +13 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Root.tsx +27 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Stargazed.tsx +37 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/AnimatedNumber.tsx +23 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/StatCard.tsx +59 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/UnderlinedText.tsx +47 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/index.ts +4 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/OutroScene.tsx +18 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/StatsScene.tsx +34 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/TitleScene.tsx +55 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/tsconfig.json +15 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/README.md +51 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/01-use-state.tsx +29 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/02-use-effect-deps.tsx +29 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/03-async-metadata.tsx +39 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/04-third-party-react.tsx +30 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/05-lambda-config.tsx +38 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/06-warnings-only.tsx +36 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/07-custom-hook.tsx +28 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/08-mixed.tsx +41 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/expected.json +85 -0
- package/assets/.agent/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/validate.sh +110 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/api-map.md +142 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/escape-hatch.md +115 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/eval.md +140 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/fonts.md +112 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/limitations.md +136 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/lottie.md +121 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/media.md +149 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/parameters.md +167 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/sequencing.md +195 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/timing.md +165 -0
- package/assets/.agent/skills/remotion-to-hyperframes/references/transitions.md +114 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/.gitkeep +0 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/frame_strip.sh +107 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/lint_source.py +358 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/render_diff.sh +103 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/tests/fixtures/blocker.tsx +50 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/tests/fixtures/clean.tsx +46 -0
- package/assets/.agent/skills/remotion-to-hyperframes/scripts/tests/smoke.sh +90 -0
- package/assets/.agent/skills/slideshow/SKILL.md +550 -0
- package/assets/.agent/skills/slideshow/references/standalone-harness.md +1020 -0
- package/assets/.agent/skills/takomi-flow/SKILL.md +244 -244
- package/assets/.agent/skills/talking-head-recut/NOTICE.md +39 -0
- package/assets/.agent/skills/talking-head-recut/SKILL.md +1191 -0
- package/assets/.agent/skills/talking-head-recut/assets/vendor/gsap.min.js +10 -0
- package/assets/.agent/skills/talking-head-recut/references/DESIGN_INDEX.md +145 -0
- package/assets/.agent/skills/talking-head-recut/references/frames/clean.html +92 -0
- package/assets/.agent/skills/talking-head-recut/references/frames/hairline.html +171 -0
- package/assets/.agent/skills/talking-head-recut/references/frames/polaroid.html +131 -0
- package/assets/.agent/skills/talking-head-recut/references/layouts/overlay.html +164 -0
- package/assets/.agent/skills/talking-head-recut/references/layouts/pip.html +143 -0
- package/assets/.agent/skills/talking-head-recut/references/layouts/split.html +121 -0
- package/assets/.agent/skills/talking-head-recut/references/layouts/stack.html +109 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/academic.html +172 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/audit.html +170 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/editorial.html +189 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/geom.html +181 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/minimal.html +130 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/spotlight.html +142 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/swiss.html +188 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/terminal.html +196 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/whiteboard.html +170 -0
- package/assets/.agent/skills/talking-head-recut/references/styles/xhs.html +206 -0
- package/assets/.agent/skills/website-to-video/SKILL.md +145 -0
- package/assets/.agent/skills/website-to-video/assets/sfx/CREDITS.md +35 -0
- package/assets/.agent/skills/website-to-video/assets/sfx/manifest.json +97 -0
- package/assets/.agent/skills/website-to-video/references/beat-builder-guide.md +263 -0
- package/assets/.agent/skills/website-to-video/references/capabilities.md +713 -0
- package/assets/.agent/skills/website-to-video/references/step-0-capture.md +55 -0
- package/assets/.agent/skills/website-to-video/references/step-1-design.md +333 -0
- package/assets/.agent/skills/website-to-video/references/step-2-brief.md +178 -0
- package/assets/.agent/skills/website-to-video/references/step-3-storyboard.md +572 -0
- package/assets/.agent/skills/website-to-video/references/step-4-vo.md +230 -0
- package/assets/.agent/skills/website-to-video/references/step-5-build.md +483 -0
- package/assets/.agent/skills/website-to-video/references/step-6-validate.md +341 -0
- package/assets/.agent/skills/website-to-video/scripts/w2h-verify.mjs +759 -0
- package/docs/features/TakomiFlow_Portable_Plugin.md +82 -82
- package/docs/takomi-flow-onboarding.md +86 -86
- package/docs/takomi-flow-public-distribution.md +94 -94
- package/package.json +1 -1
- package/plugins/takomi-flow/.mcp.json +11 -11
- package/plugins/takomi-flow/assets/capabilities.json +203 -203
- package/plugins/takomi-flow/assets/collection.schema.json +29 -29
- package/plugins/takomi-flow/assets/examples.json +94 -94
- package/plugins/takomi-flow/assets/request.schema.json +91 -91
- package/plugins/takomi-flow/assets/result.schema.json +46 -46
- package/plugins/takomi-flow/assets/templates/image-request.json +17 -17
- package/plugins/takomi-flow/assets/templates/video-request.json +19 -19
- package/plugins/takomi-flow/package.json +38 -38
- package/plugins/takomi-flow/pnpm-lock.yaml +813 -813
- package/plugins/takomi-flow/references/flow-provider-contract.md +349 -349
- package/plugins/takomi-flow/scripts/lib/agent-plan.mjs +140 -140
- package/plugins/takomi-flow/scripts/lib/api.mjs +113 -113
- package/plugins/takomi-flow/scripts/lib/args.mjs +66 -66
- package/plugins/takomi-flow/scripts/lib/audit.mjs +65 -65
- package/plugins/takomi-flow/scripts/lib/browser.mjs +78 -78
- package/plugins/takomi-flow/scripts/lib/capabilities.mjs +11 -11
- package/plugins/takomi-flow/scripts/lib/collect.mjs +53 -53
- package/plugins/takomi-flow/scripts/lib/commands.mjs +192 -192
- package/plugins/takomi-flow/scripts/lib/doctor.mjs +77 -77
- package/plugins/takomi-flow/scripts/lib/examples.mjs +17 -17
- package/plugins/takomi-flow/scripts/lib/flow-media.mjs +39 -39
- package/plugins/takomi-flow/scripts/lib/flow-outcome.mjs +115 -115
- package/plugins/takomi-flow/scripts/lib/flow-project-session.mjs +153 -153
- package/plugins/takomi-flow/scripts/lib/flow-ui.mjs +204 -204
- package/plugins/takomi-flow/scripts/lib/generation.mjs +190 -190
- package/plugins/takomi-flow/scripts/lib/inspect.mjs +81 -81
- package/plugins/takomi-flow/scripts/lib/mcp-prompts.mjs +39 -39
- package/plugins/takomi-flow/scripts/lib/mcp-resources.mjs +16 -16
- package/plugins/takomi-flow/scripts/lib/mcp-tools.mjs +165 -165
- package/plugins/takomi-flow/scripts/lib/media.mjs +78 -78
- package/plugins/takomi-flow/scripts/lib/observe.mjs +54 -54
- package/plugins/takomi-flow/scripts/lib/paths.mjs +37 -37
- package/plugins/takomi-flow/scripts/lib/playwright-loader.mjs +23 -23
- package/plugins/takomi-flow/scripts/lib/prompts.mjs +72 -72
- package/plugins/takomi-flow/scripts/lib/report.mjs +141 -141
- package/plugins/takomi-flow/scripts/lib/request-validator.mjs +73 -73
- package/plugins/takomi-flow/scripts/lib/request.mjs +66 -66
- package/plugins/takomi-flow/scripts/lib/resource-files.mjs +69 -69
- package/plugins/takomi-flow/scripts/lib/result.mjs +31 -31
- package/plugins/takomi-flow/scripts/lib/review.mjs +44 -44
- package/plugins/takomi-flow/scripts/lib/selftest.mjs +153 -153
- package/plugins/takomi-flow/scripts/lib/settings-plan.mjs +44 -44
- package/plugins/takomi-flow/scripts/lib/templates.mjs +37 -37
- package/plugins/takomi-flow/scripts/lib/trusted-chrome.mjs +67 -67
- package/plugins/takomi-flow/scripts/lib/workflow.mjs +56 -56
- package/plugins/takomi-flow/scripts/mcp-server.mjs +18 -18
- package/plugins/takomi-flow/scripts/mcp-smoke.mjs +144 -144
- package/plugins/takomi-flow/scripts/takomi-flow.mjs +17 -17
- package/plugins/takomi-flow/skills/takomi-flow/SKILL.md +244 -244
- package/plugins/takomi-flow/skills/takomi-flow/agents/openai.yaml +7 -7
- package/scripts/install-takomi-flow.ps1 +85 -85
- package/src/skills-catalog.js +42 -9
|
@@ -0,0 +1,1263 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
|
+
<title>Cartesian</title>
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
+
<link
|
|
10
|
+
href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&family=Inter:wght@400;500&display=swap"
|
|
11
|
+
rel="stylesheet"
|
|
12
|
+
/>
|
|
13
|
+
<style id="ds-tokens">
|
|
14
|
+
:root {
|
|
15
|
+
--bg: #ede8e0;
|
|
16
|
+
--bg-2: #e2dbd1;
|
|
17
|
+
--ink: #1a1a1a;
|
|
18
|
+
--gray: #5a5a5a;
|
|
19
|
+
--accent: #8a8178;
|
|
20
|
+
--line: #b8b0a4;
|
|
21
|
+
--white-overlay: rgba(255, 255, 255, 0.3);
|
|
22
|
+
--serif: "Playfair Display", serif;
|
|
23
|
+
--sans: "Inter", sans-serif;
|
|
24
|
+
}
|
|
25
|
+
* {
|
|
26
|
+
margin: 0;
|
|
27
|
+
padding: 0;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
html {
|
|
31
|
+
background: #15140f;
|
|
32
|
+
}
|
|
33
|
+
body {
|
|
34
|
+
background: var(--bg);
|
|
35
|
+
color: var(--gray);
|
|
36
|
+
font-family: var(--sans);
|
|
37
|
+
-webkit-font-smoothing: antialiased;
|
|
38
|
+
}
|
|
39
|
+
.serif {
|
|
40
|
+
font-family: var(--serif);
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
color: var(--ink);
|
|
43
|
+
}
|
|
44
|
+
.label {
|
|
45
|
+
font-family: var(--sans);
|
|
46
|
+
font-weight: 500;
|
|
47
|
+
text-transform: uppercase;
|
|
48
|
+
letter-spacing: 3px;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
color: var(--accent);
|
|
51
|
+
}
|
|
52
|
+
.micro {
|
|
53
|
+
font-family: var(--sans);
|
|
54
|
+
font-weight: 400;
|
|
55
|
+
text-transform: uppercase;
|
|
56
|
+
letter-spacing: 2px;
|
|
57
|
+
font-size: 12px;
|
|
58
|
+
color: var(--accent);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
section {
|
|
62
|
+
padding: 128px 100px;
|
|
63
|
+
position: relative;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
}
|
|
66
|
+
.sec-head {
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: baseline;
|
|
69
|
+
gap: 24px;
|
|
70
|
+
margin-bottom: 72px;
|
|
71
|
+
}
|
|
72
|
+
.sec-head .n {
|
|
73
|
+
font-family: var(--serif);
|
|
74
|
+
font-size: 24px;
|
|
75
|
+
color: var(--accent);
|
|
76
|
+
}
|
|
77
|
+
.sec-head h2 {
|
|
78
|
+
font-family: var(--serif);
|
|
79
|
+
font-weight: 400;
|
|
80
|
+
font-size: 48px;
|
|
81
|
+
line-height: 1.1;
|
|
82
|
+
color: var(--ink);
|
|
83
|
+
}
|
|
84
|
+
.sec-head .sp {
|
|
85
|
+
flex: 1;
|
|
86
|
+
height: 1px;
|
|
87
|
+
background: var(--line);
|
|
88
|
+
align-self: center;
|
|
89
|
+
}
|
|
90
|
+
.sec-head .lab {
|
|
91
|
+
font-family: var(--sans);
|
|
92
|
+
font-weight: 500;
|
|
93
|
+
text-transform: uppercase;
|
|
94
|
+
letter-spacing: 3px;
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
color: var(--accent);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* geometric decoration */
|
|
100
|
+
.geo {
|
|
101
|
+
position: absolute;
|
|
102
|
+
border: 1px solid var(--line);
|
|
103
|
+
border-radius: 50%;
|
|
104
|
+
pointer-events: none;
|
|
105
|
+
}
|
|
106
|
+
.geo.dash {
|
|
107
|
+
border-style: dashed;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* COVER */
|
|
111
|
+
.cover {
|
|
112
|
+
min-height: 100vh;
|
|
113
|
+
padding: 0;
|
|
114
|
+
display: flex;
|
|
115
|
+
flex-direction: column;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
position: relative;
|
|
118
|
+
}
|
|
119
|
+
.cover .geo-ring {
|
|
120
|
+
position: absolute;
|
|
121
|
+
width: 46vw;
|
|
122
|
+
height: 46vw;
|
|
123
|
+
right: -8vw;
|
|
124
|
+
top: 50%;
|
|
125
|
+
transform: translateY(-50%);
|
|
126
|
+
border: 1px solid var(--line);
|
|
127
|
+
border-radius: 50%;
|
|
128
|
+
opacity: 0.5;
|
|
129
|
+
}
|
|
130
|
+
.cover .geo-ring::before {
|
|
131
|
+
content: "";
|
|
132
|
+
position: absolute;
|
|
133
|
+
inset: 14%;
|
|
134
|
+
border: 1px dashed var(--line);
|
|
135
|
+
border-radius: 50%;
|
|
136
|
+
opacity: 0.7;
|
|
137
|
+
}
|
|
138
|
+
.cover .inner {
|
|
139
|
+
padding: 0 8vw;
|
|
140
|
+
position: relative;
|
|
141
|
+
z-index: 2;
|
|
142
|
+
max-width: 72%;
|
|
143
|
+
}
|
|
144
|
+
.cover .label {
|
|
145
|
+
margin-bottom: 32px;
|
|
146
|
+
}
|
|
147
|
+
.cover h1 {
|
|
148
|
+
font-family: var(--serif);
|
|
149
|
+
font-weight: 400;
|
|
150
|
+
color: var(--ink);
|
|
151
|
+
font-size: clamp(56px, 8vw, 118px);
|
|
152
|
+
line-height: 1.06;
|
|
153
|
+
}
|
|
154
|
+
.cover h1 em {
|
|
155
|
+
font-style: italic;
|
|
156
|
+
}
|
|
157
|
+
.cover .sub {
|
|
158
|
+
font-family: var(--sans);
|
|
159
|
+
font-weight: 400;
|
|
160
|
+
font-size: clamp(16px, 1.5vw, 22px);
|
|
161
|
+
line-height: 1.6;
|
|
162
|
+
color: var(--gray);
|
|
163
|
+
margin-top: 32px;
|
|
164
|
+
max-width: 620px;
|
|
165
|
+
}
|
|
166
|
+
.cover .haccent {
|
|
167
|
+
width: 20vw;
|
|
168
|
+
height: 1px;
|
|
169
|
+
background: var(--ink);
|
|
170
|
+
margin-top: 48px;
|
|
171
|
+
}
|
|
172
|
+
.cover .meta {
|
|
173
|
+
position: absolute;
|
|
174
|
+
left: 8vw;
|
|
175
|
+
bottom: 64px;
|
|
176
|
+
display: flex;
|
|
177
|
+
gap: 48px;
|
|
178
|
+
z-index: 2;
|
|
179
|
+
}
|
|
180
|
+
.cover .meta .m .v {
|
|
181
|
+
font-family: var(--serif);
|
|
182
|
+
font-size: 20px;
|
|
183
|
+
color: var(--ink);
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
}
|
|
186
|
+
.cover .meta .m .k {
|
|
187
|
+
font-family: var(--sans);
|
|
188
|
+
font-weight: 500;
|
|
189
|
+
text-transform: uppercase;
|
|
190
|
+
letter-spacing: 2px;
|
|
191
|
+
font-size: 11px;
|
|
192
|
+
color: var(--accent);
|
|
193
|
+
margin-top: 6px;
|
|
194
|
+
}
|
|
195
|
+
.cover .vline {
|
|
196
|
+
position: absolute;
|
|
197
|
+
left: 5vw;
|
|
198
|
+
top: 0;
|
|
199
|
+
bottom: 0;
|
|
200
|
+
width: 1px;
|
|
201
|
+
background: var(--line);
|
|
202
|
+
opacity: 0.4;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/* PALETTE */
|
|
206
|
+
.swatches {
|
|
207
|
+
display: grid;
|
|
208
|
+
grid-template-columns: repeat(6, 1fr);
|
|
209
|
+
gap: 28px;
|
|
210
|
+
}
|
|
211
|
+
.sw .chip {
|
|
212
|
+
height: 130px;
|
|
213
|
+
border: 1px solid var(--line);
|
|
214
|
+
}
|
|
215
|
+
.sw .name {
|
|
216
|
+
font-family: var(--serif);
|
|
217
|
+
font-size: 20px;
|
|
218
|
+
color: var(--ink);
|
|
219
|
+
margin-top: 16px;
|
|
220
|
+
}
|
|
221
|
+
.sw .hex {
|
|
222
|
+
font-family: var(--sans);
|
|
223
|
+
font-size: 12px;
|
|
224
|
+
letter-spacing: 1px;
|
|
225
|
+
color: var(--accent);
|
|
226
|
+
margin-top: 6px;
|
|
227
|
+
}
|
|
228
|
+
.sw .role {
|
|
229
|
+
font-size: 12px;
|
|
230
|
+
line-height: 1.5;
|
|
231
|
+
color: var(--gray);
|
|
232
|
+
margin-top: 10px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/* TYPE */
|
|
236
|
+
.type-row {
|
|
237
|
+
display: grid;
|
|
238
|
+
grid-template-columns: 220px 1fr;
|
|
239
|
+
align-items: center;
|
|
240
|
+
padding: 26px 0;
|
|
241
|
+
border-bottom: 1px solid var(--line);
|
|
242
|
+
}
|
|
243
|
+
.type-row .tok {
|
|
244
|
+
font-family: var(--sans);
|
|
245
|
+
font-weight: 500;
|
|
246
|
+
text-transform: uppercase;
|
|
247
|
+
letter-spacing: 2px;
|
|
248
|
+
font-size: 12px;
|
|
249
|
+
color: var(--accent);
|
|
250
|
+
}
|
|
251
|
+
.type-row .m {
|
|
252
|
+
font-size: 12px;
|
|
253
|
+
color: var(--gray);
|
|
254
|
+
margin-top: 8px;
|
|
255
|
+
line-height: 1.5;
|
|
256
|
+
}
|
|
257
|
+
.type-row .spec {
|
|
258
|
+
overflow: hidden;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* COMPONENTS */
|
|
262
|
+
.cnote {
|
|
263
|
+
font-family: var(--sans);
|
|
264
|
+
font-weight: 500;
|
|
265
|
+
text-transform: uppercase;
|
|
266
|
+
letter-spacing: 2px;
|
|
267
|
+
font-size: 12px;
|
|
268
|
+
color: var(--accent);
|
|
269
|
+
margin-bottom: 22px;
|
|
270
|
+
}
|
|
271
|
+
.cgrid {
|
|
272
|
+
display: grid;
|
|
273
|
+
grid-template-columns: repeat(12, 1fr);
|
|
274
|
+
gap: 48px;
|
|
275
|
+
margin-bottom: 64px;
|
|
276
|
+
}
|
|
277
|
+
.s3 {
|
|
278
|
+
grid-column: span 3;
|
|
279
|
+
}
|
|
280
|
+
.s4 {
|
|
281
|
+
grid-column: span 4;
|
|
282
|
+
}
|
|
283
|
+
.s5 {
|
|
284
|
+
grid-column: span 5;
|
|
285
|
+
}
|
|
286
|
+
.s6 {
|
|
287
|
+
grid-column: span 6;
|
|
288
|
+
}
|
|
289
|
+
.s7 {
|
|
290
|
+
grid-column: span 7;
|
|
291
|
+
}
|
|
292
|
+
.c-card {
|
|
293
|
+
border: 1px solid var(--line);
|
|
294
|
+
background: var(--white-overlay);
|
|
295
|
+
padding: 36px 28px;
|
|
296
|
+
}
|
|
297
|
+
.c-card .ic {
|
|
298
|
+
width: 40px;
|
|
299
|
+
height: 40px;
|
|
300
|
+
border: 1px solid var(--line);
|
|
301
|
+
border-radius: 50%;
|
|
302
|
+
display: grid;
|
|
303
|
+
place-items: center;
|
|
304
|
+
font-family: var(--serif);
|
|
305
|
+
color: var(--accent);
|
|
306
|
+
font-size: 16px;
|
|
307
|
+
margin-bottom: 24px;
|
|
308
|
+
}
|
|
309
|
+
.c-card .t {
|
|
310
|
+
font-family: var(--serif);
|
|
311
|
+
font-size: 21px;
|
|
312
|
+
color: var(--ink);
|
|
313
|
+
line-height: 1.2;
|
|
314
|
+
}
|
|
315
|
+
.c-card .x {
|
|
316
|
+
font-size: 13px;
|
|
317
|
+
line-height: 1.6;
|
|
318
|
+
color: var(--gray);
|
|
319
|
+
margin-top: 12px;
|
|
320
|
+
}
|
|
321
|
+
.agenda .row {
|
|
322
|
+
display: flex;
|
|
323
|
+
align-items: baseline;
|
|
324
|
+
gap: 24px;
|
|
325
|
+
padding: 18px 0;
|
|
326
|
+
border-bottom: 1px solid var(--line);
|
|
327
|
+
}
|
|
328
|
+
.agenda .row .num {
|
|
329
|
+
font-family: var(--serif);
|
|
330
|
+
font-size: 24px;
|
|
331
|
+
color: var(--accent);
|
|
332
|
+
min-width: 48px;
|
|
333
|
+
}
|
|
334
|
+
.agenda .row .t {
|
|
335
|
+
font-family: var(--serif);
|
|
336
|
+
font-size: 22px;
|
|
337
|
+
color: var(--ink);
|
|
338
|
+
}
|
|
339
|
+
.agenda .row .d {
|
|
340
|
+
font-size: 13px;
|
|
341
|
+
color: var(--gray);
|
|
342
|
+
margin-left: auto;
|
|
343
|
+
}
|
|
344
|
+
.timeline {
|
|
345
|
+
border-top: 1px solid var(--line);
|
|
346
|
+
display: flex;
|
|
347
|
+
gap: 40px;
|
|
348
|
+
padding-top: 24px;
|
|
349
|
+
}
|
|
350
|
+
.timeline .it {
|
|
351
|
+
flex: 1;
|
|
352
|
+
}
|
|
353
|
+
.timeline .it .y {
|
|
354
|
+
font-size: 12px;
|
|
355
|
+
letter-spacing: 2px;
|
|
356
|
+
text-transform: uppercase;
|
|
357
|
+
color: var(--accent);
|
|
358
|
+
}
|
|
359
|
+
.timeline .it .t {
|
|
360
|
+
font-family: var(--serif);
|
|
361
|
+
font-size: 19px;
|
|
362
|
+
color: var(--ink);
|
|
363
|
+
margin-top: 8px;
|
|
364
|
+
}
|
|
365
|
+
.timeline .it .x {
|
|
366
|
+
font-size: 12px;
|
|
367
|
+
line-height: 1.5;
|
|
368
|
+
color: var(--gray);
|
|
369
|
+
margin-top: 8px;
|
|
370
|
+
}
|
|
371
|
+
.stats {
|
|
372
|
+
border-top: 1px solid var(--line);
|
|
373
|
+
display: flex;
|
|
374
|
+
gap: 40px;
|
|
375
|
+
padding-top: 24px;
|
|
376
|
+
}
|
|
377
|
+
.stats .st .f {
|
|
378
|
+
font-family: var(--serif);
|
|
379
|
+
font-size: 40px;
|
|
380
|
+
color: var(--ink);
|
|
381
|
+
}
|
|
382
|
+
.stats .st .l {
|
|
383
|
+
font-size: 11px;
|
|
384
|
+
letter-spacing: 2px;
|
|
385
|
+
text-transform: uppercase;
|
|
386
|
+
color: var(--accent);
|
|
387
|
+
margin-top: 8px;
|
|
388
|
+
}
|
|
389
|
+
.imgph {
|
|
390
|
+
aspect-ratio: 4/3;
|
|
391
|
+
background: var(--bg-2);
|
|
392
|
+
border: 1px solid var(--line);
|
|
393
|
+
position: relative;
|
|
394
|
+
display: grid;
|
|
395
|
+
place-items: center;
|
|
396
|
+
}
|
|
397
|
+
.imgph::before,
|
|
398
|
+
.imgph::after {
|
|
399
|
+
content: "";
|
|
400
|
+
position: absolute;
|
|
401
|
+
left: 50%;
|
|
402
|
+
top: 50%;
|
|
403
|
+
width: 150%;
|
|
404
|
+
height: 1px;
|
|
405
|
+
background: var(--line);
|
|
406
|
+
transform-origin: center;
|
|
407
|
+
}
|
|
408
|
+
.imgph::before {
|
|
409
|
+
transform: translate(-50%, -50%) rotate(30deg);
|
|
410
|
+
}
|
|
411
|
+
.imgph::after {
|
|
412
|
+
transform: translate(-50%, -50%) rotate(-30deg);
|
|
413
|
+
}
|
|
414
|
+
.imgph span {
|
|
415
|
+
position: relative;
|
|
416
|
+
z-index: 2;
|
|
417
|
+
font-family: var(--sans);
|
|
418
|
+
font-weight: 500;
|
|
419
|
+
text-transform: uppercase;
|
|
420
|
+
letter-spacing: 2px;
|
|
421
|
+
font-size: 11px;
|
|
422
|
+
color: var(--accent);
|
|
423
|
+
background: var(--bg-2);
|
|
424
|
+
padding: 6px 10px;
|
|
425
|
+
}
|
|
426
|
+
.team {
|
|
427
|
+
display: flex;
|
|
428
|
+
gap: 36px;
|
|
429
|
+
}
|
|
430
|
+
.team .p {
|
|
431
|
+
text-align: center;
|
|
432
|
+
}
|
|
433
|
+
.team .ph {
|
|
434
|
+
width: 110px;
|
|
435
|
+
height: 110px;
|
|
436
|
+
border-radius: 50%;
|
|
437
|
+
border: 1px solid var(--line);
|
|
438
|
+
background: var(--bg-2);
|
|
439
|
+
display: grid;
|
|
440
|
+
place-items: center;
|
|
441
|
+
font-family: var(--serif);
|
|
442
|
+
font-size: 34px;
|
|
443
|
+
color: var(--accent);
|
|
444
|
+
}
|
|
445
|
+
.team .nm {
|
|
446
|
+
font-family: var(--serif);
|
|
447
|
+
font-size: 17px;
|
|
448
|
+
color: var(--ink);
|
|
449
|
+
margin-top: 14px;
|
|
450
|
+
}
|
|
451
|
+
.team .ro {
|
|
452
|
+
font-size: 11px;
|
|
453
|
+
letter-spacing: 2px;
|
|
454
|
+
text-transform: uppercase;
|
|
455
|
+
color: var(--accent);
|
|
456
|
+
margin-top: 4px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
/* COMPOSITIONS */
|
|
460
|
+
.gallery {
|
|
461
|
+
display: grid;
|
|
462
|
+
grid-template-columns: 1fr 1fr;
|
|
463
|
+
gap: 48px;
|
|
464
|
+
}
|
|
465
|
+
.fw .flabel {
|
|
466
|
+
display: flex;
|
|
467
|
+
gap: 14px;
|
|
468
|
+
align-items: baseline;
|
|
469
|
+
margin-bottom: 16px;
|
|
470
|
+
font-family: var(--sans);
|
|
471
|
+
font-weight: 500;
|
|
472
|
+
text-transform: uppercase;
|
|
473
|
+
letter-spacing: 2px;
|
|
474
|
+
font-size: 12px;
|
|
475
|
+
color: var(--accent);
|
|
476
|
+
}
|
|
477
|
+
.fw .flabel b {
|
|
478
|
+
color: var(--ink);
|
|
479
|
+
}
|
|
480
|
+
.frame {
|
|
481
|
+
aspect-ratio: 16/9;
|
|
482
|
+
container-type: size;
|
|
483
|
+
position: relative;
|
|
484
|
+
overflow: hidden;
|
|
485
|
+
background: var(--bg);
|
|
486
|
+
border: 1px solid var(--line);
|
|
487
|
+
}
|
|
488
|
+
.frame > .body {
|
|
489
|
+
position: absolute;
|
|
490
|
+
inset: 0;
|
|
491
|
+
z-index: 2;
|
|
492
|
+
}
|
|
493
|
+
.frame .fgeo {
|
|
494
|
+
position: absolute;
|
|
495
|
+
border: 1px solid var(--line);
|
|
496
|
+
border-radius: 50%;
|
|
497
|
+
pointer-events: none;
|
|
498
|
+
z-index: 1;
|
|
499
|
+
}
|
|
500
|
+
.frame .fgeo.dash {
|
|
501
|
+
border-style: dashed;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
/* f1 cover */
|
|
505
|
+
.tf1 .body {
|
|
506
|
+
display: flex;
|
|
507
|
+
flex-direction: column;
|
|
508
|
+
justify-content: center;
|
|
509
|
+
padding: 0 7cqw;
|
|
510
|
+
}
|
|
511
|
+
.tf1 .lab {
|
|
512
|
+
font-family: var(--sans);
|
|
513
|
+
font-weight: 500;
|
|
514
|
+
text-transform: uppercase;
|
|
515
|
+
letter-spacing: 0.3cqw;
|
|
516
|
+
font-size: 1cqw;
|
|
517
|
+
color: var(--accent);
|
|
518
|
+
margin-bottom: 2cqw;
|
|
519
|
+
}
|
|
520
|
+
.tf1 h3 {
|
|
521
|
+
font-family: var(--serif);
|
|
522
|
+
font-size: 8cqw;
|
|
523
|
+
line-height: 1.04;
|
|
524
|
+
color: var(--ink);
|
|
525
|
+
max-width: 62cqw;
|
|
526
|
+
}
|
|
527
|
+
.tf1 h3 em {
|
|
528
|
+
font-style: italic;
|
|
529
|
+
}
|
|
530
|
+
.tf1 .sub {
|
|
531
|
+
font-size: 1.4cqw;
|
|
532
|
+
line-height: 1.55;
|
|
533
|
+
color: var(--gray);
|
|
534
|
+
margin-top: 2cqw;
|
|
535
|
+
max-width: 46cqw;
|
|
536
|
+
}
|
|
537
|
+
.tf1 .ha {
|
|
538
|
+
width: 18cqw;
|
|
539
|
+
height: 0.1cqw;
|
|
540
|
+
background: var(--ink);
|
|
541
|
+
margin-top: 3cqw;
|
|
542
|
+
}
|
|
543
|
+
.tf1 .ring {
|
|
544
|
+
width: 34cqw;
|
|
545
|
+
height: 34cqw;
|
|
546
|
+
right: -6cqw;
|
|
547
|
+
top: 50%;
|
|
548
|
+
transform: translateY(-50%);
|
|
549
|
+
opacity: 0.5;
|
|
550
|
+
}
|
|
551
|
+
.tf1 .ring::before {
|
|
552
|
+
content: "";
|
|
553
|
+
position: absolute;
|
|
554
|
+
inset: 16%;
|
|
555
|
+
border: 1px dashed var(--line);
|
|
556
|
+
border-radius: 50%;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/* f2 agenda (sparse list) */
|
|
560
|
+
.tf2 .body {
|
|
561
|
+
display: flex;
|
|
562
|
+
flex-direction: column;
|
|
563
|
+
justify-content: center;
|
|
564
|
+
padding: 0 7cqw;
|
|
565
|
+
}
|
|
566
|
+
.tf2 .lab {
|
|
567
|
+
font-family: var(--sans);
|
|
568
|
+
font-weight: 500;
|
|
569
|
+
text-transform: uppercase;
|
|
570
|
+
letter-spacing: 0.3cqw;
|
|
571
|
+
font-size: 1cqw;
|
|
572
|
+
color: var(--accent);
|
|
573
|
+
margin-bottom: 1.6cqw;
|
|
574
|
+
}
|
|
575
|
+
.tf2 h3 {
|
|
576
|
+
font-family: var(--serif);
|
|
577
|
+
font-size: 4cqw;
|
|
578
|
+
color: var(--ink);
|
|
579
|
+
margin-bottom: 2.4cqw;
|
|
580
|
+
}
|
|
581
|
+
.tf2 .row {
|
|
582
|
+
display: flex;
|
|
583
|
+
align-items: baseline;
|
|
584
|
+
gap: 2cqw;
|
|
585
|
+
padding: 1.3cqw 0;
|
|
586
|
+
border-bottom: 0.06cqw solid var(--line);
|
|
587
|
+
}
|
|
588
|
+
.tf2 .row .nm {
|
|
589
|
+
font-family: var(--serif);
|
|
590
|
+
font-size: 1.8cqw;
|
|
591
|
+
color: var(--accent);
|
|
592
|
+
min-width: 4cqw;
|
|
593
|
+
}
|
|
594
|
+
.tf2 .row .t {
|
|
595
|
+
font-family: var(--serif);
|
|
596
|
+
font-size: 2.2cqw;
|
|
597
|
+
color: var(--ink);
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
/* f3 quote */
|
|
601
|
+
.tf3 .body {
|
|
602
|
+
display: flex;
|
|
603
|
+
flex-direction: column;
|
|
604
|
+
justify-content: center;
|
|
605
|
+
align-items: center;
|
|
606
|
+
text-align: center;
|
|
607
|
+
padding: 0 9cqw;
|
|
608
|
+
}
|
|
609
|
+
.tf3 .qm {
|
|
610
|
+
font-family: var(--serif);
|
|
611
|
+
font-size: 9cqw;
|
|
612
|
+
line-height: 0.5;
|
|
613
|
+
color: var(--line);
|
|
614
|
+
height: 5cqw;
|
|
615
|
+
}
|
|
616
|
+
.tf3 .q {
|
|
617
|
+
font-family: var(--serif);
|
|
618
|
+
font-size: 4cqw;
|
|
619
|
+
line-height: 1.2;
|
|
620
|
+
color: var(--ink);
|
|
621
|
+
margin-top: 1cqw;
|
|
622
|
+
}
|
|
623
|
+
.tf3 .at {
|
|
624
|
+
font-family: var(--sans);
|
|
625
|
+
font-weight: 400;
|
|
626
|
+
text-transform: uppercase;
|
|
627
|
+
letter-spacing: 0.25cqw;
|
|
628
|
+
font-size: 1cqw;
|
|
629
|
+
color: var(--accent);
|
|
630
|
+
margin-top: 2.4cqw;
|
|
631
|
+
}
|
|
632
|
+
.tf3 .ring {
|
|
633
|
+
width: 26cqw;
|
|
634
|
+
height: 26cqw;
|
|
635
|
+
left: 50%;
|
|
636
|
+
top: 50%;
|
|
637
|
+
transform: translate(-50%, -50%);
|
|
638
|
+
opacity: 0.3;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
/* f4 closing */
|
|
642
|
+
.tf4 .body {
|
|
643
|
+
display: flex;
|
|
644
|
+
flex-direction: column;
|
|
645
|
+
justify-content: center;
|
|
646
|
+
align-items: center;
|
|
647
|
+
text-align: center;
|
|
648
|
+
}
|
|
649
|
+
.tf4 .lab {
|
|
650
|
+
font-family: var(--sans);
|
|
651
|
+
font-weight: 500;
|
|
652
|
+
text-transform: uppercase;
|
|
653
|
+
letter-spacing: 0.3cqw;
|
|
654
|
+
font-size: 1cqw;
|
|
655
|
+
color: var(--accent);
|
|
656
|
+
margin-bottom: 2cqw;
|
|
657
|
+
}
|
|
658
|
+
.tf4 h3 {
|
|
659
|
+
font-family: var(--serif);
|
|
660
|
+
font-size: 7cqw;
|
|
661
|
+
line-height: 1.04;
|
|
662
|
+
color: var(--ink);
|
|
663
|
+
}
|
|
664
|
+
.tf4 h3 em {
|
|
665
|
+
font-style: italic;
|
|
666
|
+
}
|
|
667
|
+
.tf4 .ha {
|
|
668
|
+
width: 14cqw;
|
|
669
|
+
height: 0.1cqw;
|
|
670
|
+
background: var(--ink);
|
|
671
|
+
margin-top: 2.6cqw;
|
|
672
|
+
}
|
|
673
|
+
.tf4 .ring {
|
|
674
|
+
width: 40cqw;
|
|
675
|
+
height: 40cqw;
|
|
676
|
+
left: 50%;
|
|
677
|
+
top: 50%;
|
|
678
|
+
transform: translate(-50%, -50%);
|
|
679
|
+
opacity: 0.28;
|
|
680
|
+
}
|
|
681
|
+
.tf4 .ring::before {
|
|
682
|
+
content: "";
|
|
683
|
+
position: absolute;
|
|
684
|
+
inset: 18%;
|
|
685
|
+
border: 1px dashed var(--line);
|
|
686
|
+
border-radius: 50%;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
/* PRINCIPLES */
|
|
690
|
+
.dos {
|
|
691
|
+
display: grid;
|
|
692
|
+
grid-template-columns: 1fr 1fr;
|
|
693
|
+
gap: 48px;
|
|
694
|
+
}
|
|
695
|
+
.do-card {
|
|
696
|
+
border: 1px solid var(--line);
|
|
697
|
+
background: var(--white-overlay);
|
|
698
|
+
padding: 40px;
|
|
699
|
+
}
|
|
700
|
+
.do-card h4 {
|
|
701
|
+
font-family: var(--serif);
|
|
702
|
+
font-size: 30px;
|
|
703
|
+
color: var(--ink);
|
|
704
|
+
margin-bottom: 24px;
|
|
705
|
+
}
|
|
706
|
+
.do-card ul {
|
|
707
|
+
list-style: none;
|
|
708
|
+
}
|
|
709
|
+
.do-card li {
|
|
710
|
+
font-size: 14px;
|
|
711
|
+
line-height: 1.6;
|
|
712
|
+
padding-left: 24px;
|
|
713
|
+
position: relative;
|
|
714
|
+
margin-bottom: 14px;
|
|
715
|
+
color: var(--gray);
|
|
716
|
+
}
|
|
717
|
+
.do-card li::before {
|
|
718
|
+
position: absolute;
|
|
719
|
+
left: 0;
|
|
720
|
+
font-family: var(--serif);
|
|
721
|
+
color: var(--accent);
|
|
722
|
+
}
|
|
723
|
+
.do-card.do li::before {
|
|
724
|
+
content: "\2014";
|
|
725
|
+
}
|
|
726
|
+
.do-card.dont li::before {
|
|
727
|
+
content: "\00d7";
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.foot {
|
|
731
|
+
padding: 64px 100px;
|
|
732
|
+
border-top: 1px solid var(--line);
|
|
733
|
+
display: flex;
|
|
734
|
+
justify-content: space-between;
|
|
735
|
+
align-items: center;
|
|
736
|
+
}
|
|
737
|
+
.foot .l {
|
|
738
|
+
font-family: var(--serif);
|
|
739
|
+
font-size: 26px;
|
|
740
|
+
color: var(--ink);
|
|
741
|
+
}
|
|
742
|
+
.foot .r {
|
|
743
|
+
font-family: var(--sans);
|
|
744
|
+
font-weight: 500;
|
|
745
|
+
text-transform: uppercase;
|
|
746
|
+
letter-spacing: 2px;
|
|
747
|
+
font-size: 11px;
|
|
748
|
+
color: var(--accent);
|
|
749
|
+
}
|
|
750
|
+
@media (max-width: 1100px) {
|
|
751
|
+
.gallery {
|
|
752
|
+
grid-template-columns: 1fr;
|
|
753
|
+
}
|
|
754
|
+
.swatches {
|
|
755
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
</style>
|
|
759
|
+
<link
|
|
760
|
+
rel="stylesheet"
|
|
761
|
+
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap"
|
|
762
|
+
/>
|
|
763
|
+
<link
|
|
764
|
+
rel="stylesheet"
|
|
765
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
|
|
766
|
+
/>
|
|
767
|
+
<style id="ft-override">
|
|
768
|
+
:root {
|
|
769
|
+
--primary: #ede8e0 !important;
|
|
770
|
+
--secondary: #1a1a1a !important;
|
|
771
|
+
--tertiary: #b8b0a4 !important;
|
|
772
|
+
--accent: #8a8178 !important;
|
|
773
|
+
--f-disp: "Playfair Display", sans-serif !important;
|
|
774
|
+
--f-body: "Inter", sans-serif !important;
|
|
775
|
+
--bg: #ede8e0 !important;
|
|
776
|
+
--ink: #1a1a1a !important;
|
|
777
|
+
--accent: #8a8178 !important;
|
|
778
|
+
--line: #b8b0a4 !important;
|
|
779
|
+
--serif: "Playfair Display", sans-serif !important;
|
|
780
|
+
--sans: "Inter", sans-serif !important;
|
|
781
|
+
--bg-2: #e2dbd1 !important;
|
|
782
|
+
--gray: #5a5a5a !important;
|
|
783
|
+
}
|
|
784
|
+
</style>
|
|
785
|
+
</head>
|
|
786
|
+
<body>
|
|
787
|
+
<!-- COVER -->
|
|
788
|
+
<section class="cover">
|
|
789
|
+
<div class="vline"></div>
|
|
790
|
+
<div class="geo-ring"></div>
|
|
791
|
+
<div class="inner">
|
|
792
|
+
<div class="label">Cartesian — Frame System</div>
|
|
793
|
+
<h1>Restraint,<br />drawn in <em>one line.</em></h1>
|
|
794
|
+
<div class="sub">
|
|
795
|
+
A quiet museum-catalog system in motion — Playfair Display, Inter, and a five-tone
|
|
796
|
+
warm-stone palette, framed by single 1px taupe hairlines and compass-drafted geometry.
|
|
797
|
+
</div>
|
|
798
|
+
</div>
|
|
799
|
+
<div class="meta">
|
|
800
|
+
<div class="m">
|
|
801
|
+
<div class="v">1920 × 1080</div>
|
|
802
|
+
<div class="k">Frame</div>
|
|
803
|
+
</div>
|
|
804
|
+
<div class="m">
|
|
805
|
+
<div class="v">Vol. 01</div>
|
|
806
|
+
<div class="k">Edition</div>
|
|
807
|
+
</div>
|
|
808
|
+
<div class="m">
|
|
809
|
+
<div class="v">Stone / Ink</div>
|
|
810
|
+
<div class="k">Palette</div>
|
|
811
|
+
</div>
|
|
812
|
+
</div>
|
|
813
|
+
</section>
|
|
814
|
+
|
|
815
|
+
<!-- PALETTE -->
|
|
816
|
+
<section>
|
|
817
|
+
<div class="sec-head">
|
|
818
|
+
<span class="n">01</span>
|
|
819
|
+
<h2>Palette</h2>
|
|
820
|
+
<span class="sp"></span><span class="lab">Five Stones + Ink</span>
|
|
821
|
+
</div>
|
|
822
|
+
<div class="swatches">
|
|
823
|
+
<div class="sw">
|
|
824
|
+
<div class="chip" style="background: var(--bg)"></div>
|
|
825
|
+
<div class="name">BG Primary</div>
|
|
826
|
+
<div class="hex">#EDE8E0</div>
|
|
827
|
+
<div class="role">Warm sandstone canvas.</div>
|
|
828
|
+
</div>
|
|
829
|
+
<div class="sw">
|
|
830
|
+
<div class="chip" style="background: var(--bg-2)"></div>
|
|
831
|
+
<div class="name">BG Secondary</div>
|
|
832
|
+
<div class="hex">#E2DBD1</div>
|
|
833
|
+
<div class="role">Deeper stone for placeholders.</div>
|
|
834
|
+
</div>
|
|
835
|
+
<div class="sw">
|
|
836
|
+
<div class="chip" style="background: var(--ink)"></div>
|
|
837
|
+
<div class="name">Ink</div>
|
|
838
|
+
<div class="hex">#1A1A1A</div>
|
|
839
|
+
<div class="role">Headlines + the one black rule.</div>
|
|
840
|
+
</div>
|
|
841
|
+
<div class="sw">
|
|
842
|
+
<div class="chip" style="background: var(--gray)"></div>
|
|
843
|
+
<div class="name">Gray</div>
|
|
844
|
+
<div class="hex">#5A5A5A</div>
|
|
845
|
+
<div class="role">Body paragraphs.</div>
|
|
846
|
+
</div>
|
|
847
|
+
<div class="sw">
|
|
848
|
+
<div class="chip" style="background: var(--accent)"></div>
|
|
849
|
+
<div class="name">Accent</div>
|
|
850
|
+
<div class="hex">#8A8178</div>
|
|
851
|
+
<div class="role">Labels, numerals, small text.</div>
|
|
852
|
+
</div>
|
|
853
|
+
<div class="sw">
|
|
854
|
+
<div
|
|
855
|
+
class="chip"
|
|
856
|
+
style="
|
|
857
|
+
background: var(--bg);
|
|
858
|
+
border-color: var(--line);
|
|
859
|
+
box-shadow:
|
|
860
|
+
inset 0 0 0 8px var(--bg),
|
|
861
|
+
inset 0 0 0 9px var(--line);
|
|
862
|
+
"
|
|
863
|
+
></div>
|
|
864
|
+
<div class="name">Line</div>
|
|
865
|
+
<div class="hex">#B8B0A4</div>
|
|
866
|
+
<div class="role">The universal 1px hairline.</div>
|
|
867
|
+
</div>
|
|
868
|
+
</div>
|
|
869
|
+
</section>
|
|
870
|
+
|
|
871
|
+
<!-- TYPOGRAPHY -->
|
|
872
|
+
<section>
|
|
873
|
+
<div class="sec-head">
|
|
874
|
+
<span class="n">02</span>
|
|
875
|
+
<h2>Typography</h2>
|
|
876
|
+
<span class="sp"></span><span class="lab">Playfair + Inter</span>
|
|
877
|
+
</div>
|
|
878
|
+
<div class="type-row">
|
|
879
|
+
<div>
|
|
880
|
+
<div class="tok">display</div>
|
|
881
|
+
<div class="m">Playfair Display 400 · sentence case</div>
|
|
882
|
+
</div>
|
|
883
|
+
<div class="spec">
|
|
884
|
+
<span class="serif" style="font-size: 84px; line-height: 1.05">Considered.</span>
|
|
885
|
+
</div>
|
|
886
|
+
</div>
|
|
887
|
+
<div class="type-row">
|
|
888
|
+
<div>
|
|
889
|
+
<div class="tok">h2</div>
|
|
890
|
+
<div class="m">Playfair Display 400 · slide headline</div>
|
|
891
|
+
</div>
|
|
892
|
+
<div class="spec"><span class="serif" style="font-size: 52px">Drawn in one line</span></div>
|
|
893
|
+
</div>
|
|
894
|
+
<div class="type-row">
|
|
895
|
+
<div>
|
|
896
|
+
<div class="tok">body</div>
|
|
897
|
+
<div class="m">Inter 400 · line 1.6 · warm gray</div>
|
|
898
|
+
</div>
|
|
899
|
+
<div class="spec">
|
|
900
|
+
<p style="font-size: 18px; line-height: 1.6; max-width: 680px; color: var(--gray)">
|
|
901
|
+
Inter carries every paragraph in warm gray — readable, recessive, never competing with
|
|
902
|
+
the serif statement above it.
|
|
903
|
+
</p>
|
|
904
|
+
</div>
|
|
905
|
+
</div>
|
|
906
|
+
<div class="type-row">
|
|
907
|
+
<div>
|
|
908
|
+
<div class="tok">label</div>
|
|
909
|
+
<div class="m">Inter 500 · 3px track · uppercase</div>
|
|
910
|
+
</div>
|
|
911
|
+
<div class="spec"><span class="label">Section · Eyebrow</span></div>
|
|
912
|
+
</div>
|
|
913
|
+
<div class="type-row" style="border-bottom: 0">
|
|
914
|
+
<div>
|
|
915
|
+
<div class="tok">quote-mark</div>
|
|
916
|
+
<div class="m">Playfair Display 400 · 50% taupe</div>
|
|
917
|
+
</div>
|
|
918
|
+
<div class="spec">
|
|
919
|
+
<span class="serif" style="font-size: 80px; color: var(--line)">“</span>
|
|
920
|
+
</div>
|
|
921
|
+
</div>
|
|
922
|
+
</section>
|
|
923
|
+
|
|
924
|
+
<!-- COMPONENTS -->
|
|
925
|
+
<section>
|
|
926
|
+
<div class="sec-head">
|
|
927
|
+
<span class="n">03</span>
|
|
928
|
+
<h2>Components</h2>
|
|
929
|
+
<span class="sp"></span><span class="lab">1px Hairlines · No Shadow</span>
|
|
930
|
+
</div>
|
|
931
|
+
|
|
932
|
+
<div class="cgrid">
|
|
933
|
+
<div class="s4">
|
|
934
|
+
<div class="cnote">Tracing-paper card</div>
|
|
935
|
+
<div class="c-card">
|
|
936
|
+
<div class="ic">I</div>
|
|
937
|
+
<div class="t">Hairline Border</div>
|
|
938
|
+
<div class="x">
|
|
939
|
+
1px taupe outline with a faint white-overlay fill that lets the canvas bleed through.
|
|
940
|
+
</div>
|
|
941
|
+
</div>
|
|
942
|
+
</div>
|
|
943
|
+
<div class="s4">
|
|
944
|
+
<div class="cnote">Agenda rows</div>
|
|
945
|
+
<div class="agenda">
|
|
946
|
+
<div class="row">
|
|
947
|
+
<span class="num">01</span><span class="t">Restraint</span
|
|
948
|
+
><span class="d">Stone on stone</span>
|
|
949
|
+
</div>
|
|
950
|
+
<div class="row">
|
|
951
|
+
<span class="num">02</span><span class="t">Geometry</span
|
|
952
|
+
><span class="d">Compass arcs</span>
|
|
953
|
+
</div>
|
|
954
|
+
<div class="row" style="border-bottom: 0">
|
|
955
|
+
<span class="num">03</span><span class="t">Breathing</span
|
|
956
|
+
><span class="d">Negative space</span>
|
|
957
|
+
</div>
|
|
958
|
+
</div>
|
|
959
|
+
</div>
|
|
960
|
+
<div class="s4">
|
|
961
|
+
<div class="cnote">Stats cluster</div>
|
|
962
|
+
<div class="stats">
|
|
963
|
+
<div class="st">
|
|
964
|
+
<div class="f">5</div>
|
|
965
|
+
<div class="l">Stones</div>
|
|
966
|
+
</div>
|
|
967
|
+
<div class="st">
|
|
968
|
+
<div class="f">1px</div>
|
|
969
|
+
<div class="l">Lines</div>
|
|
970
|
+
</div>
|
|
971
|
+
<div class="st">
|
|
972
|
+
<div class="f">0</div>
|
|
973
|
+
<div class="l">Shadows</div>
|
|
974
|
+
</div>
|
|
975
|
+
</div>
|
|
976
|
+
</div>
|
|
977
|
+
</div>
|
|
978
|
+
|
|
979
|
+
<div class="cgrid" style="margin-bottom: 0">
|
|
980
|
+
<div class="s5">
|
|
981
|
+
<div class="cnote">Timeline — 1px rule, no nodes</div>
|
|
982
|
+
<div class="timeline">
|
|
983
|
+
<div class="it">
|
|
984
|
+
<div class="y">Phase 1</div>
|
|
985
|
+
<div class="t">Survey</div>
|
|
986
|
+
<div class="x">Establish the stone canvas.</div>
|
|
987
|
+
</div>
|
|
988
|
+
<div class="it">
|
|
989
|
+
<div class="y">Phase 2</div>
|
|
990
|
+
<div class="t">Draft</div>
|
|
991
|
+
<div class="x">Lay the compass arcs.</div>
|
|
992
|
+
</div>
|
|
993
|
+
<div class="it">
|
|
994
|
+
<div class="y">Phase 3</div>
|
|
995
|
+
<div class="t">Frame</div>
|
|
996
|
+
<div class="x">Hairline the structure.</div>
|
|
997
|
+
</div>
|
|
998
|
+
</div>
|
|
999
|
+
</div>
|
|
1000
|
+
<div class="s3">
|
|
1001
|
+
<div class="cnote">Image placeholder</div>
|
|
1002
|
+
<div class="imgph"><span>Visual Reference</span></div>
|
|
1003
|
+
</div>
|
|
1004
|
+
<div class="s4">
|
|
1005
|
+
<div class="cnote">Team frames</div>
|
|
1006
|
+
<div class="team">
|
|
1007
|
+
<div class="p">
|
|
1008
|
+
<div class="ph">A</div>
|
|
1009
|
+
<div class="nm">Avery</div>
|
|
1010
|
+
<div class="ro">Editor</div>
|
|
1011
|
+
</div>
|
|
1012
|
+
<div class="p">
|
|
1013
|
+
<div class="ph">M</div>
|
|
1014
|
+
<div class="nm">Mori</div>
|
|
1015
|
+
<div class="ro">Design</div>
|
|
1016
|
+
</div>
|
|
1017
|
+
</div>
|
|
1018
|
+
</div>
|
|
1019
|
+
</div>
|
|
1020
|
+
</section>
|
|
1021
|
+
|
|
1022
|
+
<!-- COMPOSITIONS -->
|
|
1023
|
+
<section>
|
|
1024
|
+
<div class="sec-head">
|
|
1025
|
+
<span class="n">04</span>
|
|
1026
|
+
<h2>Frame Compositions</h2>
|
|
1027
|
+
<span class="sp"></span><span class="lab">True 16:9 · cqw Scaled</span>
|
|
1028
|
+
</div>
|
|
1029
|
+
<div class="gallery">
|
|
1030
|
+
<div class="fw">
|
|
1031
|
+
<div class="flabel"><b>Cover</b><span>· identity · compass ring · left</span></div>
|
|
1032
|
+
<div class="frame tf1">
|
|
1033
|
+
<div class="fgeo ring"></div>
|
|
1034
|
+
<div class="body">
|
|
1035
|
+
<div class="lab">Cartesian — Frame System</div>
|
|
1036
|
+
<h3>Restraint, drawn in <em>one line.</em></h3>
|
|
1037
|
+
<div class="sub">A quiet museum-catalog system in motion.</div>
|
|
1038
|
+
<div class="ha"></div>
|
|
1039
|
+
</div>
|
|
1040
|
+
</div>
|
|
1041
|
+
</div>
|
|
1042
|
+
|
|
1043
|
+
<div class="fw">
|
|
1044
|
+
<div class="flabel"><b>Agenda</b><span>· index · sparse list · left</span></div>
|
|
1045
|
+
<div class="frame tf2">
|
|
1046
|
+
<div class="body">
|
|
1047
|
+
<div class="lab">Contents</div>
|
|
1048
|
+
<h3>Four Considerations</h3>
|
|
1049
|
+
<div class="row"><span class="nm">01</span><span class="t">On Measure</span></div>
|
|
1050
|
+
<div class="row"><span class="nm">02</span><span class="t">On Margin</span></div>
|
|
1051
|
+
<div class="row">
|
|
1052
|
+
<span class="nm">03</span><span class="t">On the Single Line</span>
|
|
1053
|
+
</div>
|
|
1054
|
+
<div class="row" style="border-bottom: 0">
|
|
1055
|
+
<span class="nm">04</span><span class="t">On Silence</span>
|
|
1056
|
+
</div>
|
|
1057
|
+
</div>
|
|
1058
|
+
</div>
|
|
1059
|
+
</div>
|
|
1060
|
+
|
|
1061
|
+
<div class="fw">
|
|
1062
|
+
<div class="flabel"><b>Pull Quote</b><span>· quote · compass ring · centered</span></div>
|
|
1063
|
+
<div class="frame tf3">
|
|
1064
|
+
<div class="fgeo ring dash"></div>
|
|
1065
|
+
<div class="body">
|
|
1066
|
+
<div class="qm">“</div>
|
|
1067
|
+
<div class="q">Nothing is bold.<br />Nothing is loud.</div>
|
|
1068
|
+
<div class="at">— The System Voice</div>
|
|
1069
|
+
</div>
|
|
1070
|
+
</div>
|
|
1071
|
+
</div>
|
|
1072
|
+
|
|
1073
|
+
<div class="fw">
|
|
1074
|
+
<div class="flabel"><b>Closing Plate</b><span>· closer · centered ring</span></div>
|
|
1075
|
+
<div class="frame tf4">
|
|
1076
|
+
<div class="fgeo ring"></div>
|
|
1077
|
+
<div class="body">
|
|
1078
|
+
<div class="lab">Cartesian</div>
|
|
1079
|
+
<h3>Well-framed, <em>on stone.</em></h3>
|
|
1080
|
+
<div class="ha"></div>
|
|
1081
|
+
</div>
|
|
1082
|
+
</div>
|
|
1083
|
+
</div>
|
|
1084
|
+
</div>
|
|
1085
|
+
</section>
|
|
1086
|
+
|
|
1087
|
+
<!-- PRINCIPLES -->
|
|
1088
|
+
<section>
|
|
1089
|
+
<div class="sec-head">
|
|
1090
|
+
<span class="n">05</span>
|
|
1091
|
+
<h2>Frame Rules</h2>
|
|
1092
|
+
<span class="sp"></span><span class="lab">Restraint</span>
|
|
1093
|
+
</div>
|
|
1094
|
+
<div class="dos">
|
|
1095
|
+
<div class="do-card do">
|
|
1096
|
+
<h4>Do</h4>
|
|
1097
|
+
<ul>
|
|
1098
|
+
<li>Use a single 1px taupe line for every separator — the hairline is the identity.</li>
|
|
1099
|
+
<li>Set every Playfair headline at weight 400, in ink, sentence case.</li>
|
|
1100
|
+
<li>Render labels in taupe, uppercase, 2–3px tracked.</li>
|
|
1101
|
+
<li>Layer one or two compass rings (solid + dashed) at 20–50% behind content.</li>
|
|
1102
|
+
<li>Let frames breathe — sparse, generous negative space.</li>
|
|
1103
|
+
</ul>
|
|
1104
|
+
</div>
|
|
1105
|
+
<div class="do-card dont">
|
|
1106
|
+
<h4>Don't</h4>
|
|
1107
|
+
<ul>
|
|
1108
|
+
<li>No populist accent color — no red, blue, green; stone and ink only.</li>
|
|
1109
|
+
<li>No bold Playfair, no taupe headlines, no thick borders.</li>
|
|
1110
|
+
<li>No shadows, elevated cards, or rounded rectangles (circles only).</li>
|
|
1111
|
+
<li>Don't crowd the frame — packed layouts read as broken.</li>
|
|
1112
|
+
<li>Never more than two geo decorations per frame.</li>
|
|
1113
|
+
</ul>
|
|
1114
|
+
</div>
|
|
1115
|
+
</div>
|
|
1116
|
+
</section>
|
|
1117
|
+
|
|
1118
|
+
<!-- CAPTIONS — preview of caption-skin.html (the preset's lower-third karaoke look) -->
|
|
1119
|
+
<style>
|
|
1120
|
+
/* mirrors caption-skin.html; the skin's --cap-* vocab mapped to this preset's tokens */
|
|
1121
|
+
.capdemo {
|
|
1122
|
+
--cap-ink: var(--ink);
|
|
1123
|
+
--cap-canvas: var(--bg);
|
|
1124
|
+
--cap-accent: var(--accent);
|
|
1125
|
+
--cap-accent-2: var(--line);
|
|
1126
|
+
}
|
|
1127
|
+
.capdemo .stage {
|
|
1128
|
+
position: absolute;
|
|
1129
|
+
left: 0;
|
|
1130
|
+
right: 0;
|
|
1131
|
+
bottom: 0;
|
|
1132
|
+
height: 16.67cqh;
|
|
1133
|
+
display: flex;
|
|
1134
|
+
align-items: center;
|
|
1135
|
+
justify-content: center;
|
|
1136
|
+
z-index: 4;
|
|
1137
|
+
}
|
|
1138
|
+
.capdemo .pill {
|
|
1139
|
+
max-width: 80cqw;
|
|
1140
|
+
padding: 1.4cqw 3cqw 1.7cqw;
|
|
1141
|
+
background: var(--cap-canvas);
|
|
1142
|
+
border: 1px solid var(--cap-accent-2);
|
|
1143
|
+
border-radius: 0;
|
|
1144
|
+
}
|
|
1145
|
+
.capdemo .line {
|
|
1146
|
+
display: flex;
|
|
1147
|
+
flex-wrap: wrap;
|
|
1148
|
+
justify-content: center;
|
|
1149
|
+
gap: 0.1em 0.34em;
|
|
1150
|
+
font-family: var(--serif);
|
|
1151
|
+
font-weight: 400;
|
|
1152
|
+
font-size: 3.4cqw;
|
|
1153
|
+
line-height: 1.16;
|
|
1154
|
+
letter-spacing: -0.01em;
|
|
1155
|
+
}
|
|
1156
|
+
.capdemo .w {
|
|
1157
|
+
display: inline-block;
|
|
1158
|
+
padding: 0 0.06em;
|
|
1159
|
+
border-bottom: 1px solid transparent;
|
|
1160
|
+
color: color-mix(in srgb, var(--cap-ink) 42%, var(--cap-canvas));
|
|
1161
|
+
}
|
|
1162
|
+
.capdemo .w.spoken {
|
|
1163
|
+
color: var(--cap-ink);
|
|
1164
|
+
}
|
|
1165
|
+
.capdemo .w.active {
|
|
1166
|
+
color: var(--cap-ink);
|
|
1167
|
+
background: color-mix(in srgb, var(--cap-accent) 18%, var(--cap-canvas));
|
|
1168
|
+
border-bottom: 1px solid var(--cap-accent);
|
|
1169
|
+
}
|
|
1170
|
+
.capdemo .bandline {
|
|
1171
|
+
position: absolute;
|
|
1172
|
+
left: 0;
|
|
1173
|
+
right: 0;
|
|
1174
|
+
bottom: 16.67cqh;
|
|
1175
|
+
border-top: 1px dashed var(--line);
|
|
1176
|
+
z-index: 3;
|
|
1177
|
+
}
|
|
1178
|
+
.capdemo .bandtag {
|
|
1179
|
+
position: absolute;
|
|
1180
|
+
right: 3cqw;
|
|
1181
|
+
bottom: calc(16.67cqh + 0.7cqw);
|
|
1182
|
+
font-family: var(--sans);
|
|
1183
|
+
text-transform: uppercase;
|
|
1184
|
+
letter-spacing: 0.2cqw;
|
|
1185
|
+
font-size: 0.95cqw;
|
|
1186
|
+
color: var(--accent);
|
|
1187
|
+
z-index: 4;
|
|
1188
|
+
}
|
|
1189
|
+
</style>
|
|
1190
|
+
<section>
|
|
1191
|
+
<div class="sec-head">
|
|
1192
|
+
<span class="n">06</span>
|
|
1193
|
+
<h2>Captions</h2>
|
|
1194
|
+
<span class="sp"></span><span class="lab">Lower-third · Karaoke</span>
|
|
1195
|
+
</div>
|
|
1196
|
+
<div class="gallery">
|
|
1197
|
+
<div class="fw">
|
|
1198
|
+
<div class="flabel"><b>Active line</b><span>· spoken · current · upcoming</span></div>
|
|
1199
|
+
<div class="frame capdemo">
|
|
1200
|
+
<div
|
|
1201
|
+
class="fgeo ring dash"
|
|
1202
|
+
style="width: 30cqw; height: 30cqw; left: 8cqw; top: 10%; opacity: 0.3"
|
|
1203
|
+
></div>
|
|
1204
|
+
<div class="bandline"></div>
|
|
1205
|
+
<div class="bandtag">Caption Band · 16.7%</div>
|
|
1206
|
+
<div class="stage">
|
|
1207
|
+
<div class="pill">
|
|
1208
|
+
<div class="line">
|
|
1209
|
+
<span class="w spoken">Built</span>
|
|
1210
|
+
<span class="w spoken">for</span>
|
|
1211
|
+
<span class="w active">teams</span>
|
|
1212
|
+
<span class="w">who</span>
|
|
1213
|
+
<span class="w">ship.</span>
|
|
1214
|
+
</div>
|
|
1215
|
+
</div>
|
|
1216
|
+
</div>
|
|
1217
|
+
</div>
|
|
1218
|
+
</div>
|
|
1219
|
+
|
|
1220
|
+
<div class="fw">
|
|
1221
|
+
<div class="flabel"><b>Settled line</b><span>· all spoken · marker cleared</span></div>
|
|
1222
|
+
<div class="frame capdemo">
|
|
1223
|
+
<div
|
|
1224
|
+
class="fgeo ring"
|
|
1225
|
+
style="
|
|
1226
|
+
width: 34cqw;
|
|
1227
|
+
height: 34cqw;
|
|
1228
|
+
right: -8cqw;
|
|
1229
|
+
top: 50%;
|
|
1230
|
+
transform: translateY(-50%);
|
|
1231
|
+
opacity: 0.28;
|
|
1232
|
+
"
|
|
1233
|
+
></div>
|
|
1234
|
+
<div class="stage">
|
|
1235
|
+
<div class="pill">
|
|
1236
|
+
<div class="line">
|
|
1237
|
+
<span class="w spoken">Ship</span>
|
|
1238
|
+
<span class="w spoken">faster</span>
|
|
1239
|
+
<span class="w spoken">today.</span>
|
|
1240
|
+
</div>
|
|
1241
|
+
</div>
|
|
1242
|
+
</div>
|
|
1243
|
+
</div>
|
|
1244
|
+
</div>
|
|
1245
|
+
</div>
|
|
1246
|
+
</section>
|
|
1247
|
+
|
|
1248
|
+
<div class="foot">
|
|
1249
|
+
<span class="l">Cartesian</span>
|
|
1250
|
+
<span class="r">Frame Showcase · Atoms Sacred · Composition Free</span>
|
|
1251
|
+
</div>
|
|
1252
|
+
|
|
1253
|
+
<template id="__bundler_thumbnail">
|
|
1254
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
1255
|
+
<rect width="100" height="100" fill="#EDE8E0" />
|
|
1256
|
+
<circle cx="68" cy="50" r="30" fill="none" stroke="#B8B0A4" />
|
|
1257
|
+
<circle cx="68" cy="50" r="20" fill="none" stroke="#B8B0A4" stroke-dasharray="3 3" />
|
|
1258
|
+
<rect x="16" y="44" width="40" height="5" fill="#1A1A1A" />
|
|
1259
|
+
<rect x="16" y="56" width="22" height="2" fill="#8A8178" />
|
|
1260
|
+
</svg>
|
|
1261
|
+
</template>
|
|
1262
|
+
</body>
|
|
1263
|
+
</html>
|