@charset "UTF-8";
:root {
  --background-color-main: hsla(180, 6%, 94%, 1);
  --splash-background-color: hsl(249, 100%, 20%);
  --overscroll-top: linear-gradient(to bottom,
  	hsl(211, 76%, 54%),
  	hsl(265, 80%, 88%)
  );
  --overscroll-bottom: linear-gradient(to bottom,
  	hsla(185, 76%, 62%, 1.00),
  	hsl(195, 100%, 85%) 50%
  );
  --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);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color-main: hsla(207, 15%, 12%, 1);
    --overscroll-top: linear-gradient(to bottom,
    	hsl(211, 76%, 54%),
    	hsl(258, 81%, 30%)
    );
    --overscroll-bottom: linear-gradient(to bottom,
    	hsla(237, 74%, 50%, 1.00),
    	hsl(230, 76%, 53%) 50%
    );
    --text-color-100: hsla(0, 0%, 94%, 1);
    --text-color-800: hsla(0, 0%, 80%, 1);
    --text-color-600: hsla(0, 0%, 59%, 1);
    --text-color-400: hsla(0, 0%, 100%, 0.5);
  }
}
html {
  scroll-behavior: initial;
}

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

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

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

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nav Story Ticker
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
nav.header-background::before {
  content: "";
  position: absolute;
  height: inherit;
  width: 100%;
  left: 0;
  background-image: linear-gradient(to bottom, rgb(221, 201, 249), rgba(237, 240, 240, 0) 60%);
}

nav.header-background-animation::before {
  content: "";
  position: absolute;
  height: 50px;
  width: 100%;
  left: 0;
  background-image: linear-gradient(to bottom, rgb(221, 201, 249), rgba(237, 240, 240, 0) 60%);
  animation-name: header-background;
  animation-duration: 1s;
}

nav {
  height: 3.125rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  --background-gradient: linear-gradient(to bottom,
  	hsla(265, 80%, 88%, 1),
  	hsla(180, 9%, 94%, 0) 60%
  );
  --button-gradient: linear-gradient(to bottom,
  	hsla(265, 80%, 88%, 1),
  	hsla(180, 9%, 94%, 0.7) 60%);
}
nav div.background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background: var(--background-gradient);
  opacity: 0;
  transition: opacity 1s;
}
nav div.background.show {
  opacity: 1;
}
nav ul {
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.625rem;
  list-style-type: none;
  overflow: scroll;
  -ms-overflow-style: none; /* Edge hide scrollbar */
  scrollbar-width: none; /* FF hide scrollbar */
}
nav ul li.home, nav ul li.more {
  padding: 0;
  background: none;
  border-radius: unset;
}
nav ul li.home a, nav ul li.more a {
  display: flex;
  align-items: center;
}
nav ul li.home img, nav ul li.more img {
  height: 1.3125rem;
  width: 1.3125rem;
}
nav ul div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}
nav ul a {
  white-space: nowrap;
  text-decoration: none;
  height: calc(100% - 0.9375rem);
  transition: transform 500ms;
}
nav ul a:hover {
  transform: scale(1.01);
  filter: brightness(1.1);
}
nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.01rem;
  flex-shrink: 0;
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: hsl(217, 12%, 49%);
  border-radius: 5rem;
}
nav ul li span.subtitle {
  opacity: 0.85;
  font-style: italic;
  font-size: 1.15rem;
}
nav ul li.splash-mini {
  background: linear-gradient(hsl(275, 100%, 50%), hsl(262, 100%, 50%));
  color: hsl(212, 100%, 91%);
  font-family: "Unbounded Var";
  font-weight: 550;
}
nav ul li.splash-mini span {
  font-family: "Maru Var";
  font-size: 0.9em;
  color: hsla(0, 0%, 100%, 0.91);
  font-style: italic;
}
nav ul::-webkit-scrollbar {
  display: none; /* Safari, Chrome hide scrollbar */
}

