:root {
  --background-color-main: hsla(180, 6%, 94%, 1);
  --background-color-splash: hsl(249, 100%, 20%);
  --text-color-100: hsl(0, 0%, 11%);
  --text-color-800: hsl(0, 0%, 27%);
  --text-color-600: hsla(0, 0%, 46%, 1);
  --text-color-400: hsla(0, 0%, 0%, 0.27);
}

html {
  scroll-behavior: initial;
}

html:focus-within {
  scroll-behavior: unset;
}

body {
  color: var(--text-color-800);
  background: var(--background-color-splash);
  font-family: "Maru Var", sans-serif;
  width: 100%;
}

body > * {
  background: var(--background-color-main);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Over-scrolls
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div.overscroll {
  height: 300px;
  width: 100%;
  position: fixed;
  z-index: -2;
}

div.overscroll.top {
  top: 0;
  transform: translateY(-299px);
  background: linear-gradient(to bottom, hsl(211, 86%, 66%), var(--background-color-splash));
}

div.overscroll.bottom {
  bottom: 0;
  transform: translateY(299px);
  background: hsl(186, 19%, 81%);
}

div.overscroll.mobile {
  height: 200px;
  z-index: -3;
  transform: scale(-1, -1);
}

/* Over-scrolls [End] */
.gradient-transition {
  height: 2.5rem;
  width: 100%;
  background: linear-gradient(to bottom, hsl(307, 16%, 94%), var(--background-color-main));
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Article
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
article {
  font-family: "Inter Var";
  width: 100%;
  padding: 3rem 0 0rem;
  z-index: 2;
}
article > * {
  max-width: 45rem;
  margin: auto;
  padding: 0 0.7rem;
}
article div.heading {
  font-family: "Unbounded Var";
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
  background: var(--background-color-main);
  z-index: 3;
}
article div.heading div.line {
  width: 100%;
  height: 0.1rem;
  background: hsla(0, 0%, 0%, 0.12);
  padding: 0.1rem 0;
}
article div.heading h2 {
  font-size: 1.8rem;
  background: linear-gradient(to bottom, hsl(0, 0%, 56%), hsl(218, 76%, 4%));
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
article p {
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.4em 0.7rem 0.55em;
}
article p strong {
  color: hsl(0, 0%, 37%);
}
article p span {
  font-family: "Unbounded Var";
  font-size: 0.93em;
  font-variation-settings: "wght" 400, "wdth" 70;
}
article p#emphasis {
  margin-top: 2rem;
  font-size: 1.4rem;
}
article p#emphasis span {
  font-style: italic;
}
article a, article a:hover, article a:visited {
  color: hsl(209, 81%, 34%);
}

/* Article [End] */
#curved-gradient {
  width: 100%;
  z-index: 0;
  margin-top: -10rem;
  display: flex;
  align-items: center;
}
#curved-gradient div.gradient {
  width: 100vw;
  height: 80vw;
  max-height: 680px;
  background: radial-gradient(100% 95% at 50% 0%, hsla(180, 6%, 94%, 0) 0%, hsla(307, 100%, 97%, 0.08) 53%, hsl(310, 100%, 77%) 71%, hsl(273, 61%, 45%) 87%, hsl(255, 100%, 39%) 100%);
}
#curved-gradient div.blur {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
}

@media (max-width: 40.625rem) {
  #curved-gradient {
    margin-top: 0;
  }
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Scrolling Section
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#explainer-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0rem;
  z-index: 3;
}
#explainer-header div.stack > * {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#explainer-header div.text-occlusion.stack {
  height: 6rem;
  width: 100%;
  opacity: 0;
}
#explainer-header div.text-occlusion.stack div.text-cutoff {
  background: linear-gradient(to bottom, hsl(272, 65%, 4%) 0%, hsla(272, 65%, 4%, 0.85) 25%, hsla(272, 62%, 4%, 0));
}
#explainer-header div.text-occlusion.stack div.text-blur {
  -webkit-backdrop-filter: blur(0.2rem);
  backdrop-filter: blur(0.2rem);
  -webkit-mask: linear-gradient(to bottom, rgb(255, 255, 255), rgba(0, 0, 0, 0));
  mask: linear-gradient(to bottom, rgb(255, 255, 255), rgba(0, 0, 0, 0));
}
#explainer-header div.gradient.stack {
  position: absolute;
  top: 0;
  height: 12rem;
  width: 100%;
  z-index: 5;
}
#explainer-header div.gradient.stack > div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#explainer-header div.gradient.stack div.gradient {
  background: linear-gradient(to bottom, hsl(255, 100%, 39%), hsla(255, 0%, 0%, 0));
}
#explainer-header div.gradient.stack div.glow {
  position: relative;
  height: 20rem;
  top: 3rem;
  width: 100%;
  margin: auto;
  z-index: 1;
  background: radial-gradient(50% 100% at 50% 7%, hsla(256, 70%, 20%, 0.795), hsla(256, 0%, 0%, 0));
}
#explainer-header #scrolling-headline {
  width: 100%;
  height: 7.2rem;
  overflow: hidden;
  background: hsl(255, 100%, 39%);
}
#explainer-header #scrolling-headline h1 {
  position: absolute;
  margin-left: 50%;
  bottom: 0.2rem;
  left: 0;
  z-index: 10;
  font-family: "Unbounded Var";
  font-size: 5rem;
  font-weight: 650;
  white-space: nowrap;
  background: linear-gradient(to bottom, hsl(244, 71%, 41%) 0%, hsl(245, 78%, 27%) 25%, hsl(240, 64%, 24%) 55%, hsl(227, 80%, 14%) 72%, hsl(227, 89%, 10%) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
#explainer-header #scrolling-headline h1 span {
  background: linear-gradient(to bottom, hsl(230, 61%, 51%) 0%, hsl(255, 78%, 46%) 25%, hsl(240, 57%, 45%) 55%, hsl(227, 78%, 28%) 72%, hsl(235, 76%, 27%) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 40.625rem) {
  #explainer-header #scrolling-headline {
    height: 5rem;
  }
  #explainer-header #scrolling-headline h1 {
    font-size: 2.8rem;
  }
}
#scroll-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: hsl(255, 100%, 39%);
  padding-top: 6rem;
  margin-top: -6rem;
  z-index: 1;
}
#scroll-section div.paragraph {
  width: 100%;
  max-width: 42rem;
  padding: 0 1rem;
  font-family: "Inter Var";
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#scroll-section div.paragraph p {
  width: 100%;
  color: hsl(229, 56%, 90%);
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.3;
  margin: 10rem 0;
}
#scroll-section div.paragraph a, #scroll-section div.paragraph a:hover, #scroll-section div.paragraph a:visited {
  color: hsl(215, 44%, 78%);
}

