body.home{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 16px 48px;
}

body.home main{
  width:min(960px,94vw);
  margin:0 auto;
}

body.home h1{
  font-size:48px;
  font-weight:600;
  margin:8px 0 16px;
}

body.home p{
  font-size:18px;
  line-height:1.6;
  margin:0 auto 16px;
  color:var(--phosphor);
  text-shadow:0 0 .35em var(--glow1),0 0 .15em var(--glow2);
  max-width:820px;
  margin-left:5px;
  margin-right:5px;
}

body.home .content{
  text-align:left;
}

body.home .site-toggle{
  border-color:rgba(255,255,255,.18);
  color:var(--phosphor);
}

body.home .site-toggle .label{
  color:var(--phosphor);
  text-shadow:0 0 .35em var(--glow1),0 0 .15em var(--glow2);
}

body.home a{
  text-shadow:none;
}

body.home .site-toggle .slider::before{
  box-shadow:0 0 6px rgba(0,0,0,.6);
}

.highlight{
  color:#0071e3;
  font-weight:600;
  text-shadow:none;
}

body.home h1,
.terminal{
  color:var(--phosphor);
  text-shadow:0 0 .35em var(--glow1),0 0 .15em var(--glow2);
}

p[data-typewriter]{
  visibility:hidden;
}

pre.crt-shimmer{
  margin:0 0 6px;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  font-size:10px;
  white-space:pre;
  display:inline-block;
  isolation:isolate;
  contain:paint;
  background:linear-gradient(90deg,#ffffff 0%,color-mix(in srgb,var(--phosphor) 85%,#ffffff 15%) 10%,var(--phosphor) 50%,color-mix(in srgb,var(--phosphor) 85%,#000000 15%) 90%,#ffffff 100%);
  background-size:200% 100%;
  animation:shimmer 1.1s linear infinite;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

@keyframes shimmer{
  0%{background-position:0 0;}
  100%{background-position:200% 0;}
}

.terminal{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  color:var(--phosphor);
  text-shadow:0 0 .35em var(--glow1),0 0 .15em var(--glow2);
}

.caret{ position:relative; }

.caret::after{
  content:"";
  display:inline-block;
  width:.6ch;
  height:1em;
  background:currentColor;
  margin-left:.1ch;
  vertical-align:-.15em;
  animation:blink .9s steps(1,end) infinite;
}

@keyframes blink{
  50%{ opacity:0; }
}

body.home::before{
  content:"";
  position:fixed;
  inset:0;
  background:repeating-linear-gradient(to bottom,rgba(255,255,255,.04) 0,rgba(255,255,255,.04) 1px,transparent 2px,transparent 4px);
  mix-blend-mode:soft-light;
  opacity:.2;
  pointer-events:none;
}

@media (prefers-reduced-motion:reduce){
  pre.crt-shimmer{ animation:none; }
  body.home::before{ display:none; }
}