@media (prefers-color-scheme: dark) {
  nav {
    --background-gradient: linear-gradient(to bottom,
    	hsl(258, 81%, 30%),
    	hsla(180, 9%, 94%, 0) 60%
    );
    --button-gradient: linear-gradient(to bottom,
    	hsl(258, 81%, 30%),
    	hsla(0, 0%, 31%, 0.7) 60%);
  }
}
/* Nav Story Ticker [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Timeline (contribution activity)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#timeline {
  --block-size: 2rem;
  --block-radius: 0.18rem;
  --block-gap: 0.31rem;
  --block-color: hsl(210, 3%, 84%);
  --block-color-future: hsl(0, 0%, 91%);
  --block-color-low: hsl(130, 51%, 69%);
  --block-color-med: hsl(130, 81%, 38%);
  --block-color-high: hsl(130, 100%, 27%);
  --block-color-shipped: linear-gradient(to top,
  	hsl(215, 100%, 75%) 0%,
  	hsl(215, 100%, 63%) 30%,
  	hsl(221, 100%, 50%)
  );
  --block-color-special: linear-gradient(to bottom,
  	hsl(210, 3%, 84%),
  	hsl(250, 71%, 87%)
  );
  --block-color-personal: linear-gradient(to bottom,
  	hsl(237, 77%, 82%),
  	hsl(282, 100%, 75%)
  );
  --block-animation-start: hsla(174, 14%, 86%, 0);
  --block-animation-flash: hsl(203, 100%, 56%);
  --detail-card-background: hsl(0, 0%, 97%);
  --detail-card-border: 0.125rem solid hsla(0, 0%, 100%, 0.9);
  --soft-shadow:
  	0 0.06rem 0.187rem 0 hsla(0, 0%, 0%, 0.1),
  	0 0.06rem 0.125rem 0 hsla(0, 0%, 0%, 0.06);
}
#timeline div.canvas {
  display: flex;
  flex-direction: row-reverse;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* Edge hide scrollbar */
  scrollbar-width: none; /* FF hide scrollbar */
}
#timeline div.canvas div.scroll-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: var(--block-gap);
  padding: 0.625rem;
}
#timeline div.canvas div.week {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--block-gap);
}
#timeline div.canvas div.week p.label {
  display: block;
  min-height: var(--block-size);
  width: var(--block-size);
  margin-top: calc(-1 * var(--block-gap));
  white-space: nowrap;
  overflow-y: visible;
}
#timeline div.canvas div.week a {
  display: block;
  width: var(--block-size);
  height: var(--block-size);
  background: var(--block-color);
  border-radius: var(--block-radius);
  transition: filter 900ms;
}
#timeline div.canvas div.week a:hover {
  filter: brightness(0.9);
  transition: filter 0ms;
}
#timeline div.canvas div.week a.linked:hover {
  cursor: alias;
}
#timeline div.canvas div.week a.future {
  background: var(--block-color-future);
}
#timeline div.canvas div.week a.low {
  background: var(--block-color-low);
}
#timeline div.canvas div.week a.med {
  background: var(--block-color-med);
}
#timeline div.canvas div.week a.high {
  background: var(--block-color-high);
}
#timeline div.canvas div.week a.shipped {
  background: var(--block-color-shipped);
}
#timeline div.canvas div.week a.special {
  background: var(--block-color-special);
}
#timeline div.canvas div.week a.personal {
  background: var(--block-color-personal);
}
#timeline div.canvas div.week a.special img {
  --margin: 0.8rem;
  width: calc(var(--block-size) - var(--margin));
  height: calc(var(--block-size) - var(--margin));
  object-fit: contain;
  margin-left: calc(0.5 * var(--margin));
  margin-top: calc(0.5 * var(--margin));
}
#timeline div.canvas div.more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 2rem);
}
#timeline div.canvas div.more a {
  font-weight: 550;
  text-align: center;
  padding: 0.25rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  white-space: nowrap;
  transform: rotate(-90deg);
  color: var(--text-color-600);
}
#timeline div.canvas div.more a:hover {
  background: hsla(0, 0%, 88%, 0.95);
  color: black;
}
#timeline div.canvas::-webkit-scrollbar {
  display: none; /* Safari, Chrome hide scrollbar */
}
#timeline div.details-cards {
  position: absolute;
  height: 100%;
  top: 0;
  z-index: 3;
  pointer-events: none;
}
#timeline div.details-cards div.activity {
  width: 10rem;
  min-height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.188rem;
  opacity: 0;
  animation: timeline-card 400ms 150ms forwards;
}
#timeline div.details-cards div.activity picture {
  width: 100%;
  border-radius: 0.56rem;
}
#timeline div.details-cards div.activity img {
  width: 100%;
  height: 12.19rem;
  object-fit: cover;
  border-radius: 0.56rem;
  background: var(--detail-card-background);
  border: var(--detail-card-border);
  box-shadow: var(--soft-shadow);
}
#timeline div.details-cards div.activity p {
  width: 100%;
  padding: 0.1875rem 0.3125rem 0;
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.3;
  border-radius: 0.4375rem;
  color: var(--text-color-800);
  background: var(--detail-card-background);
  box-shadow: var(--soft-shadow);
}
#timeline div.details-cards div.activity p span.date {
  font-weight: 500;
  color: var(--text-color-400);
  white-space: nowrap;
}
#timeline div.details-cards div.activity p span.date::before {
  content: " ";
}
#timeline div.details-cards div.activity p span.level {
  color: var(--block-color-med);
}
#timeline div.tooltip {
  width: 100%;
  height: var(--block-size);
  padding-top: 0.35rem;
  padding-right: 0.625rem;
  margin-top: calc(-1 * var(--block-size) - 0.625rem);
  overflow: visible;
  z-index: 10;
}
#timeline div.tooltip svg {
  margin-left: auto;
  width: var(--block-size);
  height: 1.4rem;
  color: var(--text-color-600);
  fill: currentColor;
  background: var(--background-color-main);
  border-radius: 2rem;
}
#timeline div.tooltip svg:hover {
  color: var(--text-color-800);
  cursor: help;
}
#timeline div.tooltip svg:hover + p {
  display: block;
}
#timeline div.tooltip p {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: 0.625rem;
  color: var(--text-color-800);
  max-width: 18rem;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1.3;
  border-radius: 0.4375rem;
  background: var(--detail-card-background);
  box-shadow: var(--soft-shadow);
}
#timeline div.tooltip p em {
  line-height: 1.3;
}
#timeline div.tooltip p span {
  display: inline-block;
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 0.2rem;
}
#timeline div.tooltip p span.shipped {
  background: var(--block-color-shipped);
}
#timeline div.tooltip p span.high {
  background: var(--block-color-high);
}
#timeline div.tooltip p span.med {
  background: var(--block-color-med);
}
#timeline div.tooltip p span.low {
  background: var(--block-color-low);
}
#timeline div.tooltip p span.personal {
  background: var(--block-color-personal);
}

