SaikouTLK
: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#: 620-L
Level3
Containment Class:
keter
Secondary Class:
none
Disruption Class:
keneq
Risk Class:
critical

Special Containment Procedures: SCP-620-L is currently uncontained. Containment efforts should be focused on detecting potential SCP-620-L attacks as well as the development of permanent and complete containment of the anomaly.

All sites deemed susceptible to attack from SCP-620-L are to proceed to a daily check of all staff in order to check for potential SCP-620-L infiltration. This is to be done using Procedure SOMETHING-HERE. Procedure SOMETHING-HERE has been discontinued. As such, alternate methods to detect SCP-620-L are being developed. In the meantime, all concerned staff members are encouraged to report any suspicious behaviors to their superiors.

In the event of SCP-620-L being detected inside a Foundation site, the site in question is to be evacuated and cryonic weaponry is to be used in order to either terminate or incapacitate SCP-620-L. Should this prove impossible or ineffective, MTF Nu-7 ("Hammer Down") and MTF Eta-10 ("See No Evil") are to be sent to the affected areas. The use of low-scale nuclear weaponry is permitted.

Description: SCP-620-L is an unknown entity/phenomenon which inhabits or affects animal cadavers, with its main target being human cadavers. The identity of SCP-620-L has been impossible to determine, as the entity has failed to show up in any methods of detection available to the Foundation. Cadavers affected by SCP-620-L are physically indistinguishable from regular, live humans other than in their behavior. As a result, it is unclear if SCP-620-L is an entity or a phenomenon. This article will mostly assume the former for the sake of simplicity.

Cadavers inhabited by SCP-620-L (referred to as SCP-620-L1 instances from this point on) will begin moving on their own, regardless of the current biological possibility of these movements, be it due to damaged muscles or the damage that certain of those movements would inflict. SCP-620-L1 instances will attempt to imitate human behavior as closely as it can. SCP-620-L's limited intelligence, however, makes these attempts relatively inconsistent, as it is unable to form coherent sentences and might even fail to arrange its own body in order to match human biology.

Due to these characteristics, SCP-620-L1 instances are effectively immune to poisons and biological weapons of most kinds. Instances will also be unimpeded by damage to their organs that would prove lethal or incapacitating to non-anomalous humans. The only way to incapacitate an SCP-620-L1 instance is through directly preventing movement on a mechanical level. Cryogenics weapons are the most effective methods known to be capable of this.

Once SCP-620-L1 instances have successfully infiltrated a group of humans, it will become hostile and greatly change its physical structure. In most cases, SCP-620-L will rearrange SCP-620-L1 instances into a tripedal form with severely misplaced organs and limbs. In extended hostile encounters, SCP-620-L1 instances will change their structure again to resemble a humanoid entity with no skin and an appendage resembling a spiky mace on one of their arms. SCP-620-L will attempt to terminate humans it sees through physical blows using its various limbs, with its humanoid form capable of manifesting various weapons through its own flesh and of launching bone splinters at high speeds in order to do so.

SCP-620-L1 instances possess extreme physical strength, capable of easily killing humans as well as destroy heavily armored vehicles. No known material has been capable of withstanding SCP-620-L1 instances attacks. This strength also results in SCP-620-L1 being extremely durable, being immune to firearms, explosives, as well as any other form of physical damage. The only physical weapons known to be capable of damaging an SCP-620-L1 instance are nuclear weapons or high-grade non-nuclear explosives.

The body used by SCP-620-L1 instances degrades at an abnormally high rate and will become unusable by SCP-620-L in the span of a few days. When this happens, SCP-620-L will seek living humans to terminate them and [DATA EXPUNGED], taking over the cadaver of the victim as the new instance of SCP-620-L1.

As with other anomalies of the -L series, SCP-620-L possesses a cognitohazardous effect as well as an unknown degree of metaphysical permanence. The former manifests as a visual cognitohazard that affects direct observations of SCP-620-L1 instances, as well as depictions in videos or photographs. Sentient beings affected by this cognitohazard will feel sudden, extreme fear, regardless of their personality or previous state of mind. The extent of this fear varies depending on the individual's resistance to cognitohazards. Subjects with a low resistance to cognitohazards will be instantly incapacitated and will often seek ways of committing suicide, while subjects with high resistance to cognitohazards will only report mild nervousness when faced with SCP-620-L1. This cognitohazard will only take effect with SCP-620-L1 instances having changed their structure to the point of being unrecognizable as a human being. As SCP-620-L is naturally resistant against most known mind-affecting anomalies and memetic hazards, it is also unaffected by its own cognitohazard.

