: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; } /* 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)); } } /*-------------------------*/ @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)); } }
Info This article takes place in the War Within canon.
- Attributions - https://www.unsplash.com/photos/bTboj6SOi6Q https://www.flickr.com/photos/26813255@N00/7941504 (CC BY-SA 2.0) All other images were created by me. All edits made to these images were made by me.
|

BY THE DIRECT ORDER OF O5-2
THIS FILE IS PENDING REMOVAL
This SCP documentation will no longer be available following 08/10/2021. Until this date, all personnel accessing this document must provide Level 5/XXXX clearance.

SCP-0000.
Assigned Site | Site Director | Research Head | Assigned Task Force |
Area-406 | Adelaide S. Worth | Jonathan G. I. Fryxell | ATF Mu-37 ("Sheer Luck") |
Containment Memorandum 08/03/2021: SCP-XXXX is no longer active and has been declared neutralized. No further information will be delivered.
Special Containment Procedures [ARCHIVED]: The remaining three Stairwell 55-B access points are no longer in use, and have been placed under 24/7 CCTV surveillance. Any person or persons seen entering Stairwell 55-B through any of these access points are to be apprehended, questioned and punished per the circumstances.
Description [ARCHIVED]: SCP-XXXX is one of at least four items currently inhabiting Stairwell 55-B of Area-406's Keter Wing:
- A non-Euclidean space.
- An advanced metaphysical construct.
- A hostile anomalous entity.
- An idea complex.
Stairwell 55-B currently extends downwards infinitely due to SCP-XXXX's presence.
Further information is locked to all personnel below Level 5/XXXX clearance. Please provide Level 5/XXXX credentials in order to view the remainder of this document.
-
- _
why is this happening all of a sudden lmao
INTERNAL CAMERA RECORDING
SUBLEVEL 12 - KETER WING
BEGIN LOG
[WORTH reaches Sublevel 12 and swipes her keycard through the lock mechanism. A high-pitched beep is heard as the blast door whirs open.]
GUARD 1: Good evening, director.
[WORTH does not respond and walks through the open door.]
[The sound of typing fades in, along with busied conversations over the phone, as WORTH enters a large chamber packed with office cubicles and desks.]
Sublevel 12.
[WORTH approaches an armed guard.]
WORTH: [To GUARD 2] I'm here to see Jonathan Fryxell. Do you know where he is?
GUARD 2: He should be in his office, ma'am. I'll lead you there.
WORTH: Thank's for the offer, but as Site Director I ought to know the layout of this place.
GUARD 2: Yes, of course ma'am. My apologies, go ahead.
[GUARD 2 steps aside, revealing a set of revolving glass doors. WORTH proceeds forward.]
CAMERA 14 - OFFICE WING
[WORTH reaches the office of Head Researcher Jonathan G. I. Fryxell. She knocks on the closed door.]
FRYXELL: [From within the office] Come in.
[The door swings open.]
FRYXELL: Director? What's your business here?
WORTH: If you could address me with some added respect, that would be great.
[FRYXELL sighs and adjusts his revolving chair towards WORTH.]
FRYXELL: Whoops.
WORTH: I've had direct orders to promote you to Senior Containment Specialist.
FRYXELL: Where from?
WORTH: The O5 Council, Fryxell.
FRYXELL: So I'm level four now, am I?
WORTH: No. That would be me. But, your new position does come with some… added privileges.
FRYXELL: Privileges, you say? What kind of-
WORTH: [Interrupting] Please note that I have all the permission required to remove you from this role should you fail to keep up with your responsibilities.
FRYXELL: Oh yeah, forgot about those. Responsibilities. Always creeping up on me.
WORTH: I've got to go home now. You, on the other hand, aren't allowed to.
FRYXELL: Bullshit. I can do whatever I want.
WORTH: I'm pretty sure there are - over fifty papers for you to sign. Good luck with that.
FRYXELL: Cool. Very cool, in fact. How about… fuck you?
WORTH: Right back at you, Fryxell.
[WORTH leaves FRYXELL's office, slamming the door behind her.]
Stairwell 55-B.
CAMERA 42 - STAIRWELL 55-B
FRYXELL: Director!
[WORTH turns around, startled.]
WORTH: What the fuck are you doing here?
FRYXELL: We have to talk.
WORTH: That is not happening.
[FRYXELL smiles and shoves WORTH into a nearby wall.]
FRYXELL: Adelaide. You should know by now that I know a lot of people. People are- [laughs] people are kind of… my thing. I know a lot of people that might be considered… dangerous. Dangerous people.
[WORTH pushes FRYXELL away from her, her right hand entering her pocket.]
WORTH: I don't give a shit about your people, Fryxell. Get the hell away from me.
FRYXELL: I have worked at this organization… for over seventeen years.
WORTH: Try twenty-five.
FRYXELL: Yes, of course. But you have everything you could ask for. You're in charge of a site. You have enough money to fund a fucking rocket launch. What the hell do I have? I'm stuck in a lousy, under-kept office working twenty-four hours a fucking day, printing papers, typing up documents, making stupid-ass calls. Tell me, Adelaide. What the fuck do I have?
WORTH: You're pathetic.
[FRYXELL laughs croakily.]
[FRYXELL reaches into his pocket, producing a switchblade.]
FRYXELL: Me? Pathetic? This is gold!
[FRYXELL holds the switchblade up to WORTH's neck.]
WORTH: You have no idea who you're dealing with.
[FRYXELL laughs again.]
FRYXELL: I have a pretty good idea of who I'm dealing with. I'm pretty sure, right here, I've got the most prideful, ignorant, stuck-up bitch to ever walk into my office. Isn't that right, Addie?
[WORTH squints her eyes.]
FRYXELL: Now I've got a bit of a request to make. Do you think you c-
[WORTH punches FRYXELL in the face, knocking him backwards and causing him to drop the switchblade. WORTH picks up the switchblade and throws it off the stairwell.]
FRYXELL: [Covering the left side of his face] Phew! That was a good whack you gave me, Addie but… it's not gonna be enough to stop me.
WORTH: I'm amazed - you're an even grimier piece of shit than I ever thought you were.
FRYXELL: Thanks, but none of that matters anymore, because you are going to do exactly what I fucking say.
WORTH: Go ahead. Watch what happens.
FRYXELL: You see, all of this, it all boils down to one thing. I want you, right now, to give me the fucking Level 4 clearance I deserve.
WORTH: No.
FRYXELL: Oh, I'm sorry, did you not hear me? I said: Give me the fucking clearance, or I will mess you the fuck u-
[WORTH produces a handgun and shoots FRYXELL in the chest.]
WORTH: Respect, Fryxell. You are to respect an Overseer.
[FRYXELL stumbles backwards into the handrail, blood seeping through his shirt.]
FRYXELL: No. Y-you bitch!
[WORTH slowly approaches FRYXELL, placing the handgun back into her pocket.]
WORTH: At long last, you're out of here for good.
[WORTH pushes FRYXELL over the handrail, sending him plummeting down the stairwell's central gap.]
END LOG
COUNCIL VOTE SUMMARY:
YEA NAY ABSTAIN O5-1 O5-2 O5-3 O5-4 O5-5 O5-6 O5-7 O5-8 O5-9 O5-10 O5-11 O5-12 O5-13
STATUS APPROVED EXPLORATION LOG
SCP-XXXX
Exploration Team:
- ATF Mu-37 ("Sheer Luck")
Team Members:
- M37-1 (Team Lead), M37-2, M37-3, M37-4, M37-5
Foreword: ATF Mu-37 are to abseil down the central gap of Stairwell 55-B in order to determine it's anomalously extended depth. Each team member's headcam video feed will be broadcast to Control for review post-exploration.
BEGIN LOG
M37-1: Everyone, mics on?
M37-5: Affirmative.
M37-2: Yep.
M37-3: Mic is on, lead.
M37-4: Online.
M37-1: Alright, we good to go?
Command: Begin the exploration.
[ATF Mu-37 descend into Stairwell 55-B.]
M37-3: [Glancing downwards] Fuck, would you look at that.
M37-1: Yeah, it's quite something.
M37-5: I think we're gonna need to turn on our lights, lead.
M37-1: Absolutely. Everyone, lights on. It's getting dark as shit down here.
[The team activate their helmet-lights. All five look down.]
[M37-2: drops a quarter and watches it fall.]
M37-4: Holy shit.
M37-2: Four, you okay?
M37-4: I'm fine. It's just… this place is huge.
M37-3: We're not even past where it would have ended yet.
M37-2: Looks like it goes on forever.
M37-5: Probably does. Did they even bother to tell any of us why this happened?
M37-1: Five, that's not why we're here.
M37-4: Still, knowing what the fuck we're dealing with helps.
M37-1: I guess I can vouch for that.
[The team pass the original location of Sublevel 12.]
M37-5: It's official, this place is fucked.
M37-3: We've come all the way down. And there's still more stairs.
Command: Acknowledged, please continue.
M37-2: Hey, I forgot they were listening. Guess they heard five's crazy-ass story then, huh.
M37-5: Shut the fuck up before I sever your rope with my own teeth.
M37-1: Keep the comms clean, will you?
[M73-1 descends a further 10 meters below the rest of the team, obscuring him from vision.]
M37-4: Don't!
M37-1: [Shouting upwards] What?
M37-4: N-nothing, lead. Nothing. Sorry.
[M37-1 continues to descend.]
M37-3: Are you - alright, four?
M37-4: Yeah, fine. I'm just a little… shaken up. Something about this place.
M37-2: I can understand that. We gotta go down a little more, okay?
M37-4: I'll be right behind you.
[M73-2, -3, and -5 descend at an increased pace, disappearing from M37-4's vision. M37-4 attempts to follow them, but is unable to.]
M37-4: I can't- My tether's stuck! I can't go down!
[Silence.]
The following portion of this transcript is gathered from M37-4's headcam footage alone. Command continued to follow the other team members, ignoring M37-4 and not reporting any issue with the tether system. Investigation into these events is ongoing.
[M37-4 begins tugging on his primary tether.]
M37-4: Guys! I'm stuck. My tether won't shift!
[Silence.]
M37-4: Guys?
[M37-4 continues. A small tear appears in his backup tether, which M37-4 does not seem to notice.]
M37-4: If I just… keep pulling…
[M37-4 pulls both his primary and backup tether at once.]
M37-4: Nearly… there…
[M37-4 lunges at the primary tether and punches it, causing it to snap.]
M37-4: Oh shit. Guys, my- My uh… tether just snapped. Guys? Hello? I need help with this.
[M37-4 looks downwards, and then upwards.]
M37-4: Assholes.
M37-4: [Sigh] Can't go down, can't go back up. Team is… unresponsive. You hearin' this? Command, do you read me?
[A low-pitched, reverberating sound is heard in the distance.]
M37-4: Command? That you? Everything sounds… everything's distorted… down here.
[M37-4 begins to tug on his backup tether. The tear increases in size.]
M37-4: Need… need to get… up. It's not safe down here.
[Several more sounds are heard, emanating from both above and below M37-4.]
M37-4: Which way…?
[The backup tether tears in several more areas, again not noticed by M37-4.]
M37-4: Not safe… down here.
[M37-4 kicks the backup tether, snapping it. M37-4's video feed cuts out.]
[M37-4's video feed returns after 35 minutes, showing only pitch blackness. Heavy breathing is heard, presumably coming from M37-4.]
[M37-4 begins to speak in a quiet, raspy voice.]
M37-4: I… don't know where I am…
[M37-4's helmet light is activated, revealing the entrance of Sublevel 12.]
M37-4: Where… is this? How far?
[M37-4 looks up. Stairwell 55-B extends out of view.]
M37-4: It's been… so long. I don't remember…?
[M37-4 turns around. His primary and backup tether are seen on the ground. Several distorted screams are heard, coming from behind the Sublevel 12 entrance door.]
M37-4: He's almost here.
[Silence for ten seconds. A loud metallic banging is heard as a large dent appears in the Sublevel 12 entrance door. M37-4 seems to be severely agitated by this.]
M37-4: He's coming. Faster than ever. He's watching. Watching under your bed. Your walls. Hiding in your hair and your teeth. All of the dark lights are watching you, and him. In your house, darkness is surrounding him. Her grace is gone, her death is short, the flaming beacon beckons ahead.
[The distorted screams continue, increasing in volume and reverberation. M37-4 begins breathing at an unnatural pace as the dent increases in size.]
M37-4: [Intermediate laughing throughout] The twisted steps, the dark, dark lights along it. The dark, dark nights instilled upon you by those not upon it.
[M37-4 looks up once more. A male humanoid figure is seen rapidly falling towards M37-4.]
M37-4: He is punished. So punished. All are punished. Overlooking, overseeing. Your soul is being changed by her eye. Her eye travels the steps, in this place of dark lights. He is gone here. He is always gone here, and forever will always will be. Forever.
[The figure increases in speed. M37-4 falls to the ground on his knees. The dent bursts open, and a deafening scream is heard from within.]
M37-4: I am here, and alas, he is coming.
[The figure reaches the ground, and M37-4's video feed cuts out permanently.]
END LOG
INTERNAL CAMERA RECORDING
SUBLEVEL 09 - DIRECTOR'S OFFICE
BEGIN LOG
UNKNOWN: I know it was you, okay?
O5-2: Yeah.
UNKNOWN: I don't know what happened between the two of you, but just know that I have nothing against you for that, okay?
O5-2: Jake…
UNKNOWN: What is it?
O5-2: I… I didn't kill him, Jake.
UNKNOWN: I know it's hard but you have to-
O5-2: [Interrupting] Something took over me, Jake. Something evil. I felt it, Jake. There's something controlling me a-
[O5-2 continues.]
UNKNOWN: You need to calm down Addie. Just calm down-
O5-2: -and there's something out there, Jake. I know it. It's swimming around in my head and… I…
[O5-2 begins to cry.]
UNKNOWN: It's okay. It's okay…
[O5-2 is embraced by UNKNOWN, still crying.]
O5-2: I'm- I'm so sorry, Jake.
UNKNOWN: I know. It's all gonna be alright.
END LOG
Power.
Keeping an eye on these slots: SCP-5518, SCP-5488
snow pic | https://www.unsplash.com/photos/Lm-gHYlX3JE