nav {
  width: 100%;
  z-index: 2;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr min(80vw, 80ch) 1fr;
}
nav:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s linear;
  opacity: 0;
  position: absolute;
  background-color: var(--c-dark);
}
nav.visible:after {
  opacity: 1;
}
nav ul {
  margin-top: 14px;
  grid-column: 2;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 40px;
  z-index: 3;
}
nav a {
  color: var(--c-light);
  text-decoration: none;
  font-weight: bold;
}
nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--c-light);
  transition: width 0.2s ease-in-out;
}
nav a:hover::after, nav a.active::after {
  width: 100%;
}

.homepage-flow {
  --fs: clamp(38px, 8vw, 100px);
  --lh: calc(var(--fs) * 0.87);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr min(80vw, 80ch) 1fr;
}
.homepage-flow > section {
  grid-column: 2;
}

section.full-bleed {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: 1fr min(80vw, 80ch) 1fr;
}
section.full-bleed > .content-row {
  grid-column: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--c-light);
  background-color: #05010e;
}
.hero .name {
  color: white;
  font-size: 34px;
}
.hero img {
  z-index: 0;
  height: 100%;
  min-width: 100%;
  position: absolute;
}
.hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  grid-column: 1/4;
}
.hero .content-row {
  z-index: 1;
}

.hero-text {
  font-size: var(--fs);
  font-family: monospace;
}
.hero-text span {
  margin: 0;
  line-height: var(--lh);
  display: block;
}
.hero-text .slot {
  --space-left: 2ch;
  overflow: hidden;
  position: relative;
}
.hero-text .slot .role {
  padding-left: calc(var(--space-left) + 1ch);
  transition: 200ms opacity ease-in-out;
  opacity: 0.6;
}
.hero-text .slot .role.highlight {
  opacity: 1;
}
.hero-text .slot .indicator {
  position: absolute;
  top: 0;
  padding-left: calc(var(--space-left) * 0.95);
  transition: 100ms transform ease-in-out;
}
.hero-text .slot .indicator.done {
  animation: blink 0.7s ease-in-out infinite alternate-reverse;
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 60ch) {
  .hero-text .slot {
    --space-left: 0ch;
  }
}
section > header h2 {
  font-size: calc(var(--fs) * 0.65);
}

.side-by-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr));
  gap: 20px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pills.fe .pill {
  background: rgba(38, 240, 241, 0.3803921569);
}
.pills.be .pill {
  background: rgba(212, 161, 241, 0.662745098);
}
.pills.in .pill {
  background: rgba(182, 182, 182, 0.662745098);
}
.pills .pill {
  padding: 8px 20px;
  border-radius: 41px;
}

aside {
  margin-top: 86px;
  border: 1px solid var(--c-dark);
  position: sticky;
  top: 120px;
  place-self: start center;
}
aside ul {
  padding-right: 20px;
}

div.jump-flag {
  position: relative;
  top: -80px;
}

@media (max-width: 1500px) {
  aside {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