/* Scrolling Section [End] */
#transition-out {
  width: 100%;
  background: hsl(186, 19%, 81%);
  overflow-x: hidden;
}
#transition-out svg {
  width: calc(100% + 2px);
  max-width: 200%;
  margin-left: -1px;
  height: auto;
}
#transition-out .behind {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: hsl(272, 65%, 4%);
}

#conclusion {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsl(186, 19%, 81%);
}
#conclusion p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.017em;
  line-height: 1.5;
}
#conclusion p span {
  color: hsl(216, 100%, 48%);
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 40.625rem) {
  #conclusion {
    min-height: 100vh;
  }
  #conclusion p {
    font-size: 1.5rem;
    padding: 0 1rem 0;
  }
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Splash
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#splash {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: hsl(222, 67%, 34%);
  color: hsl(177, 100%, 52%);
  font-family: "Unbounded Var", "Sono Var", sans-serif;
  text-align: center;
}
#splash div.dark {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, hsl(249, 100%, 20%) 0%, hsl(268, 100%, 14%) 10%, hsl(256, 96%, 9%) 24%, hsla(252, 80%, 2%, 0.9) 36%, hsl(235, 96%, 10%) 62%, hsla(226, 80%, 8%, 0) 100%);
}
#splash div.gradient-bottom {
  position: absolute;
  z-index: 2;
  bottom: 0;
  height: 27%;
  width: 100%;
  background: linear-gradient(to bottom, hsla(256, 100%, 20%, 0) 0%, hsla(288, 64%, 55%, 0.7) 46%, hsl(298, 55%, 80%) 72%, hsl(0, 0%, 95%) 100%);
  background-image: linear-gradient(to bottom, hsla(262, 100%, 23%, 0) 0%, hsla(288, 71%, 54%, 0.7) 47%, hsl(284, 49%, 62%) 60%, hsl(298, 55%, 80%) 72%, hsl(0, 0%, 95%) 100%);
}
#splash div.blur {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0);
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
}
#splash div.perspective {
  position: absolute;
  z-index: 4;
  width: 100%;
  max-height: 30vh;
  bottom: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash div.perspective img, #splash div.perspective svg {
  width: 100%;
  height: auto;
  min-width: 70rem;
}
#splash div.starfield {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
}
#splash div.starfield span {
  position: absolute;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: hsl(211, 81%, 79%);
  box-shadow: 0 0 0.9rem 0.2rem hsla(0, 0%, 100%, 0.4);
  animation-name: stars_twinkle;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#splash div.starfield span.bright {
  background: hsl(57, 100%, 92%);
}
#splash div.starfield span.star1 {
  top: 24%;
  left: 5%;
  animation-duration: 6s;
  animation-delay: 0s;
}
#splash div.starfield span.star2 {
  top: 30%;
  left: 10%;
  animation-duration: 5.3s;
  animation-delay: 1.3s;
}
#splash div.starfield span.star3 {
  top: 50%;
  left: 7%;
  animation-duration: 7s;
  animation-delay: 0.4s;
}
#splash div.starfield span.star4 {
  top: 50%;
  left: 30%;
  animation-duration: 6.3s;
  animation-delay: 0.2s;
}
#splash div.starfield span.star5 {
  top: 71%;
  left: 38%;
  animation-duration: 5.8s;
  animation-delay: 0s;
}
#splash div.starfield span.star6 {
  top: 69%;
  left: 58%;
  animation-duration: 6.5s;
  animation-delay: 1.2s;
}
#splash div.starfield span.star7 {
  top: 47%;
  left: 63%;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}