@media (prefers-color-scheme: dark) {
  #timeline {
    --block-radius: 0.11rem;
    --block-color: hsl(211, 5%, 28%);
    --block-color-future: hsl(189, 7%, 17%);
    --block-color-low: hsl(138, 38%, 21%);
    --block-color-med: hsl(138, 75%, 26%);
    --block-color-high: hsl(130, 100%, 35%);
    --block-color-shipped: linear-gradient(to top,
    	hsl(203, 80%, 78%) 0%,
    	hsl(201, 100%, 57%) 30%,
    	hsl(210, 93%, 47%)
    );
    --block-color-special: linear-gradient(to bottom,
    	hsl(211, 5%, 28%),
    	hsl(219, 51%, 28%)
    );
    --block-color-personal: linear-gradient(to bottom,
    	hsla(262, 94%, 47%, 1),
    	hsl(270, 35%, 47%)
    );
    --block-animation-start: hsla(174, 14%, 86%, 0);
    --block-animation-flash: hsl(203, 100%, 56%);
    --detail-card-background: hsl(0, 0%, 13%);
    --detail-card-border: 0.125rem solid hsl(0, 0%, 13%);
    --soft-shadow:
    	inset 0 0 0 0.0625rem hsla(0, 0%, 100%, 0.12),
    	0 0.06rem 0.187rem 0 hsla(0, 0%, 0%, 0.3),
    	0 0.06rem 0.125rem 0 hsla(0, 0%, 0%, 0.2);
  }
  #timeline div.canvas div.week a {
    box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.06), 0 1px 0 0 hsl(0, 0%, 0%);
  }
}
@media (max-width: 46rem) {
  #timeline {
    --block-size: 1.8rem;
    --block-radius: 0.13rem;
    --block-gap: 0.28rem;
  }
}
@keyframes timeline-card {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Load Animation */
@keyframes timeline-blocks {
  0% {
    background-color: var(--block-animation-start);
    filter: brightness(110%) opacity(70%);
  }
  55% {
    background-color: var(--block-animation-flash);
    filter: opacity(40%);
  }
  100% {
    background-color: var(--block-animation-start);
  }
}
#timeline div.canvas div.week {
  --animation-time: 290ms;
  --animation-delay: 25ms;
  --base-delay: 600ms;
}
#timeline div.canvas div.week a:nth-of-type(1) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 1 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(2) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 2 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(3) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 3 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(4) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 4 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(5) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 5 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(6) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 6 + var(--base-delay));
}
#timeline div.canvas div.week a:nth-of-type(7) {
  animation-name: timeline-blocks;
  animation-duration: var(--animation-time);
  animation-delay: calc(var(--animation-delay) * 7 + var(--base-delay));
}