The latter manifests after SCP-620-L sustain a certain amount of damage. When this occurs, SCP-620-L and its current instance of SCP-620-L1 will demanifest from the immediate area after a few minutes. While the exact nature of SCP-620-L-'s reappearance is unclear as of now, it will always result in SCP-620-L being spotted in the surrounding region of where it was incapacitated. As a result of this, termination of SCP-620-L is impossible through means currently available to the Foundation. SCP-620-L frequently exploits this and will self-terminate if it has been caught or incapacitated in a non-lethal way in order to avoid capture or escape containment. This has made the containment of SCP-620-L extremely difficult with current methods.

Discovery: On [date], a wormhole later found to originate from SCP-████-L was created near Site-██. SCP-████-L emerged from it, as well as several unidentified individuals. SCP-████-L vanished through another wormhole and a group of field agents led by Agent Taylor Moore was sent to assess the situation. Shortly after the group of individuals was apprehended, all communications with the field agents were lost. Approximately 10 minutes later, Agent Taylor Moore entered Site-██ alone. The following is a transcript of the recording of the events that took place:

<Begin Log>

(Agent Taylor Moore stumbles forward.)

Agent Taylor Moore: (Moore notably speaks in wildly different tones and pitch of voice with nearly every sentence) Hello… Hello! How may I help you? I haven't been expecting you.

Officer ████: Moore? What happened? Where is the rest of the group?

Moore: Help! I love you, I love you. Manager! Manager! Open the door! (Moore takes several steps forward, visibly struggling to keep her balance.

Officer ████: (Backs off a few steps back and takes his radio) Officer ████ here, we might be having a situation. Agent Taylor Moore is acting out and-

(Moore's neck suddenly snaps, with her head rotating 180° and ending up upside down. Her rib cage opens up, causing several internal organs to hang from her body. Her upper body bends forward as her ribs plant themselves on the ground, making her adopt a semi-quadrupedal stance.)

Moore: Train to Hell, what went wrong? Help! As per the Foundation's protocols. Together, we are one!

Officer ████: J-Jesus Christ! Scratch that, we have an anomaly near the front doors, I repeat, we have an anomaly near the front doors!

(One of Moore's arm retract back into her body before bursting out of her neck. Her ribs, remaining arm, and legs start moving together in a fashion similar to running, causing Moore to approach Officer ████.)

Officer ████: Shit! Send somebody in, quick!

(Officer ████ grabs his pistol and fires at Moore. The impacts do not slow down her approach. Moore's jaw unhinges as she lunges at Officer ████. Her ribs close around him as her hand starts clawing at the skin of his face. Moore proceeds to tear apart and consume Officer ████'s body.)

Moore: (Appears to be imitating Officer ████'s voice) Skin, shell… Send somebody! Scratch that, Agent Taylor Moore is acting out…

<End Log>

Addendum 620-L.1: In order to facilitate the detection of SCP-620-L1 instances, Procedure SOMETHING-HERE was developed. The procedure consists of exposing all staff members to a specific Foundation-made cognitohazard. This cognitohazard has no effect other than forcing those affected by it to stop all voluntary movements for a period of 5 seconds. As SCP-620-L1 instances are immune to such cognitohazard, this allows them to be easily detected. On [date], an SCP-620-L1 instance attacked Site-██, causing ██ causalities among Foundation staff. This attack occurred due to the SCP-620-L1 instance taking the shape of one of the employees before becoming hostile while inside the Site itself, despite the usage of Procedure SOMETHING-HERE before the attack. Security footage has shown the SCP-620-L1 instance in question being affected by the cognitohazard of the procedure.

While initially thought to be a sign of SCP-620-L becoming vulnerable to memetic hazards, future encounters with SCP-620-L have proven this theory wrong. It is instead now believed that SCP-620-L learned the behavior of humans when faced with this cognitohazard and has adapted its behavior to match a human's. This new development has rendered Procedure SOMETHING-HERE obsolete and it has therefore been discontinued.

Incident 620-L.1: On [date], at [time], O5-4's vital monitor reported their death.