/* ============================================
   SOUL — The Reveal
   The person behind the void.
   ============================================ */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--black);
  position: relative;
}

/* --- Main Container --- */
.soul-container {
  text-align: center;
  max-width: 480px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* --- Alias --- */
.soul-alias {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: soul-fade-in 3s ease-out 1s forwards;
}

.soul-alias-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: soul-fade-in 2s ease-out 2s forwards;
}

/* --- Bio --- */
.soul-bio {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-subtle);
  margin-bottom: 3rem;
  opacity: 0;
  animation: soul-fade-in 2.5s ease-out 3s forwards;
  text-align: center;
}

/* --- Whisper --- */
.soul-whisper {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: soul-fade-in 2s ease-out 4.5s forwards;
}

/* --- Divider --- */
.soul-divider {
  width: 40px;
  height: 1px;
  background: var(--text-faint);
  margin: 0 auto 3rem;
  opacity: 0;
  animation: soul-fade-in 2s ease-out 2.5s forwards;
}

/* --- Return --- */
.soul-return {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--near-black);
  letter-spacing: 0.2em;
  transition: color 1.5s;
  opacity: 0;
  animation: soul-fade-in 2s ease-out 6s forwards;
}

.soul-return:hover {
  color: var(--text-faint);
}

/* --- Depth Marker --- */
.depth-marker {
  position: fixed;
  bottom: 10px;
  left: 14px;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--near-black);
  transition: color 2s;
  z-index: 1;
  opacity: 0;
  animation: soul-fade-in 2s ease-out 7s forwards;
}

.depth-marker:hover {
  color: var(--text-faint);
}

/* --- Vignette --- */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 200px 100px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  z-index: 10;
}

/* --- Keyframe --- */
@keyframes soul-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .soul-alias {
    font-size: 1.6rem;
  }

  .soul-bio {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  .soul-container {
    padding: 1.5rem;
  }
}