/* Timeline [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bio Section
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
article#bio {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.8rem;
  padding-bottom: 6rem;
  text-align: center;
  --bio-expand-background-start: hsla(0, 0%, 89%, 1);
  --bio-expand-background-flash: hsla(0, 0%, 89%, 0.60);
  --bio-expand-background-end: hsla(0, 0%, 89%, 0);
}
article#bio div.profile-picture {
  height: 6rem;
  overflow: hidden;
  margin-bottom: 1.7rem;
}
article#bio div.profile-picture picture, article#bio div.profile-picture img {
  height: 100%;
  opacity: 0.93;
  transform: scale(0.9) translateY(9%);
  transform-origin: bottom;
  transition: all 500ms;
}
article#bio div.profile-picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, hsla(180, 6%, 94%, 0) 0%, hsla(180, 6%, 94%, 0.3) 50%, var(--background-color-main) 100%);
}
article#bio div.profile-picture:hover picture,
article#bio div.profile-picture:hover img {
  opacity: 1;
  transform: scale(1) translateY(0%);
}
article#bio h1 {
  font-family: "Pressura Var", "Maru Var", sans-serif;
  font-variation-settings: "wght" 490, "wdth" 110, "ital" 0.15;
  font-size: 1.7em;
  line-height: 1.5;
  font-weight: 550;
  letter-spacing: 0em;
  max-width: 59ch;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  --underline: 2px dotted hsl(0, 0%, 62%);
  --definition-color: hsl(0, 0%, 34%);
  --expand-color: hsl(0, 0%, 0%);
  --expand-button-background: hsl(0, 0%, 89%);
}
article#bio h1 button {
  all: unset;
  cursor: cell;
}
article#bio h1 img {
  height: 1em;
  width: 1em;
  display: inline;
  object-fit: contain;
  margin: 0 0.05em -0.15em;
}
article#bio h1 span.define {
  border-bottom: var(--underline);
}
article#bio h1 span.definition {
  border-bottom: var(--underline);
  color: var(--definition-color);
  font-variation-settings: "wght" 400, "wdth" 110, "ital" 0.5;
}
article#bio h1 span.expand {
  background: var(--expand-button-background);
  font-variation-settings: "wght" 550, "wdth" 110, "ital" 0.3;
  padding: 4px 8px 2px;
  border-radius: 6px;
  color: var(--expand-color);
  white-space: nowrap;
}
article#bio h1 span.expansion {
  color: var(--expand-color);
  font-variation-settings: "wght" 550, "wdth" 110, "ital" 0.5;
  animation: bio-expand 500ms;
}
article#bio p {
  color: var(--text-color-600);
  font-size: 1.05em;
  padding: 0.3em;
}
article#bio ul {
  padding-top: 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
article#bio ul li {
  list-style: none;
}
article#bio ul a, article#bio ul a:visited {
  font-size: 1.1em;
  font-weight: 510;
  color: var(--text-color-100);
  transition: color 100ms ease-in-out;
}
article#bio ul a:hover {
  color: hsl(213, 95%, 47%);
}
article#bio ul a:active {
  color: hsl(186, 59%, 54%);
}

@keyframes bio-expand {
  0% {
    opacity: 0;
    color: rgb(0, 119, 255);
    background: var(--bio-expand-background-start);
  }
  50% {
    opacity: 1;
    color: rgb(0, 119, 255);
    background: var(--bio-expand-background-flash);
  }
  100% {
    opacity: 1;
    color: var(--text-color-100);
    background: var(--bio-expand-background-end);
  }
}
@media (prefers-color-scheme: dark) {
  article#bio {
    --bio-expand-background-start: hsla(201, 78%, 15%, 1);
    --bio-expand-background-flash: hsla(201, 93%, 21%, 0.85);
    --bio-expand-background-end: hsla(201, 78%, 15%, 0);
  }
  article#bio h1 {
    --underline: 2px dotted hsl(0, 0%, 62%);
    --definition-color: hsl(204, 7%, 69%);
    --expand-color: hsl(192, 60%, 94%);
    --expand-button-background: hsl(202, 22%, 6%);
  }
  article#bio div.profile-picture:after {
    background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 0%, var(--background-color-main) 100%);
  }
}
/* Bio Section [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Showcase
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#showcase {
  --br: 0.94rem;
  height: 54svh;
  min-height: 12.5rem;
  background: linear-gradient(to bottom, var(--background-color-main), hsl(219, 91%, 82%));
  /* Image Card
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* Latest Writing Card
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
}
#showcase div.scroll-container {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
#showcase div.scroll-container::-webkit-scrollbar {
  display: none;
}
#showcase div.scroll-faders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
#showcase div.scroll-faders div {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2rem;
}
#showcase div.scroll-faders div:nth-of-type(1) {
  left: 0;
  background: linear-gradient(to right, var(--background-color-main), hsla(180, 6%, 94%, 0));
}
#showcase div.scroll-faders div:nth-of-type(2) {
  right: 0;
  background: linear-gradient(to left, var(--background-color-main), hsla(180, 6%, 94%, 0));
}
#showcase .card {
  height: 100%;
  position: relative;
  aspect-ratio: 1.2;
  max-width: 77vw;
  flex-shrink: 0;
  border-radius: var(--br);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, hsl(213, 10%, 79%), hsl(180, 8%, 85%));
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  text-decoration: none;
  transition: transform 250ms;
}
#showcase .card div.info {
  width: 100%;
  border-radius: var(--br);
  padding: 3rem 1.2rem 1.3rem;
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.5) 60%);
  color: hsl(207, 18%, 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#showcase .card p.title {
  font-family: "Pressura Var";
  font-weight: 600;
  letter-spacing: -0.017em;
  font-size: 3rem;
}
#showcase .card p.description {
  font-family: "Maru Var";
  font-weight: 500;
  font-size: 1.1rem;
}
#showcase .card picture, #showcase .card img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--br);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#showcase .card.simple {
  background: linear-gradient(to bottom, hsl(220, 29%, 8%), hsl(220, 12%, 13%));
  box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.12), inset 0 -1px 0 0 hsla(0, 0%, 0%, 0.3);
}
#showcase div.card.latest {
  padding: 1.8rem 0.8rem 1rem;
  color: hsl(226, 13%, 19%);
  aspect-ratio: 10/14;
  justify-content: flex-start;
  background: linear-gradient(to top, hsl(198, 9%, 83%), hsl(213, 11%, 80%));
  box-shadow: inset 0 -1px 0 0 hsla(0, 0%, 0%, 0.12);
  overflow-y: scroll;
}
#showcase div.card.latest div.gizmos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  border-radius: 0.94rem 0.94rem 0 0;
  overflow: hidden;
}
#showcase div.card.latest h2 {
  font-family: "Pressura Var";
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(218, 78%, 53%);
  background: linear-gradient(to bottom, hsl(221, 98%, 56%), hsl(212, 98%, 69%));
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
#showcase div.card.latest ul {
  flex-grow: 1;
  list-style: none;
}
#showcase div.card.latest ul li {
  font-size: 1.2rem;
  padding-bottom: 0.7rem;
  font-weight: 500;
}
#showcase div.card.latest ul li span.subtitle {
  font-weight: 400;
  font-style: italic;
  font-size: 1.1rem;
}
#showcase div.card.latest ul li span.date {
  font-family: "Pressura Var";
  font-size: 1.1rem;
  opacity: 0.8;
}
#showcase div.card.latest ul li a {
  color: hsl(226, 25%, 23%);
  text-decoration: none;
}
#showcase div.card.latest h3 {
  margin: auto;
}
#showcase div.card.latest h3 a {
  display: inline-block;
  color: hsl(41, 8%, 24%);
  text-decoration: none;
  background: hsl(40, 8%, 77%);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
}

@media (max-width: 45rem) {
  #showcase div.scroll-container {
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
  }
  #showcase div.scroll-container .card {
    scroll-snap-align: center;
  }
  #showcase div.scroll-faders div {
    width: 1rem;
  }
  #showcase div.card.latest {
    padding-top: 1rem;
  }
  #showcase div.card.latest h2 {
    white-space: nowrap;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  #showcase div.card.latest ul li {
    display: none;
  }
  #showcase div.card.latest ul li:first-child {
    display: block;
    font-size: 1.6rem;
    padding: 1.1rem 0.7rem;
    background: linear-gradient(to top, hsl(218, 8%, 69%), hsl(230, 4%, 59%));
    box-shadow: 0 0.2rem 0.4rem 0 hsla(0, 0%, 0%, 0.1), inset 0 0 0 1px hsla(0, 0%, 0%, 0.05), inset 0 -1px 0 0 hsla(0, 0%, 0%, 0.12);
    border-radius: var(--br);
    transform: rotate(-1deg);
  }
}
@media (prefers-color-scheme: dark) {
  #showcase {
    background: linear-gradient(to bottom, var(--background-color-main), hsl(253, 40%, 18%));
  }
  #showcase div.card.latest {
    background: linear-gradient(to top, hsl(180, 9%, 15%), hsl(213, 29%, 4%));
    box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.12), inset 0 -1px 0 0 hsla(0, 0%, 0%, 0.3);
  }
  #showcase div.card.latest h2 {
    background: linear-gradient(to bottom, hsl(205, 90%, 67%), hsl(229, 100%, 94%));
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
  }
  #showcase div.card.latest ul li a {
    color: hsl(210, 40%, 92%);
  }
  #showcase div.card.latest h3 a {
    background: rgb(63, 63, 63);
    color: rgb(232, 232, 232);
  }
}
/* Showcase [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Showcase Cards Expanded
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div.cards.expanded {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 6rem 2rem 0;
  z-index: 10;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(0.35rem);
  -webkit-backdrop-filter: blur(0.35rem);
}
div.cards.expanded > div {
  width: 100%;
  max-width: 60rem;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: inset 0 1px 1px 0 hsla(0, 0%, 100%, 0.7) 0 0 2px 0.5rem hsla(0, 0%, 0%, 0.23);
}
div.cards.expanded div.latest {
  height: 100rem;
  background: rgb(225, 230, 234);
  margin: auto;
}

/* Showcase Cards Expanded [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FootEnd Section
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footend {
  width: 100%;
  min-height: 35rem;
  padding: 6rem 1rem 0;
  overflow-x: hidden;
}
#footend > * {
  z-index: 5;
}
#footend > div.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#footend div.top {
  z-index: 2;
  background-image: linear-gradient(to bottom, hsl(217, 100%, 50%) 0%, hsl(208, 89%, 64%) 18%, hsl(217, 100%, 74%) 32%, hsla(233, 76%, 83%, 0.81) 40%, hsla(264, 96%, 92%, 0.72) 52%, hsla(285, 100%, 94%, 0.57) 60%, hsla(280, 100%, 100%, 0) 100%);
}
#footend div.bottom {
  z-index: 1;
  background-image: linear-gradient(to top, hsl(182, 79%, 57%) 0%, hsl(193, 78%, 48%) 15%, hsl(197, 77%, 50%) 21%, hsl(203, 90%, 57%) 32%, hsl(208, 93%, 68%) 39%, hsla(208, 90%, 85%, 0) 100%);
}
#footend div.lighting {
  overflow-x: hidden;
}
#footend div.lighting > * {
  position: absolute;
  width: 120%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 4;
  mix-blend-mode: soft-light;
}
#footend div.lighting .m1 {
  opacity: 0.33;
  background-image: linear-gradient(274deg, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0.06) 4%, rgba(238, 238, 238, 0.69) 5%, rgba(238, 238, 238, 0.79) 5%, rgba(238, 238, 238, 0.48) 7%, rgba(238, 238, 238, 0.1) 8%, rgba(238, 238, 238, 0.26) 19%, rgba(239, 239, 239, 0.82) 22%, rgba(239, 239, 239, 0.62) 24%, rgba(240, 240, 240, 0.19) 25%, rgba(240, 240, 240, 0.12) 26%, rgba(241, 241, 241, 0) 30%, rgba(242, 242, 242, 0) 33%, rgba(243, 243, 243, 0.33) 37%, rgba(243, 243, 243, 0.35) 39%, rgba(244, 244, 244, 0.26) 41%, rgba(244, 244, 244, 0) 42%, rgba(246, 246, 246, 0) 54%, rgba(246, 246, 246, 0.54) 55%, rgba(246, 246, 246, 0.81) 57%, rgba(247, 247, 247, 0.83) 60%, rgba(247, 247, 247, 0.44) 62%, rgba(248, 248, 248, 0.09) 64%, rgba(250, 250, 250, 0) 81%, rgba(251, 251, 251, 0.56) 86%, rgba(252, 252, 252, 0.64) 90%, rgba(252, 252, 252, 0.06) 93%, rgba(253, 253, 253, 0.07) 95%, rgba(255, 255, 255, 0) 100%);
  animation-name: lighting-movement-1;
  animation-duration: 23s;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
#footend div.lighting .m2 {
  opacity: 0.33;
  background-image: linear-gradient(274deg, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0.01) 5%, rgba(238, 238, 238, 0.6) 6%, rgba(238, 238, 238, 0.51) 9%, rgba(238, 238, 238, 0.35) 10%, rgba(238, 238, 238, 0.49) 11%, rgba(238, 238, 238, 0.17) 12%, rgba(238, 238, 238, 0.26) 19%, rgba(239, 239, 239, 0.82) 24%, rgba(239, 239, 239, 0.62) 26%, rgba(240, 240, 240, 0.19) 27%, rgba(240, 240, 240, 0.12) 28%, rgba(241, 241, 241, 0) 31%, rgba(242, 242, 242, 0.44) 34%, rgba(242, 242, 242, 0.78) 35%, rgba(242, 242, 242, 0.62) 36%, rgba(243, 243, 243, 0.33) 37%, rgba(243, 243, 243, 0.35) 38%, rgba(244, 244, 244, 0) 40%, rgba(244, 244, 244, 0.18) 47%, rgba(244, 244, 244, 0.98) 48%, #F4F4F4 49%, rgba(246, 246, 246, 0.8) 50%, rgba(246, 246, 246, 0.28) 51%, rgba(246, 246, 246, 0.54) 53%, rgba(246, 246, 246, 0) 55%, rgba(248, 248, 248, 0) 60%, rgba(248, 248, 248, 0.41) 62%, rgba(248, 248, 248, 0.47) 63%, rgba(249, 249, 249, 0.76) 64%, rgba(249, 249, 249, 0) 65%, rgba(250, 250, 250, 0) 71%, rgba(251, 251, 251, 0.56) 74%, rgba(252, 252, 252, 0.87) 76%, rgba(252, 252, 252, 0.65) 77%, rgba(252, 252, 252, 0.72) 79%, rgba(253, 253, 253, 0.07) 83%, rgba(254, 254, 254, 0) 88%, rgba(254, 254, 254, 0.87) 92%, rgba(254, 254, 254, 0.63) 95%, rgba(255, 255, 255, 0) 97%, rgba(255, 255, 255, 0) 100%);
  animation-name: lighting-movement-2;
  animation-duration: 16s;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
#footend div.lighting .m3 {
  opacity: 0.25;
  background-image: linear-gradient(274deg, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0.26) 8%, rgba(239, 239, 239, 0.82) 11%, rgba(239, 239, 239, 0.62) 15%, rgba(240, 240, 240, 0.19) 17%, rgba(240, 240, 240, 0.12) 18%, rgba(241, 241, 241, 0) 21%, rgba(242, 242, 242, 0) 24%, rgba(243, 243, 243, 0.33) 28%, rgba(243, 243, 243, 0.35) 34%, rgba(244, 244, 244, 0) 36%, rgba(244, 244, 244, 0.18) 40%, rgba(245, 245, 245, 0) 44%, rgba(245, 245, 245, 0.7) 46%, rgba(245, 245, 245, 0.71) 47%, rgba(245, 245, 245, 0.93) 48%, rgba(246, 246, 246, 0.71) 49%, rgba(246, 246, 246, 0.23) 51%, rgba(246, 246, 246, 0) 55%, rgba(250, 250, 250, 0) 61%, rgba(251, 251, 251, 0.56) 64%, rgba(252, 252, 252, 0.87) 68%, rgba(252, 252, 252, 0.72) 71%, rgba(253, 253, 253, 0.07) 74%, rgba(254, 254, 254, 0) 78%, rgba(254, 254, 254, 0.87) 87%, rgba(254, 254, 254, 0.63) 88%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  animation-name: lighting-movement-3;
  animation-duration: 12s;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
#footend div.blur {
  z-index: 3;
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
}
#footend div.line {
  height: 1px;
  z-index: 4;
  background: hsla(210, 100%, 96%, 0.805);
  mix-blend-mode: normal;
}
#footend h1 {
  width: 90%;
  max-width: 24ch;
  margin: auto;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.12rem;
  color: hsla(0, 0%, 100%, 0.85);
  text-align: center;
  font-family: "Inter Var";
  letter-spacing: -0.017em;
}
#footend h1 span {
  font-style: italic;
}
#footend h1 strong {
  color: hsla(208, 100%, 98%, 0.78);
  font-weight: 880;
}
#footend div.follow {
  width: 100%;
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}
#footend div.follow .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.8rem;
}
#footend div.follow .container a svg {
  height: 2rem;
  width: 2rem;
  color: hsl(211, 100%, 92%);
  fill: currentColor;
  transition: all 300ms;
}
#footend div.follow .container a:hover svg {
  color: hsl(211, 100%, 100%);
}
#footend div.follow .container a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  transform: translateX(calc(-2.5rem + 15.5px)) translateY(calc(-2.5rem + 15.5px)) scale(2);
  transform-origin: center;
  pointer-events: none;
  background: transparent;
  background: radial-gradient(circle, hsla(0, 0%, 0%, 0), hsla(201, 100%, 87%, 0.4), hsla(216, 94%, 42%, 0) 70%);
  opacity: 0;
  transition: all 300ms ease-out;
}
#footend div.follow .container a:hover:after {
  transform: translateX(calc(-2.5rem + 15.5px)) translateY(calc(-2.5rem + 15.5px)) scale(1);
  opacity: 1;
}
#footend p.copyright {
  font-family: "Inter Var", "Inter V", "Inter", sans-serif;
  color: hsla(0, 0%, 100%, 0.8);
  padding-bottom: 1rem;
  width: 100%;
  text-align: center;
}
#footend div.process {
  --border-radius: 0.8rem;
  width: fit-content;
  margin: 1.5rem auto;
  min-height: 3rem;
  border-radius: var(--border-radius);
  background: linear-gradient(to bottom, hsl(227, 100%, 50%), hsl(215, 100%, 64%));
  padding: 0.9rem 1.2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
#footend div.process p {
  font-family: "Unbounded Var";
  font-size: 2rem;
  font-weight: 600;
  padding: 0 0.5rem;
  z-index: 2;
  color: hsl(196, 34%, 78%);
}
#footend div.process p.w1 {
  background: linear-gradient(to bottom, hsl(216, 66%, 65%), hsl(237, 66%, 80%));
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>💡</text></svg>") 16 0, auto; /*!emojicursor.app*/
}
#footend div.process p.w2 {
  background: linear-gradient(to bottom, hsl(177, 48%, 79%), hsl(223, 54%, 77%));
  cursor: progress;
}
#footend div.process p.w3 {
  background: linear-gradient(to bottom, hsl(199, 100%, 97%) 30%, hsl(204, 85%, 85%) 50%, hsl(240, 100%, 91%) 80%, hsl(333, 73%, 95%) 100%);
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>✨</text></svg>") 16 0, auto; /*!emojicursor.app*/
}
#footend div.process p.w1, #footend div.process p.w2, #footend div.process p.w3 {
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
#footend div.process #starfield {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 1;
}
#footend div.process #starfield span {
  position: absolute;
  height: 2px;
  width: 2px;
  border-radius: 50%;
  background: hsl(211, 81%, 79%);
  box-shadow: 0 0 0.5rem 0.15rem hsla(0, 0%, 100%, 0.1);
  animation-name: process-stars;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#footend div.process #starfield .star1 {
  right: 20%;
  top: 19%;
  animation-duration: 5s;
  animation-delay: 0;
}
#footend div.process #starfield .star2 {
  right: 12%;
  top: 10%;
  animation-duration: 6.5s;
  animation-delay: 0;
}
#footend div.process #starfield .star3 {
  right: 27%;
  bottom: 12%;
  animation-duration: 5s;
  animation-delay: 2.4s;
}
#footend div.process #starfield .star4 {
  right: 2%;
  bottom: 40%;
  animation-duration: 6s;
  animation-delay: 1.2s;
}
#footend div.process #starfield .star5 {
  right: 30%;
  top: 8%;
  background: hsl(211, 100%, 91%);
  animation-duration: 5s;
  animation-delay: 400ms;
}
#footend div.process #starfield .star6 {
  right: 8%;
  bottom: 17%;
  background: hsl(211, 100%, 91%);
  animation-duration: 3s;
  animation-delay: 2s;
}
#footend div.process #starfield .star7 {
  right: 34%;
  top: 26%;
  animation-duration: 9s;
  animation-delay: 2s;
}
#footend div.process .highlight {
  position: absolute;
  height: 0.12rem;
  width: 20%;
  background: linear-gradient(to right, hsla(180, 17%, 86%, 0), hsl(63, 55%, 89%), hsla(180, 17%, 86%, 0));
  animation-name: process-highlight;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}
