Temporal Anomaly
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)); }
}
Item#: XXXX
Level6
Containment Class:
esoteric
Secondary Class:
thaumiel
Disruption Class:
amida
Risk Class:
critical

Assigned Site Site Director Research Head Assigned Task Force
Provisional Site-XXXX Dir. Lucis Bane Dr. Keta Thamel ATF Aevum-0 "Time Savers"

Special Containment Procedures: The containment of both instances of SCP-XXXX is under the express supervision of Provisional Site-XXXX and Applied Task Force Aevum-0 "Time Savers." Constant surveillance shall be maintained to prevent civilian ships or aircraft from entering a 10 km proximity to the shores SCP-XXXX-A. Because of the highly classified nature of Provisional Site-XXXX, personnel with insufficient clearance are to undergo amnestic treatment before leaving SCP-XXXX-A.

In order to prevent the destruction of SCP-XXXX-B, Lucis Reality Stabilizers are placed in critical parts of Site-XXXX.

Description: SCP-XXXX-A is an island located 48°52.6′S 123°23.6′W. Its physical topography is that of a caldera, which may have formed from a fallen volcano. 80% of the island is covered in a forest, the density of which increases as it gets closer to the center of the island. Testing shows that the flora and fauna living on SCP-XXXX-A are non-anomalous, and are similar to those of the region.

The anomalous properties of SCP-XXXX-A is the result of underground phenomena. About 2 km beneath the surface of the island is a vein of an anomalous energy named Tempus Energy. An unknown substance coats the walls of the energy vein. This substance has been named Anti-Temporal Matter, or ATM. The amount of Tempus Energy is constantly increasing. Thus, it can be considered to be limitless.

Tempus Energy has the ability to reverse the flow of time, before dispersing into non-anomalous energy. The Energy can pass through all matter, except for ATM. As such, all units containing the Tempus Energy is to be constructed from ATM.

The amount of time that is reversed by the Tempus Energy depends on the amount of energy released.

On January 24, 2021, Dir. Lucis had requested to the O5 Council for the utilization of the Tempus Energy found in SCP-XXXX-A. The request was approved five days later. Construction of SCP-XXXX-B commenced on February 5th.

SCP-XXXX-B is a spherical structure located 500 meters above the source of Tempus Energy. Within the spherical structure are two main rooms, the Outer Command room and the Control Unit. The Control Unit is a sphere located in a large space. It is supported by five pillars, which feed Tempus Energy into the Unit. A walkway connects the Central Unit to the Outer Command room.

The Control Unit itself is a Time Constant Zone, or TCZ, and is not subject to the time manipulation of the Tempus Energy. As such, personnel and other objects within the Central Unit will not be reversed. Servers have been set up inside of the Central Unit and are connected to the main Foundation servers.

In the event of an imminent XK-Class End of the World event, SCP-XXXX-B shall be activated. Tempus Energy stored within SCP-XXXX-B will be released in calculated amounts in order to reverse time back to an established safe point. The safe point is established on July 14th, 2021.

The range of the time reversion is limited to the area within 50 KM from sea level. As such, it cannot be used to prevent world ending events with cosmic origins. Because of the inconsistency in astronomy, disinformation shall be spread to prevent a Lifted Veil Scenario after the use of SCP-XXXX-B.

Addendum: Incident Report for July 14, 2021

On July 14, 2021, Dir. Lucis and Dr. Minerva disappeared while overseeing the creation of the safe point. The position of the sun had suddenly changed, and some places have reported the area suddenly turning to night. A few minutes later, they came out from the Control Unit. Dr. Lucis requested to have a meeting with the O5 Council. The request was confirmed and a transcript of the meeting has been attached below.

Attendees: O5-1, O5-2, O5-7, O5-8, O5-13, Site Director Lucis

<Begin Log

O5-1: Why was SCP-XXXX-B activated?

Dir. Lucis: I believe you can find that information in the Control Unit Servers.

O5-1: We want to hear your recollection of the event.

Dir. Lucis: On October 25, 2042, an Apollyon-class reality bender was brought under the custody of the Foundation. It had the appearance of a nine year old girl. Of course, there was a procedure put in place to prevent the Type-Green from utilizing its abilities. This procedure was called … cruel by most of the personnel, even Dr. Clef. However, it did its job.

O5-7: Then how did the anomaly cause an XK-Class Event?

Dir. Lucis: It was a junior researcher. Claimed that he heard enough of the bender's cries every time the procedure was enacted. So, he somehow managed to botch the procedure one time. And now, here we are.

O5-8: I believe the junior researcher should be terminated.

Dir. Lucis: I do not recommend this course of action. If we kill one person, there will be others who take his place. There will always be people who see us as evil. But through this, I realized that those people put the rights of few above the safety of all. There will always be people who don't understand us, but we must proceed in our mission.

O5-2: What is your recommendation?

Dir. Lucis: What a coincidence. I believe the best course of action is found in the servers. The article is even written by the Council.

O5-13: Okay, you are dismissed.

<End Log>

No other cases of the activation of SCP-XXXX-B has been found. And all future records are to be added onto the entry found in the CU Servers.