/* Overlay cursor. Hide the OS pointer only while live.
   Inherit cursor:none from html/body — never `body *` or descendant `*`.
   failSafe removes html.aktuell-cursor-live. */

html:not(.aktuell-cursor-live),
html:not(.aktuell-cursor-live) body {
  cursor: auto;
}

html.aktuell-cursor-live,
html.aktuell-cursor-live body {
  cursor: none !important;
}

html.aktuell-cursor-live :is(
  a,
  button,
  [role="button"],
  summary,
  label,
  img,
  video,
  canvas,
  svg,
  .project-item,
  .project-thumbnail,
  .nav-thumbnail,
  .nav-links a,
  .inspiration-item,
  .fn-take-card,
  .aktuell-connect-fab,
  .about-fold-toggle
) {
  cursor: none !important;
}

html.aktuell-cursor-live input,
html.aktuell-cursor-live textarea,
html.aktuell-cursor-live select,
html.aktuell-cursor-live [contenteditable="true"],
html.aktuell-cursor-live [contenteditable=""],
html.aktuell-cursor-live [contenteditable] {
  cursor: text !important;
}

#aktuellCursorDot {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 12px;
  height: 12px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50%;
  background: #000;
  box-shadow: none;
  box-sizing: border-box;
  pointer-events: none !important;
  z-index: 2147483646 !important;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  visibility: visible !important;
  transition-property: opacity, width, height;
  transition-duration: 0.15s, 0.28s, 0.28s;
  transition-timing-function: ease, cubic-bezier(0.05, 0.7, 0.1, 1), cubic-bezier(0.05, 0.7, 0.1, 1);
}

#aktuellCursorDot.is-dark {
  background: #fff;
}

#aktuellCursorDot.is-on {
  opacity: 1 !important;
}

#aktuellCursorDot.is-count {
  width: 24px;
  height: 24px;
}

#aktuellCursorDot.is-pressed {
  width: 40px;
  height: 40px;
}

#aktuellCursorDot.is-hold {
  width: 56px;
  height: 56px;
}

#aktuellCursorDot .aktuell-cursor-dot__slides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

#aktuellCursorDot.is-dark .aktuell-cursor-dot__slides {
  color: #000;
}

#aktuellCursorDot.is-count .aktuell-cursor-dot__slides {
  opacity: 1;
}
