* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #fff;
  color: #111;
  min-height: 100vh;
  overflow: hidden;
}


.bg-track {
  position: fixed;
  inset: 0;
  height: 100vh;
  display: flex;
  width: max-content;
  animation: drift 60s linear infinite;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

.bg-track img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
}

.logo {
  font-size: clamp(3rem, 14vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.25rem;
}

.token-mark {
  width: min(160px, 28vw);
  height: auto;
  margin-top: -0.75rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.15));
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(17, 17, 17, 0.7);
  max-width: 24rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.info-button {
  margin-top: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.85);
  color: #111;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease;
}

.info-button:hover,
.info-button:focus-visible {
  border-color: #111;
  transform: scale(1.04);
}

.info-button--close {
  width: auto;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  margin-top: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pill {
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  color: #111;
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.pill:hover {
  border-color: #111;
  background: rgba(0, 0, 0, 0.08);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 480px) {
  .logo {
    letter-spacing: 0.15rem;
  }

  .links {
    flex-direction: column;
    width: 100%;
  }

  .pill {
    width: 100%;
  }
}

.lore {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  text-align: center;
  color: #111;
}

.lore strong {
  font-weight: 600;
}

body.lore-active .hero {
  display: none;
}

body.lore-active .lore {
  display: flex;
}

.footer {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  color: rgba(17, 17, 17, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.35rem 1.25rem;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__label {
  font-weight: 500;
}

.footer__value {
  font-family: "Space Grotesk", monospace;
  letter-spacing: 0.04em;
}
