:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f5f5f5;
  background-color: #03030a;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: #03030a;
  color: inherit;
  -webkit-font-smoothing: antialiased;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.5;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: screen;
}

.glow {
  position: absolute;
  width: 30rem;
  height: 30rem;
  filter: blur(120px);
  opacity: 0.5;
}

.glow-one {
  background: #5ef3ff;
  top: -10rem;
  left: -10rem;
}

.glow-two {
  background: #ff3cc7;
  bottom: -10rem;
  right: -6rem;
}

.page {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 980px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 3rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.8);
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, #5ef3ff 0%, #2dd9ff 60%, transparent 100%);
  display: inline-block;
}

.nav-link {
  color: #f5f5f5;
  text-decoration: none;
  border: 1px solid rgba(245, 245, 245, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: "Roboto Mono", monospace;
}

.nav-link:hover {
  border-color: #5ef3ff;
  color: #5ef3ff;
}

.hero {
  margin-bottom: 3rem;
}

.hero__meta {
  font-family: "Roboto Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 245, 245, 0.7);
}

.glitch {
  position: relative;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  font-family: "Roboto Mono", monospace;
}

.glitch span {
  color: #2dd9ff;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.glitch::before {
  color: #ff3cc7;
  transform: translateX(-2px);
  animation: glitchX 2s infinite linear;
}

.glitch::after {
  color: #2dd9ff;
  transform: translateX(2px);
  animation: glitchX 1.8s infinite reverse linear;
}

@keyframes glitchX {
  0%,
  100% {
    transform: translate(0);
    opacity: 0.2;
  }
  20% {
    transform: translate(-4px, 1px);
    opacity: 0.6;
  }
  40% {
    transform: translate(3px, -1px);
    opacity: 0.4;
  }
  60% {
    transform: translate(-1px, -2px);
    opacity: 0.5;
  }
  80% {
    transform: translate(2px, 2px);
    opacity: 0.3;
  }
}

.hero__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 42rem;
  color: rgba(245, 245, 245, 0.84);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #2dd9ff, #7a5bff);
  color: #04040c;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 217, 255, 0.35);
}

.ghost-link {
  font-family: "Roboto Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.25);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ghost-link:hover {
  color: #5ef3ff;
  border-color: #5ef3ff;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about__card {
  border: 1px solid rgba(245, 245, 245, 0.15);
  border-radius: 1rem;
  padding: 1.75rem;
  background: rgba(6, 6, 16, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(45, 217, 255, 0.3), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.4;
}

.about__label {
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.6);
  margin: 0;
}

.about__card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
}

.team {
  margin-bottom: 3rem;
  border: 1px solid rgba(245, 245, 245, 0.15);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(5, 5, 15, 0.9);
}

.team__heading {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 1.25rem;
}

.team__label {
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
}

.team__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.6);
}

.team__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem 1.5rem;
}

.team__grid li {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.team__grid li:last-child {
  border-bottom: none;
}

.team__name {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.team__role {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.65);
}

.footer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
  padding-bottom: 2rem;
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .team {
    padding: 1.25rem;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }
}
