Hidden Soul


:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
    div.anom-bar-container { --timeScale: 0; }
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
Item#: ####
Level5
Containment Class:
esoteric
Secondary Class:
hiemal
Disruption Class:
amida
Risk Class:
critical
Assigned Site Site Director HMCL Supervisor Research Head Assigned Task Force
CAONCI-Site-43 Dr. V. Lesley Scout Dr. Place H. McDoctorate Pending MTF ω-0 ("Ará Orún"), MTF α-0 ("Fishers of Dead Men")

Description


SCP-##### is a metastatic memeplex encompassing various infocaustic1, infomorphic2, infovorus3, infophagic4, semiohazardous5, and sociokinetic6 anomalous entities, and the individuals who use them, GoI-#### ("The Soul Keepers"). It is believed this effect is meant to separate physical reality from ideatic space.

Addendum-####-1: ASCP log

Affected SCP Details
SCP-3437 After it's neutralization in 2010, leaked files revealed that SCP-3437 was a division of GoI-####. Contacted GoI-#### members have further revealed that SCP-3437's neutralization was caused by some form of infocaustic weapon.
EE-3570 GoI-#### apparently created a a constructohazard7 that actively targets and kills Type-BE humanoids. This force is supplemented by infocaustic infophages that obfuscate the constructs efforts.
SCP-4145 Non-oneiric noospherics technology is continuously being destroyed by GoI-####
SCP-4211 Morphogenetic forces are being destroyed, and ley-lines and nexus points are being destroyed.
SCP-4485 HANSARP activities seem to be regulated by GoI-####, although this regulation has become less prominent over time.
SCP-4500 SCP-4500 has lost functionality on multiple occasions
SCP-4600 SCP-4600 has been depleting over time.
SCP-4830 Project Isorropía's 4830/5890 containment cycle has been disrupted.
SCP-5000
SCP-5225 SCP-5225 instances and the mechanisms used to contain them have been degrading.
SCP-5395 SCP-5395-B instances show signs of extreme degradation. Events similar to Incident 5395.Ω have already occurred, only to be suppressed by GoI-####.
SCP-5666 I'm sorry about what they did to her.
SCP-5712 [DATA LOST]
SCP-5920 Neural archetype8 data collection has continuously failed due to GoI-#### interference.

Addendum-####-2: Void Thread archive


Hive.png


Hive News
⁂H.N.N


To all who see this message, if you detect activity related to an entity known as the "Soul Keepers", report it to your local authorities immediately. They are a massive threat to public safety and the overall autonomy of sentient beings. Respond with the utmost caution.
  • ECHOES 50
  • HUMS 155


x-y


Hive.png


Agent Quin
⁂Quinn-GOC


The Global Occult Coalition has reported a raise in pluripotent mortality rates, which has so far correlated with The Hive's reports of the Soul Keepers. Details of response operations will be relayed to news outlets whenever possiblr
  • ECHOES 50
  • HUMS 155


x-y


polaricecraps.jpg


Kiefless in Seattle
⁂polaricecraps


⁂Quinn-GOC Like you would care you mesotheistic sociopath.
  • ECHOES 50
  • HUMS 155


x-y

Addendum-####-3: Interview log.


Bellow is a transcript of the interview of Xavier Carmen, a GoI-#### defector who appeared in Site-19 requesting employment.

Internal Audio Recording Transcript

Interviewed: Xavier Carmen

Interviewer:
Foreword: Xavier arrived in Site-19 via thaumic gateway, accompanied by members of MTF Sigma-3 "Bibliographers".


<Begin Log, [optional time info]>

Carmen: Greetings, director. I assume Sigma-3 already told you about my defection and desire for your employment.

Moose: Yes. Why did you leave the Soul Keepers.

Carmen: Well, It's a long story. Can I start from the time I joined them?

Moose: Yes, any information on your circumstances would be appreciated.

Carmen: Okay…

Carmen: It started when I was studying at ICSUT Eurtec. Though I was born on Earth, I loved living in a free-port, where I could live without worrying about everything falling into ecological collapse and socioeconomic stagnation.

Carmen: But there were many times I felt like I had left Earth to die. Though I didn't want to get in trouble with Veil laws, I wanted to improve the situation on Earth.

Carmen: The Soul Keepers came to me with an employment proposal, claiming to provide the power needed to make the change I wanted to see.

Carmen: I took the opportunity, leaving behind my education in favor of conquest.

Carmen: But after all they did, I couldn't bare to stay, so I came to you, the leaders of their opposition.

Moose: Is there anything you know about the keepers you know?

Carmen: Well… The correlation between the Adyte resurgence and a spike in Soul Keeper activity is no coincidence.

Carmen: The Keepers have been allies of Adytum for ages, and from what I understand, this alliance is the reason they betrayed you.

Carmen: The Soul Keepers are powerful god-killers, and the powers of Addytum decided to give them the resources needed to expand their reach.

Moose: How come you haven't died mid-way through telling me this?

Carmen: Because of this. (Carmen presents an intricate mechanical pillar, which levitates as it emits a faint red light from it's center)

Carmen: This idiatic control pillar is what allows Soul Keepers to control the central memeplex without killing themselves. It's what gives me the freedom to speak.

Carmen: I can help you and your allies make the change the Soul Keepers never could.

Carmen: Please…

Carmen: I'm tired of being unable to help.

Moose: Your request is approved. Go to one of the dormitories and get some rest. We will discuss the finer details later.

Addendum-####-4: Elysium

Project Elysium


In order to preserve human consciousness, various operations must be undertaken. SCP-3461's creation is currently under development, and groups of interest are being contacted for assistance

SUSEOCT Division

  • Marshal, Carter and Dark: by way of the Seven Society's involvement in SUSEOCT, MC&D is contacted to provide various useful devices. The implementation of this technology is being overseen by the administration of Site-42.
    • Schulman-NY Programmable Mnestic Device'
    • Somatic Backups'
    • 'SmartHex'
    • 'Perispirit Records Personal Concert Experience'
    • 'A Second Chance At Today'
    • 'Thunderbolt Iron'
  • Unusual Incidents Unit: The UIU Three Portlands division is to make contact with The Hive in order to gather psionics technology and establish contact a communication relay to SCP-296-DE.