/* Future Me V6 — crisp human hologram with independent interactive pillars. */
.holo.fmHoloV6 {
  position: relative;
  display: block;
  width: min(560px, 96vw);
  min-height: 0;
  aspect-ratio: 1 / 1.22;
  margin: 0 auto;
  overflow: visible;
  isolation: isolate;
  filter: none;
}

.holo.fmHoloV6::before,
.holo.fmHoloV6::after {
  display: none !important;
  content: none !important;
}

.fmHoloAura {
  position: absolute;
  z-index: 0;
  inset: 10% 28% 7%;
  border-radius: 48%;
  background: radial-gradient(circle at 50% 43%, rgba(62, 186, 255, .33), rgba(31, 103, 255, .13) 43%, transparent 72%);
  filter: blur(32px);
  animation: fmAuraBreath 4.4s ease-in-out infinite;
  pointer-events: none;
}

.fmHuman {
  position: absolute;
  z-index: 2;
  top: 1%;
  left: 50%;
  width: 46%;
  height: 97%;
  object-fit: contain;
  transform: translateX(-50%);
  transform-origin: 50% 72%;
  filter: drop-shadow(0 0 10px rgba(113, 218, 255, .62)) drop-shadow(0 0 30px rgba(33, 126, 255, .32));
  animation: fmHumanFloat 5.6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.fmProjection {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 3.8%;
  width: 43%;
  height: 7%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(221, 250, 255, .82) 0 3%, rgba(74, 199, 255, .42) 18%, rgba(30, 113, 255, .14) 46%, transparent 72%);
  box-shadow: 0 0 22px rgba(66, 180, 255, .62), 0 0 58px rgba(38, 104, 255, .32);
  transform: translateX(-50%);
  animation: fmProjectionPulse 3.8s ease-in-out infinite;
  pointer-events: none;
}

.fmPillarNode {
  --node-color: #4aa7ff;
  --node-rgb: 74, 167, 255;
  position: absolute;
  z-index: 6;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 3px;
  width: 29%;
  aspect-ratio: 1;
  padding: 10px;
  border: 1.5px solid color-mix(in srgb, var(--node-color) 90%, white);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .18), transparent 18%),
    radial-gradient(circle, rgba(var(--node-rgb), .22), rgba(4, 11, 23, .94) 63%);
  box-shadow:
    0 0 10px var(--node-color),
    0 0 28px rgba(var(--node-rgb), .48),
    0 0 60px rgba(var(--node-rgb), .16),
    inset 0 0 24px rgba(var(--node-rgb), .24);
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  animation: fmNodeFloat 5s ease-in-out infinite;
}

.fmPillarNode::before,
.fmPillarNode::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fmPillarNode::before {
  inset: -6%;
  border: 1px solid rgba(var(--node-rgb), .32);
  box-shadow: 0 0 20px rgba(var(--node-rgb), .26);
  animation: fmNodeHalo 3.6s ease-in-out infinite;
}

.fmPillarNode::after {
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, .12);
}

.fmPillarNode:hover,
.fmPillarNode:active,
.fmPillarNode:focus-visible {
  transform: translateY(-3px) scale(1.055);
  filter: brightness(1.18);
  outline: none;
  box-shadow: 0 0 14px var(--node-color), 0 0 38px rgba(var(--node-rgb), .62), 0 0 76px rgba(var(--node-rgb), .22), inset 0 0 30px rgba(var(--node-rgb), .31);
}

.fmPillarNode:disabled {
  cursor: default;
}

.fmPillarNode.spiritual {
  --node-color: #ffad35;
  --node-rgb: 255, 173, 53;
  top: 6%;
  left: 0;
}

.fmPillarNode.mental {
  --node-color: #bc62ff;
  --node-rgb: 188, 98, 255;
  top: 6%;
  right: 0;
  animation-delay: -.9s;
}

.fmPillarNode.body {
  --node-color: #38e583;
  --node-rgb: 56, 229, 131;
  left: 0;
  bottom: 8%;
  animation-delay: -1.8s;
}

.fmPillarNode.financial {
  --node-color: #349dff;
  --node-rgb: 52, 157, 255;
  right: 0;
  bottom: 8%;
  animation-delay: -2.7s;
}

.fmNodeIcon {
  display: block;
  font-size: clamp(24px, 4.5vw, 37px);
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--node-color));
}

.fmNodeLabel {
  display: block;
  max-width: 100%;
  font-size: clamp(9px, 1.6vw, 12px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px #000, 0 0 11px rgba(var(--node-rgb), .62);
}

.fmParticle {
  position: absolute;
  z-index: 4;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e9fbff;
  box-shadow: 0 0 7px #fff, 0 0 17px #42b7ff;
  opacity: .72;
  animation: fmParticleRise 4.2s ease-in-out infinite;
  pointer-events: none;
}

.fmParticle.p1 { left: 28%; top: 25%; }
.fmParticle.p2 { right: 28%; top: 37%; animation-delay: -.8s; }
.fmParticle.p3 { left: 24%; top: 58%; animation-delay: -1.6s; }
.fmParticle.p4 { right: 22%; top: 69%; animation-delay: -2.4s; }
.fmParticle.p5 { left: 42%; top: 16%; animation-delay: -3.2s; }
.fmParticle.p6 { right: 43%; top: 78%; animation-delay: -1.1s; }

@keyframes fmHumanFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-7px) scale(1.008); }
}

@keyframes fmAuraBreath {
  0%, 100% { opacity: .62; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.045); }
}

@keyframes fmProjectionPulse {
  0%, 100% { opacity: .68; transform: translateX(-50%) scale(.94); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes fmNodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fmNodeHalo {
  0%, 100% { opacity: .42; transform: scale(.96); }
  50% { opacity: .9; transform: scale(1.035); }
}

@keyframes fmParticleRise {
  0%, 100% { opacity: .18; transform: translateY(9px) scale(.65); }
  50% { opacity: .95; transform: translateY(-11px) scale(1.2); }
}

.homeHolo .fmHoloV6 {
  width: min(520px, 96vw);
}

@media (max-width: 620px) {
  .holo.fmHoloV6 {
    width: min(430px, 98vw);
    aspect-ratio: 1 / 1.24;
  }

  .fmHuman {
    width: 45%;
  }

  .fmPillarNode {
    width: 30.5%;
    padding: 8px;
  }

  .fmPillarNode.spiritual,
  .fmPillarNode.mental {
    top: 6.5%;
  }

  .fmPillarNode.body,
  .fmPillarNode.financial {
    bottom: 8.5%;
  }
}

@media (max-width: 380px) {
  .fmPillarNode {
    width: 31%;
  }

  .fmNodeIcon {
    font-size: 23px;
  }

  .fmNodeLabel {
    font-size: 8.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fmHuman,
  .fmHoloAura,
  .fmProjection,
  .fmPillarNode,
  .fmPillarNode::before,
  .fmParticle {
    animation: none !important;
  }
}

.authbox .authLink {
  width: 100%;
  margin: -2px 0 4px;
  padding: 7px 4px;
  border: 0;
  color: #75c9ff;
  background: transparent;
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.authbox .authLink:hover,
.authbox .authLink:focus-visible {
  color: #b9e8ff;
  text-decoration: underline;
  outline: none;
}

.authbox .btn:disabled {
  cursor: wait;
  opacity: .65;
}
