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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo {
  width: min(80vw, 600px);
  height: auto;
  display: block;
}

.tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  letter-spacing: 0.25em;
  color: #ecf4f917;
  text-transform: lowercase;
}

.socials {
  display: flex;
  gap: 28px;
  align-items: center;
}

.socials a {
  display: flex;
  opacity: 0.45;
  filter: blur(0.6px);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.socials a:hover {
  opacity: 1;
  filter: blur(0.45px);
}

.socials img {
  width: 18px;
  height: 18px;
}

.bio {
  margin-top: 8px;
  max-width: 400px;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #ecf4f9b0;
  cursor: default;
  padding: 0 20px;
}
