html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-family: 'EB Garamond', Garamond, serif;
  background: #fff;
  color: #222;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background: #111;
    color: #f5f5f5;
  }
}

.container {
  text-align: left;
  max-width: 550px;
  padding: 20px;
}

.wip {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.5px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 20px 0;
}

.cursor {
  display: inline-block;
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.char-blur {
  display: inline;
  opacity: 0;
  filter: blur(8px);
  animation: charMaterialize 0.5s ease-out forwards;
}

@keyframes charMaterialize {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.subtext {
  font-size: 1.3rem;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0 0 36px 0;
  text-wrap: pretty;
}

.footer {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    opacity: 0.6;
    margin: 0;
}

.footer a {
    color: inherit;
    font-size: 1.5rem;
    transition: opacity 0.2s, transform 0.2s;
}

.footer a:hover {
    opacity: 1;
    transform: translateY(-2px);
}
