:root {
  --c-orange: #f57c1f;
  --c-dark: #080812;
  --c-white: #ffffff;
  --c-offwhite: #f6f4ee;
  --font-main: "Inter", sans-serif;
}

#aa-cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999999;
  overflow: hidden;
  mix-blend-mode: exclusion;
}

body.is-inverted #aa-cursor-container {
  mix-blend-mode: exclusion !important;
}

body.is-on-text #aa-cursor-container,
body.is-normal #aa-cursor-container {
  mix-blend-mode: normal !important;
}

.cursor-no-invert,
.cursor-orange-safe,
.cursor-color-safe,
.cursor-normal {
  isolation: isolate;
}

.aa-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--c-orange);
  border-radius: 50%;
  will-change: transform, width, height, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.cursor-click-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
}

.aa-cursor-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  color: var(--c-dark);
  width: 26px;
  height: 26px;
  z-index: 10;
}

.aa-cursor-circular-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 160px;
  height: 160px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-cursor-circular-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circular-text {
  fill: var(--c-dark);
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.is-focus .aa-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #f8f8f8;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(248, 248, 248, 0.3);
}

body.is-hovering .aa-cursor {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  mix-blend-mode: exclusion;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

body.is-focus .aa-cursor {
  width: 60px !important;
  height: 60px !important;
  background-color: rgba(255, 114, 0, 0.05) !important;
  border: 1.5px solid var(--c-orange) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  mix-blend-mode: normal !important;
}

body.is-menu-hover .aa-cursor {
  width: 6px !important;
  height: 6px !important;
  background-color: var(--c-orange) !important;
  mix-blend-mode: normal !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.is-on-text .aa-cursor {
  width: 40px !important;
  height: 40px !important;
  background-color: #ffffff !important;
  mix-blend-mode: exclusion !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: none !important;
  z-index: 9999999;
}

body.is-reading .aa-cursor,
body.is-reading-normal .aa-cursor,
body.is-email .aa-cursor,
body.is-email-normal .aa-cursor,
body.is-view .aa-cursor,
body.is-view-normal .aa-cursor,
body.is-play .aa-cursor,
body.is-play-normal .aa-cursor,
body.is-more .aa-cursor,
body.is-more-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.is-reading .aa-cursor-icon,
body.is-reading-normal .aa-cursor-icon,
body.is-view .aa-cursor-icon,
body.is-view-normal .aa-cursor-icon,
body.is-play .aa-cursor-icon,
body.is-play-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 28px;
  height: 28px;
}

body.is-email .aa-cursor-icon,
body.is-email-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 30px;
  height: 30px;
}

body.is-more .aa-cursor-icon,
body.is-more-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 26px;
  height: 26px;
}

body.is-reading .aa-cursor-circular-text,
body.is-reading-normal .aa-cursor-circular-text,
body.is-email .aa-cursor-circular-text,
body.is-email-normal .aa-cursor-circular-text,
body.is-view .aa-cursor-circular-text,
body.is-view-normal .aa-cursor-circular-text,
body.is-play .aa-cursor-circular-text,
body.is-play-normal .aa-cursor-circular-text,
body.is-more .aa-cursor-circular-text,
body.is-more-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-reading-orange .aa-cursor,
body.is-reading-orange-normal .aa-cursor,
body.is-email-orange .aa-cursor,
body.is-email-orange-normal .aa-cursor,
body.is-view-orange .aa-cursor,
body.is-view-orange-normal .aa-cursor,
body.is-play-orange .aa-cursor,
body.is-play-orange-normal .aa-cursor,
body.is-more-orange .aa-cursor,
body.is-more-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.is-reading-orange .aa-cursor-icon,
body.is-reading-orange-normal .aa-cursor-icon,
body.is-email-orange .aa-cursor-icon,
body.is-email-orange-normal .aa-cursor-icon,
body.is-view-orange .aa-cursor-icon,
body.is-view-orange-normal .aa-cursor-icon,
body.is-play-orange .aa-cursor-icon,
body.is-play-orange-normal .aa-cursor-icon,
body.is-more-orange .aa-cursor-icon,
body.is-more-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
}

body.is-reading-orange .aa-cursor-circular-text,
body.is-reading-orange-normal .aa-cursor-circular-text,
body.is-email-orange .aa-cursor-circular-text,
body.is-email-orange-normal .aa-cursor-circular-text,
body.is-view-orange .aa-cursor-circular-text,
body.is-view-orange-normal .aa-cursor-circular-text,
body.is-play-orange .aa-cursor-circular-text,
body.is-play-orange-normal .aa-cursor-circular-text,
body.is-more-orange .aa-cursor-circular-text,
body.is-more-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-reading-orange-normal #aa-cursor-container,
body.is-reading-normal #aa-cursor-container,
body.is-email-orange-normal #aa-cursor-container,
body.is-email-normal #aa-cursor-container,
body.is-view-orange-normal #aa-cursor-container,
body.is-view-normal #aa-cursor-container,
body.is-play-orange-normal #aa-cursor-container,
body.is-play-normal #aa-cursor-container,
body.is-more-orange-normal #aa-cursor-container,
body.is-more-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-click .aa-cursor {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
}

body.is-drag .aa-cursor {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
}

body.is-download .aa-cursor {
  width: 68px;
  height: 68px;
  background-color: #ffffff;
}

body.is-pointer .aa-cursor {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
}

body.is-text-small .aa-cursor {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
}

body.is-text-large .aa-cursor {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
}

body.is-large .aa-cursor {
  width: 36px;
  height: 36px;
  background-color: var(--c-orange);
}

body.is-no-invert .aa-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--c-orange);
}

body.is-no-invert #aa-cursor-container {
  mix-blend-mode: normal;
}

@media (hover: none) and (pointer: coarse) {
  #aa-cursor-container {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  #aa-cursor-container {
    display: none !important;
  }
}