#splash div.starfield span.star8 {
  top: 25%;
  left: 53%;
  animation-duration: 7.1s;
  animation-delay: 0.8s;
}
#splash div.starfield span.star9 {
  top: 29%;
  left: 75%;
  animation-duration: 6.2s;
  animation-delay: 0.1s;
}
#splash div.starfield span.star10 {
  top: 18%;
  left: 82%;
  opacity: 0.6;
  animation-duration: 5.9s;
  animation-delay: 0.2s;
}
#splash div.starfield span.star11 {
  top: 28%;
  left: 87%;
  animation-duration: 6.3s;
  animation-delay: 0s;
}
#splash div.starfield span.star12 {
  top: 38%;
  left: 91%;
  animation-duration: 5.6s;
  animation-delay: 0s;
}
#splash div.starfield span.star13 {
  top: 40%;
  left: 93%;
  animation-duration: 7s;
  animation-delay: 0s;
}
#splash div.starfield span.star14 {
  top: 59%;
  left: 96%;
  animation-duration: 6.8s;
  animation-delay: 0s;
}
#splash div.starfield span.star15 {
  top: 73%;
  left: 85%;
  animation-duration: 6.2s;
  animation-delay: 0.4s;
}
#splash > * {
  z-index: 5;
}
#splash a.site-title {
  height: 2rem;
  margin-top: 1.7rem;
}
#splash a.site-title img {
  height: 100%;
}
#splash div.copy {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 0.5rem;
}
#splash div.copy h1 {
  font-size: clamp(12vw, 12vw, 9.2em);
  line-height: 0.9;
  white-space: nowrap;
  padding: 0.2em 0;
  font-weight: 400; /* Animation Start Value */
  transform: scale(94%); /* Animation Start Value */
  color: hsl(205, 67%, 31%); /* Animation Start Value */
}
#splash div.copy h1::selection {
  background: hsla(262, 100%, 57%, 0.3);
}
#splash div.copy h2 {
  letter-spacing: -0.06em;
  font-size: clamp(5vw, 5vw, 5.8em);
  padding: 0 3rem;
  color: hsl(26, 75%, 91%);
  filter: opacity(10%); /* Animation Start Value */
  transform: scaleX(108%); /* Animation Start Value */
  animation: splash_h2 0.6s 1.8s forwards;
}
#splash div.copy h2 a, #splash div.copy h2 a:visited, #splash div.copy h2 a:active {
  color: #1289e4;
}
#splash div.copy div.normal h1:nth-of-type(1) {
  animation: splash_h1 0.9s 0.4s forwards;
}
#splash div.copy div.normal h1:nth-of-type(2) {
  animation: splash_h1 0.9s 1.1s forwards;
}
#splash div.copy div.shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
#splash div.copy div.shadow h1 {
  font-weight: 800;
  transform: scale(1);
  opacity: 0;
  background: linear-gradient(to bottom, hsl(190, 98%, 48%) 10%, hsl(213, 76%, 52%) 60%, hsla(315, 100%, 83%, 0.9) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
#splash div.copy div.shadow h1:nth-of-type(1) {
  animation: splash_h1_shadow 0.5s 1s forwards;
}
#splash div.copy div.shadow h1:nth-of-type(2) {
  animation: splash_h1_shadow 0.5s 1.7s forwards;
}
#splash div.scroll-indicator {
  flex-grow: 0;
  height: 2rem;
  opacity: 0;
  animation: splash_scroll-indicator 800ms 3.1s forwards;
}

@keyframes splash_scroll-indicator {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes splash_h1 {
  0% {
    transform: scale(94%);
    font-weight: 400;
    color: hsl(205, 67%, 31%);
  }
  14% {
    color: hsl(280, 65%, 57%);
  }
  30% {
    color: hsl(52, 100%, 50%);
  }
  55% {
    color: hsl(156, 100%, 50%);
  }
  80% {
    transform: scale(100%);
    color: hsl(213, 76%, 52%);
  }
  100% {
    font-weight: 800;
    transform: scale(100%);
    color: hsl(213, 76%, 52%);
  }
}
@keyframes splash_h1_shadow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes splash_h2 {
  from {
    filter: opacity(10%);
    transform: scaleX(108%);
  }
  to {
    filter: opacity(100%);
    transform: scaleX(100%);
  }
}
@keyframes stars_twinkle {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1.6rem);
  }
}
@media (max-width: 68.75rem) {
  #splash div.copy h1 {
    font-size: 13.5vw;
  }
  #splash div.copy h2 {
    font-size: 6vw;
  }
}
@media (max-width: 40.625rem) {
  #splash div.copy h1 {
    font-size: 13vw;
  }
  #splash div.copy h2 {
    font-size: 8.8vw;
    padding: 0;
  }
  #splash div.copy {
    padding: 0px;
  }
}
/* Splash [END] */
