body {
   margin: 0;
   font-family: 'Helvetica Neue', sans-serif;
   background: #EE4B6A;
   background-color: #14080E; /* of #fff of transparent */
   transition: background-color 2s ease;
   color: #14080E;
}
header {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   text-align: center;
   position: relative;
   overflow: hidden;
}
#logo-wrapper {
   width: 100vw;
   max-width: none;
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   transition: all 0.3s ease;
   will-change: transform;
}
#logo {
   width: 80vw;
   height: auto;
   display: block;
}
.scroll-reveal {
   transform: translateY(50px);
   opacity: 0;
}
section {
   padding: 8rem 2rem;
   text-align: center;
   /*max-width: 800px;*/
   margin: 0 0;
}
#typewriter {
   display: block;
   fill: #d8d3cf;
   font-family: "Luckiest Guy", cursive;
   font-weight: 400;
   font-style: normal;
   font-size: 134px;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.6s ease, transform 0.6s ease;
}
#g2 {
   opacity: 0;
}
#glowworms {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
}

.glowworm {
  position: fixed;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #0ce1a3;
  box-shadow: 0 0 16px 6px #0ce1a3;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.9;
  display: none;
}

.glowworm::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%) scale(1);
  background: #0ce1a3;
  border-radius: 50%;
  filter: blur(4px);
  animation: pulse 2.5s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  50% { transform: translate(-50%, -50%) scale(2); opacity: 0.7; }
}
body.inverted .glowworm {
  display: flex !important;
}

#pill {
   position: fixed!important;
   bottom: clamp(16px, 4vh, 40px);
   left: 50%;
   transform: translateX(-50%);
   width: 24px;
   height: 54px;
   border: 2px solid #14080E;
   border-radius: 50px;
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: center;
   padding: 6px 0;
   z-index: 99999;
   pointer-events: auto;
   background: rgba(20, 8, 14, 0.4);
   backdrop-filter: blur(3px);
   opacity: 1;
   transition: opacity 0.3s ease;
   top: unset;
 }
 
 .hyphen {
   width: 6px;
   height: 2px;
   background: #F45B69;
   border-radius: 1px;
   opacity: 0.2;
   animation: glowUp 2s infinite ease-in-out;
 }
 
 .hyphen:nth-child(1) { animation-delay: 0.6s; }
 .hyphen:nth-child(2) { animation-delay: 0.3s; }
 .hyphen:nth-child(3) { animation-delay: 0s; }
 
 @keyframes glowUp {
   0%, 100% { opacity: 0.2; transform: scaleX(1); }
   50%      { opacity: 1; transform: scaleX(1.5); }
 }
 
 body.scrolling .hyphen {
   animation: none !important;
   opacity: 0.2;
 }
 
 .section-content {
   opacity: 0;
   transform: translateY(40px);
   will-change: opacity, transform;
   font-family: "Roboto", sans-serif;
   font-optical-sizing: auto;
   font-size: 2rem;
   font-weight: 400;
   font-style: normal;
   font-variation-settings: "wdth" 100;
   position: relative;
   margin: 0 auto;
   max-width: 800px;
   text-align: center;
}
section.scroll-reveal {
   min-height: 80vh;
   position: relative;
}
.lens-wrapper {
  display: inline-block;
  overflow: visible;
}

.lens-zoom {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: scale(1);
  will-change: transform;
}

.heading-space {
   padding: 0;
   border-top: 2px solid #14080E;
   border-bottom: 2px solid #14080E;
   display: flex;
   justify-content: center;
   box-sizing: border-box;
   max-width: 100%;
   position: relative;
   align-items: center;
   width: 100%;
   align-items: flex-start;
   height: calc(14vh + 2rem);
   overflow: hidden;
}
.animated-heading {
   font-size: clamp(5rem, 14vw, 16rem);
   font-family: "Roboto", sans-serif;
   font-weight: 900;
   letter-spacing: -10px;
   margin: 0;
   box-sizing: border-box;
   white-space: nowrap;
   overflow: hidden;
   text-transform: uppercase;
}
.glow-text {
   position: absolute;
   left: 0;
   z-index: 1;
   pointer-events: none;
   mix-blend-mode: screen;
}
.glow-text-content {
   display: inline-block;
   color: transparent;
   background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
   background-size: 200% 100%;
   background-position: -100% 0;
   -webkit-background-clip: text;
   background-clip: text;
   animation: glowMove 3s linear infinite;
   filter: drop-shadow(0 0 12px #ffffff);
}
.solid-text {
   color: #14080E;
   position: absolute;
   left: 0;  
   z-index: 2;
}
.glow-text, .solid-text {
   top: calc(-8vh + 0.5rem);
}
@media (max-width: 768px) {
   .heading-space {
   	height: clamp(5.5vh, 7.5vh, 9.5vh);
   	align-items: center;
   } 
   .glow-text,
   .solid-text {
	 top: clamp(-3.5vh, -2.5vh, 1vh); 
	 letter-spacing: -3px!important;
   }
}
@keyframes glowMove {
   0% {
	 background-position: -100% 0;
   }
   100% {
	 background-position: 100% 0;
   }
}
body.inverted {
   background-color: #14080E!important;
   color: #EE4B6A;
}
body.inverted #typewriter {
   fill: #14080E;
}
body.inverted .animated-heading {
   color: #14080E;
}
body.inverted .solid-text {
   color: #EE4B6A	;
}
body.inverted svg path {
   fill: #EE4B6A!important;
}
body.inverted svg #path1-7 {
   fill: #14080E!important;
}
body.inverted .heading-space {
	border-top: 2px solid #EE4B6A;
	border-bottom: 2px solid #EE4B6A;
}
body.inverted .glow-text-content {
   background: linear-gradient(90deg, transparent 0%, #EE4B6A	50%, transparent 100%);
   background-size: 200% 100%;
   background-position: -100% 0;
   -webkit-background-clip: text;
   background-clip: text;
   filter: drop-shadow(0 0 12px #EE4B6A	);
   animation: glowMove 3s linear infinite;
}
body.inverted #pill {
   border: 2px solid #EE4B6A;
   background: rgba(238, 75, 106, 0.4);
   backdrop-filter: blur(3px);
   transition: opacity 0.3s ease;
}
 
body.inverted .hyphen {
   background: #EE4B6A;
   animation: glowUp 2s infinite ease-in-out;
}

body.inverted .hyphen:nth-child(1) { animation-delay: 0.6s; }
body.inverted .hyphen:nth-child(2) { animation-delay: 0.3s; }
body.inverted .hyphen:nth-child(3) { animation-delay: 0s; }

button#invert-toggle {
   position: fixed;
   bottom: 1rem;
   left: 1rem;
   z-index: 9999;
   padding: 0.5rem 1rem;
   background: none;
   color: inherit;
   border: 2px solid currentColor;
   font-size: 1rem;
   cursor: pointer;
   border-radius: 20px;
}