#footend div.process #top-light {
  top: 0;
  left: var(--border-radius);
  opacity: 0;
  animation-delay: 0;
}
#footend div.process #bottom-light {
  bottom: 0;
  left: var(--border-radius);
  opacity: 0;
  animation-delay: 2s;
}

@media (max-width: 45rem) {
  #footend {
    padding: 6rem 0.2rem 0;
  }
  #footend div.process {
    padding: 0.8rem 0.5rem;
    margin-bottom: 2.3rem;
  }
  #footend div.process p {
    font-size: 1.4rem;
    padding: 0 0.2rem;
    font-weight: 500;
  }
  #footend h1 {
    width: 100%;
    font-size: 2.1rem;
  }
  #footend div.lighting {
    transform: scaleX(2);
    transform-origin: center;
  }
}
@media (prefers-color-scheme: dark) {
  #footend div.top {
    background: linear-gradient(to bottom, hsl(290, 60%, 25%) 0%, hsl(267, 79%, 24%) 12%, hsl(260, 100%, 7%) 20%, hsl(258, 89%, 9%) 67%, hsl(255, 78%, 48%) 85%, hsl(233, 81%, 48%) 100%);
  }
  #footend div.line {
    background: hsla(210, 100%, 97%, 0.5);
    mix-blend-mode: soft-light;
  }
  #footend div.lighting {
    opacity: 0.2;
  }
  #footend div.process {
    background: linear-gradient(to bottom, hsl(258, 66%, 4%), hsl(252, 93%, 13%) 80%);
    box-shadow: inset 0 0 0 0.12rem hsla(215, 100%, 95%, 0.12);
  }
  #footend div.process p.w1 {
    background: linear-gradient(to bottom, hsl(216, 16%, 60%), hsl(221, 49%, 42%));
  }
  #footend div.process p.w2 {
    background: linear-gradient(to bottom, hsl(214, 34%, 82%), hsl(230, 46%, 49%));
  }
  #footend div.process p.w3 {
    background: linear-gradient(to bottom, hsl(199, 100%, 93%) 30%, hsl(199, 80%, 80%) 50%, hsl(256, 98%, 77%) 80%, hsl(240, 70%, 52%) 100%);
  }
  #footend div.process p.w1, #footend div.process p.w2, #footend div.process p.w3 {
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
  }
  #footend h1 strong {
    color: hsla(0, 0%, 100%, 0.55);
  }
  #footend div.follow .container a svg {
    color: hsl(229, 81%, 84%);
  }
  #footend div.follow .container a:hover svg {
    color: hsl(211, 100%, 92%);
  }
  #footend div.follow .container a:after {
    background: radial-gradient(circle, hsla(0, 0%, 0%, 0), hsla(219, 100%, 58%, 0.225), hsla(216, 94%, 42%, 0) 70%);
  }
}
@keyframes lighting-movement-1 {
  0% {
    opacity: 0;
    left: 20%;
    transform: scaleX(1);
  }
  5% {
    opacity: 0;
  }
  14% {
    opacity: 0.33;
  }
  17% {
    opacity: 0.1;
  }
  46% {
    opacity: 0.1;
    transform: scaleX(0.9);
  }
  53% {
    opacity: 0.33;
  }
  60% {
    opacity: 0.33;
  }
  68% {
    opacity: 0.1;
    transform: scaleX(1.1);
  }
  75% {
    opacity: 0.36;
  }
  84% {
    opacity: 0.3;
  }
  92% {
    opacity: 0.1;
  }
  97% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    left: 0;
    transform: scaleX(1.15);
  }
}
@keyframes lighting-movement-2 {
  0% {
    opacity: 0;
    left: 5%;
    transform: scaleX(1);
  }
  7% {
    opacity: 0.21;
  }
  14% {
    opacity: 0.25;
  }
  21% {
    opacity: 0.05;
  }
  28% {
    opacity: 0.1;
    transform: scaleX(1.05);
  }
  31% {
    opacity: 0.21;
  }
  36% {
    opacity: 0.15;
  }
  38% {
    opacity: 0.22;
  }
  42% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.05;
  }
  59% {
    opacity: 0.08;
    transform: scaleX(1.15);
  }
  64% {
    opacity: 0.25;
  }
  71% {
    opacity: 0.2;
  }
  76% {
    opacity: 0.05;
  }
  82% {
    opacity: 0;
  }
  93% {
    opacity: 0.23;
  }
  100% {
    opacity: 0;
    left: 0;
    transform: scaleX(1.2);
  }
}
@keyframes lighting-movement-3 {
  0% {
    opacity: 0;
    left: 10%;
    transform: scaleX(1);
  }
  10% {
    opacity: 0.3;
  }
  21% {
    opacity: 0.28;
  }
  27% {
    opacity: 0.09;
  }
  34% {
    opacity: 0;
    transform: scaleX(1);
  }
  39% {
    opacity: 0.25;
    transform: scaleX(1.05);
  }
  44% {
    opacity: 0.29;
  }
  50% {
    opacity: 0.14;
  }
  56% {
    opacity: 0;
  }
  63% {
    opacity: 0.28;
    transform: scaleX(1.1);
  }
  78% {
    opacity: 0.23;
  }
  83% {
    opacity: 0.31;
  }
  94% {
    opacity: 0.23;
  }
  100% {
    opacity: 0;
    left: -3%;
  }
}
@keyframes process-highlight {
  0% {
    opacity: 0;
    left: var(--border-radius);
  }
  3% {
    opacity: 1;
  }
  13% {
    opacity: 1;
  }
  15% {
    left: calc(80% - var(--border-radius));
    opacity: 0;
  }
  100% {
    left: var(--border-radius);
    opacity: 0;
  }
}
@keyframes process-stars {
  0% {
    opacity: 0;
    transform: translateX(-0.2rem);
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(0.3rem);
  }
}
/* FootEnd Section [End] */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Splash (New Visitor)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#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, rgba(43, 0, 119, 0) 0%, rgba(187, 53, 220, 0.7) 47%, #b570ce 60%, #E6B0E8 72%, #F1F1F1 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] */
