/* Stand site runtime stylesheet — small CSS hooks the runtime JS
 * relies on. Loaded as a <link> alongside stand-runtime.js so the
 * style is in place before the JS gets a chance to tag elements
 * (eliminates the prior "inject <style> from JS at runtime" pattern,
 * which paid a DOM-mutation cost on every page load).
 *
 * !important is used because the rules need to override Framer's
 * inline styles on the home-link anchor. The selector targets a
 * data-attribute that the runtime sets after finding the wordmark
 * (see centerStandNavWordmark in stand-runtime.js).
 */
[data-stand-wm-anchor="1"] {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}
