@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Playpen+Sans:wght@100..800&display=swap");
@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.user-select {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100svh;
  scroll-behavior: smooth;
  background: #111616;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Inconsolata", monospace;
}

@font-face {
  font-family: "Iosevka";
  font-display: swap;
  font-weight: normal;
  font-style: italic;
  src: url("/fonts/iosevka/iosevka-custom-italic.woff2") format("woff2");
}
.site-header {
  position: sticky;
  top: 0;
  height: auto;
  padding: 0 calc(25% - 150px);
  z-index: 1020;
  background: transparent;
  box-sizing: border-box;
}
.site-header .nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.site-header .nav__link {
  font-family: "Space Mono", monospace;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 6ch;
  height: 36px;
  padding: 0 min(18px, -18px + 8vw);
  border-radius: 1rem;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  transition: background 0.2s;
}
.site-header .nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-header .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}
.site-header .logo__img {
  width: auto;
  height: 120px;
  max-height: 100%;
  pointer-events: all;
  transition: transform 0.3s, opacity 0.3s;
}
.site-header .logo__img:hover {
  opacity: 0.7;
  transform: scale(1.05) rotate(-3deg);
}
@media (max-width: 640px) {
  .site-header {
    height: 90px;
    padding-top: 6px;
  }
  .site-header .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    row-gap: 6px;
  }
  .site-header .logo__img {
    display: none;
  }
}

.site-footer {
  font-family: "Inconsolata", monospace;
  padding: 1.5rem 0;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #ffffff;
}
.site-footer__copyright {
  font-size: 1rem;
  opacity: 0.8;
}

.home {
  min-height: 70svh;
  padding: 2rem 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80svh;
  padding: 2rem 0;
  position: relative;
}

.hero-content-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 4rem;
}

.hero-text-flow {
  font-family: "Iosevka", cursive;
  font-size: 1.4em;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.hero-text-flow .hero-visual-line {
  transform: translateY(50px);
  opacity: 0;
  animation: slideIn 0.8s forwards ease-out;
  white-space: nowrap;
  margin-bottom: 1.2em;
}
.hero-text-flow .hero-visual-line:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text-flow .hero-visual-line:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-text-flow .hero-visual-line:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-text-flow .hero-visual-line:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-text-flow .hero-visual-line:nth-child(5) {
  animation-delay: 0.5s;
}
.hero-text-flow .hero-visual-line:nth-child(6) {
  animation-delay: 0.6s;
}
.hero-text-flow .hero-visual-line:nth-child(7) {
  animation-delay: 0.7s;
}
.hero-text-flow .hero-text__word {
  display: inline-block;
  margin-right: 0.2em;
}
@media (max-width: 1024px) {
  .hero-text-flow {
    font-size: 2.2em;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero-text-flow {
    font-size: 1.8em;
  }
}

#magnetic-grid-container.circular-grid {
  shape-outside: circle();
  width: 350px;
  height: 350px;
  border-radius: 50%;
  margin: 0 20px 20px 0;
  transition: transform 0.3s ease-out;
  float: left;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
#magnetic-grid-container.circular-grid:hover {
  transform: scale(1.02);
}

#magneticGridCanvas {
  border-radius: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 3;
}

.hero-subtext {
  font-family: "Inconsolata", monospace;
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1.5s forwards ease-out 1s;
}/*# sourceMappingURL=main.css.map */