explained 1
rating: 0+x
: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)); }
}

Content Warning: The following article contains mentions of sexual assault, drug abuse, and institutional abuse.





NOTICE FROM FROM THE FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION

The following documents and their associated contents are part of active investigation ETH-283-003 by the Ethics Committee. Accessing these documents without proper clearance will result in immediate disciplinary action.

— Maria Jones, Director, RAISA

Item#: XXXX-EX
Level2
Containment Class:
explained
Secondary Class:
none
Disruption Class:
vlam
Risk Class:
notice
1
Special Containment Procedures: SCP-XXXX-EX is to be held in a modestly furnished standard humanoid containment module at Site-17. SCP-XXXX-EX is to be provided with a standard humanoid entertainment kit and fed a diet standard to a human of its age group.
Updated Containment Procedures: SCP-XXXX-EX is to be held in a modestly furnished standard humanoid containment module at Site-156. Diet plans are to remain unmodified. SCP-XXXX-EX will be provided with limited internet access for 6 hours a day along with a tutor and a standard education correlating with its former education prior to being in Foundation custody.

SCP-XXXX-EX will be provided with weekly behavioral therapy sessions by Site-156's resident therapist Dr. Ashanti Watts.

Description: SCP-XXXX-EX is an adolescent male humanoid that has displayed an abnormal immunity and resistance to memory-affecting compounds and objects such as

  • manmade & anomalous amnestics
  • memory-affecting infohazards
  • cognitohazards
  • memetic agents

SCP-XXXX-EX also displays immunity towards most side-effects associated with medications and amnestics. SCP-XXXX-EX also claims to have resistance to most forms of cephalgia2.

Discovery: SCP-XXXX-EX was brought into Foundation custody to be amnesticized after witnessing an instance of SCP-████. After 6 failed attempts to administer Class-A amnestics and 2 failed attempts with Class-B amnestics SCP-XXXX-EX was taken to Site-17 for observation and was later given emergency designation SCP-XXXX to allow for testing on SCP-XXXX-EX.

Addendum.SCP-XXXX-EX.1: Site-17 Intake Interview Transcript

Interview-XXXX-EX-1

Interviewed: SCP-XXXX-EX

Interviewer: Dr. Andrew Vali


Foreword: Due to the virtually non-existent risk level associated with SCP-XXXX-EX, Dr. Vali requested that prior to the interview that SCP-XXXX-EX be left unrestrained.

<Begin Log>

Dr. Vali: I believe we are recording now. Alright, apologies about the small technical issues.

SCP-XXXX-EX: It's no problem, don't worry about it.

Dr. Vali: I can imagine this situation is confusing for you, so I appreciate your cooperation on the matter.

SCP-XXXX-EX: It's confusing, yeah. But I kind of always assumed these kinds of things existed.

Dr. Vali: Pardon?

SCP-XXXX-EX: Super secret organizations and stuff, er… Protecting humanity and stuff from things we aren't ready to understand I guess?

Dr. Vali: Ah, well that makes sense. My name is Dr. Vali. I'll be handling things concerning you for the time being. I'll be asking you a few questions.

SCP-XXXX-EX nods.

Dr. Vali: So, can you tell me about today? Preferably the most important events.

SCP-XXXX-EX: Well, I thought today was going to be a normal day. I was on my to school when I saw that… Thing? Robot?3 It was running across the street being chased by your guys I presume. I didn't wanna be there so I booked it. Apparently, I wasn't supposed to see whatever that was because the next thing I know I'm in a dark room on a metal stool being asked what I remember.

SCP-XXXX pauses.

SCP-XXXX-EX: I mean, I told them the truth. Clearly, that's not what they wanted to hear so they made me take this pill. I waited maybe an hour or so. Then asked me the same question, so I gave them the same answer which was pretty much everything. They did this with me six or seven more times before carting me off to wherever here is.

Dr. Vali: You're saying you didn't respond to any of the drugs they gave you?

SCP-XXXX-EX: Nope.

Dr. Vali: Interesting.

SCP-XXXX-EX: What were they trying to do? I mean, it's pretty obvious it has to do with like, making me forget whatever I saw.

Dr. Vali: Yes, they were attempting to administer an amnestic, which would remove your memories of the events that happened earlier today. And they usually work…

Dr. Vali can be heard flipping through several papers.

Dr. Vali: This should conclude this interview. Again, thank you for your cooperation.

SCP-XXXX-EX: It's no problem.

<End Log>


Comments: Directly after the end of the interview, Dr. Vali utilized emergency directives to designate SCP-XXXX-EX in the SCP Database, overriding standard intake protocols.

Addendum.SCP-XXXX-EX.2: Experimentation Logs.
Site-17 researchers hypothesize that SCP-XXXX-EX is infected with a version of SCP-868.